@matech/thebigpos-sdk 2.38.2 → 2.38.3-rc1
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 +517 -382
- package/dist/index.js +49 -13
- package/dist/index.js.map +1 -1
- package/docs/sdk_generation.md +149 -149
- package/package.json +44 -43
- package/scripts/apply-json-patch-content-type.js +56 -56
- package/src/index.ts +572 -275
- 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" | "Locked";
|
|
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;
|
|
@@ -644,26 +644,22 @@ export interface ConditionComment {
|
|
|
644
644
|
createdByName: string;
|
|
645
645
|
}
|
|
646
646
|
export interface ConsumerConnectRetry {
|
|
647
|
-
|
|
648
|
-
userLoanId: string;
|
|
647
|
+
correlationKey: string;
|
|
649
648
|
email: string;
|
|
650
|
-
status?:
|
|
649
|
+
status?: LosOperationStatus | null;
|
|
651
650
|
success: boolean;
|
|
652
651
|
}
|
|
653
652
|
export interface ConsumerConnectStatus {
|
|
654
|
-
|
|
655
|
-
userLoanId: string;
|
|
656
|
-
/** @format uuid */
|
|
657
|
-
userId: string;
|
|
653
|
+
correlationKey: string;
|
|
658
654
|
email: string;
|
|
659
|
-
|
|
660
|
-
status?: ConsumerConnectAssociationStatus | null;
|
|
655
|
+
status?: LosOperationStatus | null;
|
|
661
656
|
/** @format int32 */
|
|
662
657
|
attemptCount: number;
|
|
663
658
|
/** @format date-time */
|
|
664
659
|
lastAttemptAt?: string | null;
|
|
665
660
|
/** @format date-time */
|
|
666
661
|
nextRetryAt?: string | null;
|
|
662
|
+
lastTriggerSource?: string | null;
|
|
667
663
|
}
|
|
668
664
|
export interface ContactInfo {
|
|
669
665
|
phone: string;
|
|
@@ -713,7 +709,7 @@ export interface CorporateSearchCriteria {
|
|
|
713
709
|
isActive?: boolean | null;
|
|
714
710
|
}
|
|
715
711
|
export interface CreateAccessScopeRequest {
|
|
716
|
-
scopeType:
|
|
712
|
+
scopeType: CreateAccessScopeRequestScopeTypeEnum;
|
|
717
713
|
/** @format uuid */
|
|
718
714
|
userId?: string | null;
|
|
719
715
|
/** @format uuid */
|
|
@@ -736,7 +732,7 @@ export interface CreateAccountRequest {
|
|
|
736
732
|
*/
|
|
737
733
|
nlmsid: number;
|
|
738
734
|
settings: AccountSettingsRequest;
|
|
739
|
-
environment:
|
|
735
|
+
environment: CreateAccountRequestEnvironmentEnum;
|
|
740
736
|
losIntegration: LOSIntegration;
|
|
741
737
|
billingSettings: AccountBillingRequest;
|
|
742
738
|
}
|
|
@@ -766,7 +762,7 @@ export interface CreateDocumentTemplateRequest {
|
|
|
766
762
|
export interface CreateGroupMemberRequest {
|
|
767
763
|
/** @format uuid */
|
|
768
764
|
userId: string;
|
|
769
|
-
loanRole:
|
|
765
|
+
loanRole: CreateGroupMemberRequestLoanRoleEnum;
|
|
770
766
|
}
|
|
771
767
|
export interface CreateInviteRequest {
|
|
772
768
|
/** @minLength 1 */
|
|
@@ -777,7 +773,7 @@ export interface CreateInviteRequest {
|
|
|
777
773
|
emailAddress: string;
|
|
778
774
|
phoneNumber?: string | null;
|
|
779
775
|
/** @deprecated */
|
|
780
|
-
relationship:
|
|
776
|
+
relationship: CreateInviteRequestRelationshipEnum;
|
|
781
777
|
loanID: string;
|
|
782
778
|
route?: string | null;
|
|
783
779
|
/** @format uuid */
|
|
@@ -799,7 +795,7 @@ export interface CreateLoanImportRequest {
|
|
|
799
795
|
* @minLength 1
|
|
800
796
|
*/
|
|
801
797
|
startDate: string;
|
|
802
|
-
importMode:
|
|
798
|
+
importMode: CreateLoanImportRequestImportModeEnum;
|
|
803
799
|
}
|
|
804
800
|
export interface CreateSession {
|
|
805
801
|
sessionId: string;
|
|
@@ -817,7 +813,7 @@ export interface CreateUserDeviceRequest {
|
|
|
817
813
|
token: string;
|
|
818
814
|
}
|
|
819
815
|
export interface CreateUserDraft {
|
|
820
|
-
loanRole:
|
|
816
|
+
loanRole: CreateUserDraftLoanRoleEnum;
|
|
821
817
|
}
|
|
822
818
|
export interface CreateUserGroupRequest {
|
|
823
819
|
/**
|
|
@@ -1114,7 +1110,7 @@ export interface Draft {
|
|
|
1114
1110
|
siteConfiguration: SiteConfigurationReduced;
|
|
1115
1111
|
/** @format uuid */
|
|
1116
1112
|
loanID?: string | null;
|
|
1117
|
-
type:
|
|
1113
|
+
type: DraftTypeEnum;
|
|
1118
1114
|
isCoBorrower: boolean;
|
|
1119
1115
|
}
|
|
1120
1116
|
export interface DraftContent {
|
|
@@ -1132,7 +1128,7 @@ export interface DraftContent {
|
|
|
1132
1128
|
siteConfiguration: SiteConfigurationReduced;
|
|
1133
1129
|
/** @format uuid */
|
|
1134
1130
|
loanID?: string | null;
|
|
1135
|
-
type:
|
|
1131
|
+
type: DraftContentTypeEnum;
|
|
1136
1132
|
isCoBorrower: boolean;
|
|
1137
1133
|
applicationPayload: any;
|
|
1138
1134
|
}
|
|
@@ -1223,7 +1219,7 @@ export interface EncompassCredentialsDetail {
|
|
|
1223
1219
|
defaultLoanOfficerUserName?: string | null;
|
|
1224
1220
|
clearStateIfUnlicensed: boolean;
|
|
1225
1221
|
baseUrl?: string | null;
|
|
1226
|
-
signingMethod:
|
|
1222
|
+
signingMethod: EncompassCredentialsDetailSigningMethodEnum;
|
|
1227
1223
|
subscriptionId?: string | null;
|
|
1228
1224
|
environment?: string | null;
|
|
1229
1225
|
}
|
|
@@ -1238,7 +1234,7 @@ export interface EncompassCredentialsRequest {
|
|
|
1238
1234
|
defaultLoanOfficerUserName?: string | null;
|
|
1239
1235
|
clearStateIfUnlicensed: boolean;
|
|
1240
1236
|
baseUrl?: string | null;
|
|
1241
|
-
signingMethod:
|
|
1237
|
+
signingMethod: EncompassCredentialsRequestSigningMethodEnum;
|
|
1242
1238
|
subscriptionId?: string | null;
|
|
1243
1239
|
environment?: string | null;
|
|
1244
1240
|
clientID?: string | null;
|
|
@@ -1296,8 +1292,8 @@ export interface EncompassRequestLog {
|
|
|
1296
1292
|
losId?: string | null;
|
|
1297
1293
|
/** @format uuid */
|
|
1298
1294
|
accountId: string;
|
|
1299
|
-
operationType:
|
|
1300
|
-
outcome:
|
|
1295
|
+
operationType: EncompassRequestLogOperationTypeEnum;
|
|
1296
|
+
outcome: EncompassRequestLogOutcomeEnum;
|
|
1301
1297
|
message: string;
|
|
1302
1298
|
endpoint?: string | null;
|
|
1303
1299
|
httpMethod?: string | null;
|
|
@@ -1348,7 +1344,7 @@ export interface FileSearchCriteria {
|
|
|
1348
1344
|
export interface FileWithBytes {
|
|
1349
1345
|
name: string;
|
|
1350
1346
|
/** @format byte */
|
|
1351
|
-
data:
|
|
1347
|
+
data: Blob;
|
|
1352
1348
|
fileName: string;
|
|
1353
1349
|
mimeType?: string | null;
|
|
1354
1350
|
extension?: string | null;
|
|
@@ -1514,7 +1510,7 @@ export interface FusionFieldDisplay {
|
|
|
1514
1510
|
fieldValue: string;
|
|
1515
1511
|
}
|
|
1516
1512
|
export interface FusionReportFilter {
|
|
1517
|
-
filterType:
|
|
1513
|
+
filterType: FusionReportFilterFilterTypeEnum;
|
|
1518
1514
|
targetField: string;
|
|
1519
1515
|
targetValue: string;
|
|
1520
1516
|
}
|
|
@@ -1628,7 +1624,7 @@ export interface GuidPatchOperation {
|
|
|
1628
1624
|
from?: string | null;
|
|
1629
1625
|
}
|
|
1630
1626
|
export interface IPAddress {
|
|
1631
|
-
addressFamily:
|
|
1627
|
+
addressFamily: IpAddressAddressFamilyEnum;
|
|
1632
1628
|
/** @format int64 */
|
|
1633
1629
|
scopeId: number;
|
|
1634
1630
|
isIPv6Multicast: boolean;
|
|
@@ -1858,7 +1854,7 @@ export interface Loan {
|
|
|
1858
1854
|
closingDisclosureSentDate?: string | null;
|
|
1859
1855
|
/** @format date-time */
|
|
1860
1856
|
underwritingApprovalDate?: string | null;
|
|
1861
|
-
/** @format date
|
|
1857
|
+
/** @format date */
|
|
1862
1858
|
closingDate?: string | null;
|
|
1863
1859
|
/** @format date-time */
|
|
1864
1860
|
fundingOrderDate?: string | null;
|
|
@@ -1881,7 +1877,7 @@ export interface Loan {
|
|
|
1881
1877
|
nonOwningBorrowers: LoanNonOwningBorrower[];
|
|
1882
1878
|
userLoans: UserLoan[];
|
|
1883
1879
|
contacts: LoanContact[];
|
|
1884
|
-
signingMethod:
|
|
1880
|
+
signingMethod: LoanSigningMethodEnum;
|
|
1885
1881
|
}
|
|
1886
1882
|
export interface LoanApplication {
|
|
1887
1883
|
/** @format uuid */
|
|
@@ -1936,7 +1932,7 @@ export interface LoanBorrower {
|
|
|
1936
1932
|
citizenship?: LoanCitizenship | null;
|
|
1937
1933
|
maritalStatus?: LoanMaritalStatus | null;
|
|
1938
1934
|
languagePreference?: LoanLanguagePreference | null;
|
|
1939
|
-
applicationStatus:
|
|
1935
|
+
applicationStatus: LoanBorrowerApplicationStatusEnum;
|
|
1940
1936
|
/** @format int32 */
|
|
1941
1937
|
numberOfDependents?: number | null;
|
|
1942
1938
|
isPrimaryBorrower: boolean;
|
|
@@ -2793,7 +2789,7 @@ export interface LoanContact {
|
|
|
2793
2789
|
email?: string | null;
|
|
2794
2790
|
phone?: string | null;
|
|
2795
2791
|
companyName?: string | null;
|
|
2796
|
-
role:
|
|
2792
|
+
role: LoanContactRoleEnum;
|
|
2797
2793
|
}
|
|
2798
2794
|
export interface LoanContactList {
|
|
2799
2795
|
email: string;
|
|
@@ -2919,13 +2915,13 @@ export interface LoanImport {
|
|
|
2919
2915
|
/** @format int32 */
|
|
2920
2916
|
importedCount: number;
|
|
2921
2917
|
statusMessage?: string | null;
|
|
2922
|
-
status:
|
|
2923
|
-
importMode:
|
|
2918
|
+
status: LoanImportStatusEnum;
|
|
2919
|
+
importMode: LoanImportImportModeEnum;
|
|
2924
2920
|
/** @format date-time */
|
|
2925
2921
|
createdAt?: string | null;
|
|
2926
2922
|
}
|
|
2927
2923
|
export interface LoanImportLog {
|
|
2928
|
-
level:
|
|
2924
|
+
level: LoanImportLogLevelEnum;
|
|
2929
2925
|
message: string;
|
|
2930
2926
|
/** @format date-time */
|
|
2931
2927
|
createdAt: string;
|
|
@@ -2980,8 +2976,8 @@ export interface LoanListPaginated {
|
|
|
2980
2976
|
export interface LoanLog {
|
|
2981
2977
|
/** @format uuid */
|
|
2982
2978
|
id: string;
|
|
2983
|
-
level:
|
|
2984
|
-
type:
|
|
2979
|
+
level: LoanLogLevelEnum;
|
|
2980
|
+
type: LoanLogTypeEnum;
|
|
2985
2981
|
message: string;
|
|
2986
2982
|
/** @format date-time */
|
|
2987
2983
|
createdAt: string;
|
|
@@ -2989,8 +2985,8 @@ export interface LoanLog {
|
|
|
2989
2985
|
export interface LoanLogDetail {
|
|
2990
2986
|
/** @format uuid */
|
|
2991
2987
|
id: string;
|
|
2992
|
-
level:
|
|
2993
|
-
type:
|
|
2988
|
+
level: LoanLogDetailLevelEnum;
|
|
2989
|
+
type: LoanLogDetailTypeEnum;
|
|
2994
2990
|
message: string;
|
|
2995
2991
|
/** @format date-time */
|
|
2996
2992
|
createdAt: string;
|
|
@@ -3255,6 +3251,11 @@ export interface LoanTaskSearchRequest {
|
|
|
3255
3251
|
loanId?: string | null;
|
|
3256
3252
|
loanStatus?: LoanTaskActivityFilter | null;
|
|
3257
3253
|
}
|
|
3254
|
+
export interface LoanTaskStatusSummary {
|
|
3255
|
+
status: LoanTaskStatusSummaryStatusEnum;
|
|
3256
|
+
/** @format int32 */
|
|
3257
|
+
count: number;
|
|
3258
|
+
}
|
|
3258
3259
|
export interface LoanUser {
|
|
3259
3260
|
/** @format uuid */
|
|
3260
3261
|
id: string;
|
|
@@ -3263,7 +3264,7 @@ export interface LoanUser {
|
|
|
3263
3264
|
email: string;
|
|
3264
3265
|
phone?: string | null;
|
|
3265
3266
|
role: string;
|
|
3266
|
-
loanRole:
|
|
3267
|
+
loanRole: LoanUserLoanRoleEnum;
|
|
3267
3268
|
isUser: boolean;
|
|
3268
3269
|
/** @format date-time */
|
|
3269
3270
|
createdAt: string;
|
|
@@ -3286,6 +3287,37 @@ export interface LosLoanCreationRequest {
|
|
|
3286
3287
|
siteID?: string | null;
|
|
3287
3288
|
existingLoanID?: string | null;
|
|
3288
3289
|
}
|
|
3290
|
+
export interface LosOperationTracking {
|
|
3291
|
+
/** @format uuid */
|
|
3292
|
+
id: string;
|
|
3293
|
+
/** @format uuid */
|
|
3294
|
+
loanId: string;
|
|
3295
|
+
/** @format int32 */
|
|
3296
|
+
attemptCount: number;
|
|
3297
|
+
operationType: string;
|
|
3298
|
+
correlationKey: string;
|
|
3299
|
+
lastTriggerSource?: string | null;
|
|
3300
|
+
status: LosOperationTrackingStatusEnum;
|
|
3301
|
+
/** @format date-time */
|
|
3302
|
+
createdAt: string;
|
|
3303
|
+
/** @format date-time */
|
|
3304
|
+
lastAttemptAt?: string | null;
|
|
3305
|
+
/** @format date-time */
|
|
3306
|
+
nextRetryAt?: string | null;
|
|
3307
|
+
}
|
|
3308
|
+
export interface LosOperationTrackingPaginated {
|
|
3309
|
+
rows: LosOperationTracking[];
|
|
3310
|
+
pagination: Pagination;
|
|
3311
|
+
/** @format int64 */
|
|
3312
|
+
count: number;
|
|
3313
|
+
}
|
|
3314
|
+
export interface LosOperationTrackingSearchCriteria {
|
|
3315
|
+
searchText?: string | null;
|
|
3316
|
+
/** @format uuid */
|
|
3317
|
+
loanId?: string | null;
|
|
3318
|
+
operationType?: string | null;
|
|
3319
|
+
status?: LosOperationStatus | null;
|
|
3320
|
+
}
|
|
3289
3321
|
export interface LosWebhook {
|
|
3290
3322
|
/** @format uuid */
|
|
3291
3323
|
id: string;
|
|
@@ -3446,6 +3478,8 @@ export interface NotificationTemplate {
|
|
|
3446
3478
|
isDefault: boolean;
|
|
3447
3479
|
status: string;
|
|
3448
3480
|
useDefaultHeaderAndFooter: boolean;
|
|
3481
|
+
multipleCustomTemplates: boolean;
|
|
3482
|
+
allowedRoles?: string[] | null;
|
|
3449
3483
|
versions: NotificationTemplateVersionBase[];
|
|
3450
3484
|
}
|
|
3451
3485
|
export interface NotificationTemplateBase {
|
|
@@ -3471,6 +3505,8 @@ export interface NotificationTemplateBase {
|
|
|
3471
3505
|
isDefault: boolean;
|
|
3472
3506
|
status: string;
|
|
3473
3507
|
useDefaultHeaderAndFooter: boolean;
|
|
3508
|
+
multipleCustomTemplates: boolean;
|
|
3509
|
+
allowedRoles?: string[] | null;
|
|
3474
3510
|
}
|
|
3475
3511
|
export interface NotificationTemplateBasePaginated {
|
|
3476
3512
|
rows: NotificationTemplateBase[];
|
|
@@ -3565,7 +3601,7 @@ export interface NotificationTemplateVersionUpdateRequest {
|
|
|
3565
3601
|
}
|
|
3566
3602
|
export interface Operation {
|
|
3567
3603
|
op?: string;
|
|
3568
|
-
value?:
|
|
3604
|
+
value?: object | null;
|
|
3569
3605
|
path?: string;
|
|
3570
3606
|
}
|
|
3571
3607
|
export interface OverridePasswordRequest {
|
|
@@ -3901,7 +3937,7 @@ export interface SSOTokenRequest {
|
|
|
3901
3937
|
redirectUri: string;
|
|
3902
3938
|
}
|
|
3903
3939
|
export interface SamlMetadataRequest {
|
|
3904
|
-
ssoIntegration:
|
|
3940
|
+
ssoIntegration: SamlMetadataRequestSsoIntegrationEnum;
|
|
3905
3941
|
}
|
|
3906
3942
|
export interface SendForgotPasswordRequest {
|
|
3907
3943
|
/**
|
|
@@ -3915,6 +3951,14 @@ export interface SendLoanDocumentsRequest {
|
|
|
3915
3951
|
loanUserIDs: string[];
|
|
3916
3952
|
emailAddresses: string[];
|
|
3917
3953
|
}
|
|
3954
|
+
export interface SendLoanTaskReminderRequest {
|
|
3955
|
+
/**
|
|
3956
|
+
* @format uuid
|
|
3957
|
+
* @minLength 1
|
|
3958
|
+
*/
|
|
3959
|
+
templateId: string;
|
|
3960
|
+
userIds?: string[] | null;
|
|
3961
|
+
}
|
|
3918
3962
|
export interface SendNotificationForLoanRequest {
|
|
3919
3963
|
/** @minLength 1 */
|
|
3920
3964
|
loanID: string;
|
|
@@ -3936,7 +3980,7 @@ export interface SiteConfiguration {
|
|
|
3936
3980
|
deletedAt?: string | null;
|
|
3937
3981
|
/** @format uuid */
|
|
3938
3982
|
id: string;
|
|
3939
|
-
type:
|
|
3983
|
+
type: SiteConfigurationTypeEnum;
|
|
3940
3984
|
/** @format uuid */
|
|
3941
3985
|
entityID: string;
|
|
3942
3986
|
/** @format int32 */
|
|
@@ -4130,7 +4174,7 @@ export interface SiteConfigurationByUrl {
|
|
|
4130
4174
|
deletedAt?: string | null;
|
|
4131
4175
|
/** @format uuid */
|
|
4132
4176
|
id: string;
|
|
4133
|
-
type:
|
|
4177
|
+
type: SiteConfigurationByUrlTypeEnum;
|
|
4134
4178
|
/** @format uuid */
|
|
4135
4179
|
entityID: string;
|
|
4136
4180
|
/** @format int32 */
|
|
@@ -4341,7 +4385,7 @@ export interface SiteConfigurationForm {
|
|
|
4341
4385
|
export interface SiteConfigurationReduced {
|
|
4342
4386
|
/** @format uuid */
|
|
4343
4387
|
id: string;
|
|
4344
|
-
type:
|
|
4388
|
+
type: SiteConfigurationReducedTypeEnum;
|
|
4345
4389
|
url?: string | null;
|
|
4346
4390
|
name: string;
|
|
4347
4391
|
/** @format int64 */
|
|
@@ -4358,7 +4402,7 @@ export interface SiteConfigurationRequest {
|
|
|
4358
4402
|
entityID: string;
|
|
4359
4403
|
/** @format int32 */
|
|
4360
4404
|
entityType: number;
|
|
4361
|
-
type:
|
|
4405
|
+
type: SiteConfigurationRequestTypeEnum;
|
|
4362
4406
|
url: string;
|
|
4363
4407
|
name: string;
|
|
4364
4408
|
introduction?: string | null;
|
|
@@ -4533,7 +4577,7 @@ export interface SiteConfigurationSearchCriteria {
|
|
|
4533
4577
|
export interface SiteConfigurationSummary {
|
|
4534
4578
|
/** @format uuid */
|
|
4535
4579
|
id: string;
|
|
4536
|
-
type:
|
|
4580
|
+
type: SiteConfigurationSummaryTypeEnum;
|
|
4537
4581
|
url?: string | null;
|
|
4538
4582
|
name: string;
|
|
4539
4583
|
/** @format int64 */
|
|
@@ -5112,7 +5156,7 @@ export interface UserDevice {
|
|
|
5112
5156
|
export interface UserDraft {
|
|
5113
5157
|
/** @format uuid */
|
|
5114
5158
|
draftID: string;
|
|
5115
|
-
role:
|
|
5159
|
+
role: UserDraftRoleEnum;
|
|
5116
5160
|
user: User;
|
|
5117
5161
|
}
|
|
5118
5162
|
export interface UserDraftPaginated {
|
|
@@ -5136,7 +5180,7 @@ export interface UserGroupAccessScope {
|
|
|
5136
5180
|
id: string;
|
|
5137
5181
|
/** @format uuid */
|
|
5138
5182
|
groupId: string;
|
|
5139
|
-
scopeType:
|
|
5183
|
+
scopeType: UserGroupAccessScopeScopeTypeEnum;
|
|
5140
5184
|
/** @format uuid */
|
|
5141
5185
|
userId?: string | null;
|
|
5142
5186
|
/** @format uuid */
|
|
@@ -5169,7 +5213,7 @@ export interface UserLoan {
|
|
|
5169
5213
|
deletedAt?: string | null;
|
|
5170
5214
|
loanID: string;
|
|
5171
5215
|
user: User;
|
|
5172
|
-
role:
|
|
5216
|
+
role: UserLoanRoleEnum;
|
|
5173
5217
|
/** @format int32 */
|
|
5174
5218
|
borrowerPair?: number | null;
|
|
5175
5219
|
/** @format int32 */
|
|
@@ -5181,10 +5225,10 @@ export interface UserLoanConsent {
|
|
|
5181
5225
|
id: string;
|
|
5182
5226
|
/** @format uuid */
|
|
5183
5227
|
userLoanID: string;
|
|
5184
|
-
type:
|
|
5228
|
+
type: UserLoanConsentTypeEnum;
|
|
5185
5229
|
providedConsent: boolean;
|
|
5186
5230
|
ipAddress?: string | null;
|
|
5187
|
-
losSyncStatus:
|
|
5231
|
+
losSyncStatus: UserLoanConsentLosSyncStatusEnum;
|
|
5188
5232
|
/** @format date-time */
|
|
5189
5233
|
createdAt: string;
|
|
5190
5234
|
}
|
|
@@ -5321,7 +5365,7 @@ export interface UserSummary {
|
|
|
5321
5365
|
id: string;
|
|
5322
5366
|
name?: string | null;
|
|
5323
5367
|
email?: string | null;
|
|
5324
|
-
role:
|
|
5368
|
+
role: UserSummaryRoleEnum;
|
|
5325
5369
|
}
|
|
5326
5370
|
export interface VerifyPasswordRequest {
|
|
5327
5371
|
/**
|
|
@@ -5354,6 +5398,54 @@ export interface Workflow {
|
|
|
5354
5398
|
tileSubtitle: string;
|
|
5355
5399
|
icon: string;
|
|
5356
5400
|
}
|
|
5401
|
+
export type AccountBillingRequestBillingTypeEnum = "ClosedLoan" | "LoanOfficer";
|
|
5402
|
+
export type AuditLogEntryChangeTypeEnum = "Created" | "Modified" | "SoftDeleted" | "HardDeleted" | "Restored";
|
|
5403
|
+
export type CreateAccessScopeRequestScopeTypeEnum = "User" | "Branch";
|
|
5404
|
+
export type CreateAccountRequestEnvironmentEnum = "Development" | "Staging" | "UAT" | "Production";
|
|
5405
|
+
export type CreateGroupMemberRequestLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
|
|
5406
|
+
/** @deprecated */
|
|
5407
|
+
export type CreateInviteRequestRelationshipEnum = "NotApplicable" | "Spouse" | "NonSpouse";
|
|
5408
|
+
export type CreateLoanImportRequestImportModeEnum = "All" | "NewOnly" | "UpdateOnly";
|
|
5409
|
+
export type CreateUserDraftLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
|
|
5410
|
+
export type DraftTypeEnum = "NewLoan" | "EditLoan";
|
|
5411
|
+
export type DraftContentTypeEnum = "NewLoan" | "EditLoan";
|
|
5412
|
+
export type EncompassCredentialsDetailSigningMethodEnum = "ConsumerConnect" | "POSF";
|
|
5413
|
+
export type EncompassCredentialsRequestSigningMethodEnum = "ConsumerConnect" | "POSF";
|
|
5414
|
+
export type EncompassRequestLogOperationTypeEnum = "FieldUpdate" | "ConsentUpdate" | "DocumentSync" | "MilestoneUpdate" | "DocumentAttachment" | "General" | "FieldReader";
|
|
5415
|
+
export type EncompassRequestLogOutcomeEnum = "Success" | "Failure" | "PartialSuccess";
|
|
5416
|
+
export type FusionReportFilterFilterTypeEnum = "DateGreaterThanOrEqualTo" | "DateGreaterThan" | "DateLessThan" | "DateLessThanOrEqualTo" | "DateEquals" | "DateDoesntEqual" | "DateNonEmpty" | "DateEmpty" | "StringContains" | "StringEquals" | "StringNotEmpty" | "StringNotEquals" | "StringNotContains";
|
|
5417
|
+
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";
|
|
5418
|
+
export type LoanSigningMethodEnum = "ConsumerConnect" | "POSF";
|
|
5419
|
+
export type LoanBorrowerApplicationStatusEnum = "Draft" | "Complete";
|
|
5420
|
+
export type LoanContactRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
|
|
5421
|
+
export type LoanImportStatusEnum = "WaitingProcess" | "InProgress" | "Completed" | "Failed" | "Cancelled";
|
|
5422
|
+
export type LoanImportImportModeEnum = "All" | "NewOnly" | "UpdateOnly";
|
|
5423
|
+
export type LoanImportLogLevelEnum = "None" | "Info" | "Warning" | "Error";
|
|
5424
|
+
export type LoanLogLevelEnum = "None" | "Info" | "Warning" | "Error";
|
|
5425
|
+
export type LoanLogTypeEnum = "Loan" | "Queue" | "POSFlagChanged" | "Verification" | "DocumentUploaded" | "LoanCreated" | "WorkflowSubmitted" | "UserInvitationSent" | "CoBorrowerAdded" | "TaskCompleted" | "LoanStatusChanged" | "Consent" | "SensitiveDataPurge" | "ClosingDateUpdated" | "ConsumerConnectAssociation" | "TaskReminderSent";
|
|
5426
|
+
export type LoanLogDetailLevelEnum = "None" | "Info" | "Warning" | "Error";
|
|
5427
|
+
export type LoanLogDetailTypeEnum = "Loan" | "Queue" | "POSFlagChanged" | "Verification" | "DocumentUploaded" | "LoanCreated" | "WorkflowSubmitted" | "UserInvitationSent" | "CoBorrowerAdded" | "TaskCompleted" | "LoanStatusChanged" | "Consent" | "SensitiveDataPurge" | "ClosingDateUpdated" | "ConsumerConnectAssociation" | "TaskReminderSent";
|
|
5428
|
+
export type LoanTaskStatusSummaryStatusEnum = "Outstanding" | "Pending" | "Completed" | "Rejected" | "Unknown";
|
|
5429
|
+
export type LoanUserLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
|
|
5430
|
+
export type LosOperationTrackingStatusEnum = "Pending" | "Success" | "Failed" | "ConfigurationError" | "PermanentFailure" | "Locked";
|
|
5431
|
+
export type SamlMetadataRequestSsoIntegrationEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
5432
|
+
export type SiteConfigurationTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5433
|
+
export type SiteConfigurationByUrlTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5434
|
+
export type SiteConfigurationReducedTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5435
|
+
export type SiteConfigurationRequestTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5436
|
+
export type SiteConfigurationSummaryTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5437
|
+
export type UserDraftRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
|
|
5438
|
+
export type UserGroupAccessScopeScopeTypeEnum = "User" | "Branch";
|
|
5439
|
+
export type UserLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
|
|
5440
|
+
export type UserLoanConsentTypeEnum = "Econsent" | "CreditAuthorization" | "Tcpa";
|
|
5441
|
+
export type UserLoanConsentLosSyncStatusEnum = "NotStarted" | "Failed" | "Success";
|
|
5442
|
+
export type UserSummaryRoleEnum = "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
|
|
5443
|
+
/** @default "Realtor" */
|
|
5444
|
+
export type GetPartnersParamsRoleEnum = "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
|
|
5445
|
+
export type GetSamlMetadataParamsSSoIntegrationEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
5446
|
+
export type GetSamlMetadataParamsEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
5447
|
+
export type CreateOrReplaceSamlMetadataParamsSSoIntegrationEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
5448
|
+
export type CreateOrReplaceSamlMetadataParamsEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
5357
5449
|
import type { AxiosInstance, AxiosRequestConfig, AxiosResponse, ResponseType } from "axios";
|
|
5358
5450
|
export type QueryParamsType = Record<string | number, any>;
|
|
5359
5451
|
export interface FullRequestParams extends Omit<AxiosRequestConfig, "data" | "params" | "url" | "responseType"> {
|
|
@@ -5377,7 +5469,6 @@ export interface ApiConfig<SecurityDataType = unknown> extends Omit<AxiosRequest
|
|
|
5377
5469
|
format?: ResponseType;
|
|
5378
5470
|
}
|
|
5379
5471
|
export declare enum ContentType {
|
|
5380
|
-
JsonPatch = "application/json-patch+json",
|
|
5381
5472
|
Json = "application/json",
|
|
5382
5473
|
JsonApi = "application/vnd.api+json",
|
|
5383
5474
|
FormData = "multipart/form-data",
|
|
@@ -5399,7 +5490,7 @@ export declare class HttpClient<SecurityDataType = unknown> {
|
|
|
5399
5490
|
}
|
|
5400
5491
|
/**
|
|
5401
5492
|
* @title The Big POS API
|
|
5402
|
-
* @version v2.38.
|
|
5493
|
+
* @version v2.38.2
|
|
5403
5494
|
* @termsOfService https://www.thebigpos.com/terms-of-use/
|
|
5404
5495
|
* @contact Mortgage Automation Technologies <support@thebigpos.com> (https://www.thebigpos.com/terms-of-use/)
|
|
5405
5496
|
*/
|
|
@@ -5413,7 +5504,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5413
5504
|
* @secure
|
|
5414
5505
|
* @response `200` `void` Success
|
|
5415
5506
|
*/
|
|
5416
|
-
postRoot: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
5507
|
+
postRoot: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
5417
5508
|
/**
|
|
5418
5509
|
* No description
|
|
5419
5510
|
*
|
|
@@ -5423,7 +5514,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5423
5514
|
* @secure
|
|
5424
5515
|
* @response `200` `string` Success
|
|
5425
5516
|
*/
|
|
5426
|
-
getRoot: (params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
5517
|
+
getRoot: (params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
5427
5518
|
api: {
|
|
5428
5519
|
/**
|
|
5429
5520
|
* No description
|
|
@@ -5436,7 +5527,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5436
5527
|
* @response `200` `Account` Success
|
|
5437
5528
|
* @response `404` `ProblemDetails` Not Found
|
|
5438
5529
|
*/
|
|
5439
|
-
getMyAccount: (params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
|
|
5530
|
+
getMyAccount: (params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
|
|
5440
5531
|
/**
|
|
5441
5532
|
* No description
|
|
5442
5533
|
*
|
|
@@ -5449,7 +5540,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5449
5540
|
* @response `404` `ProblemDetails` Not Found
|
|
5450
5541
|
* @response `422` `ProblemDetails` Client Error
|
|
5451
5542
|
*/
|
|
5452
|
-
replaceMyAccount: (data: UpdateAccountRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
|
|
5543
|
+
replaceMyAccount: (data: UpdateAccountRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
|
|
5453
5544
|
/**
|
|
5454
5545
|
* No description
|
|
5455
5546
|
*
|
|
@@ -5460,7 +5551,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5460
5551
|
* @secure
|
|
5461
5552
|
* @response `200` `SiteConfiguration` Success
|
|
5462
5553
|
*/
|
|
5463
|
-
getSiteConfigurationByAccount: (params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
5554
|
+
getSiteConfigurationByAccount: (params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
5464
5555
|
/**
|
|
5465
5556
|
* No description
|
|
5466
5557
|
*
|
|
@@ -5472,7 +5563,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5472
5563
|
* @response `200` `SiteConfiguration` Success
|
|
5473
5564
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5474
5565
|
*/
|
|
5475
|
-
updateSiteConfigurationForAccount: (data: SiteConfiguration, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
5566
|
+
updateSiteConfigurationForAccount: (data: SiteConfiguration, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
5476
5567
|
/**
|
|
5477
5568
|
* No description
|
|
5478
5569
|
*
|
|
@@ -5483,7 +5574,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5483
5574
|
* @secure
|
|
5484
5575
|
* @response `200` `(Account)[]` Success
|
|
5485
5576
|
*/
|
|
5486
|
-
getAccounts: (params?: RequestParams) => Promise<AxiosResponse<Account[], any>>;
|
|
5577
|
+
getAccounts: (params?: RequestParams) => Promise<AxiosResponse<Account[], any, {}>>;
|
|
5487
5578
|
/**
|
|
5488
5579
|
* No description
|
|
5489
5580
|
*
|
|
@@ -5495,7 +5586,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5495
5586
|
* @response `201` `Account` Created
|
|
5496
5587
|
* @response `422` `ProblemDetails` Client Error
|
|
5497
5588
|
*/
|
|
5498
|
-
createAccount: (data: CreateAccountRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
|
|
5589
|
+
createAccount: (data: CreateAccountRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
|
|
5499
5590
|
/**
|
|
5500
5591
|
* No description
|
|
5501
5592
|
*
|
|
@@ -5507,7 +5598,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5507
5598
|
* @response `201` `Account` Created
|
|
5508
5599
|
* @response `422` `ProblemDetails` Client Error
|
|
5509
5600
|
*/
|
|
5510
|
-
getAccount: (id: string, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
|
|
5601
|
+
getAccount: (id: string, params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
|
|
5511
5602
|
/**
|
|
5512
5603
|
* No description
|
|
5513
5604
|
*
|
|
@@ -5523,7 +5614,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5523
5614
|
deleteAccount: (id: string, query?: {
|
|
5524
5615
|
/** @default false */
|
|
5525
5616
|
hardDelete?: boolean;
|
|
5526
|
-
}, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
|
|
5617
|
+
}, params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
|
|
5527
5618
|
/**
|
|
5528
5619
|
* No description
|
|
5529
5620
|
*
|
|
@@ -5536,7 +5627,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5536
5627
|
* @response `404` `ProblemDetails` Not Found
|
|
5537
5628
|
* @response `422` `ProblemDetails` Client Error
|
|
5538
5629
|
*/
|
|
5539
|
-
updateAccountBilling: (id: string, data: AccountBillingRequest, params?: RequestParams) => Promise<AxiosResponse<AccountBilling, any>>;
|
|
5630
|
+
updateAccountBilling: (id: string, data: AccountBillingRequest, params?: RequestParams) => Promise<AxiosResponse<AccountBilling, any, {}>>;
|
|
5540
5631
|
/**
|
|
5541
5632
|
* No description
|
|
5542
5633
|
*
|
|
@@ -5554,7 +5645,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5554
5645
|
pageNumber?: number;
|
|
5555
5646
|
sortBy?: string;
|
|
5556
5647
|
sortDirection?: string;
|
|
5557
|
-
}, params?: RequestParams) => Promise<AxiosResponse<AuditLogEntryPaginated, any>>;
|
|
5648
|
+
}, params?: RequestParams) => Promise<AxiosResponse<AuditLogEntryPaginated, any, {}>>;
|
|
5558
5649
|
/**
|
|
5559
5650
|
* No description
|
|
5560
5651
|
*
|
|
@@ -5565,7 +5656,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5565
5656
|
* @secure
|
|
5566
5657
|
* @response `200` `(AuditEntityType)[]` Success
|
|
5567
5658
|
*/
|
|
5568
|
-
getAuditLogEntityTypes: (params?: RequestParams) => Promise<AxiosResponse<AuditEntityType[], any>>;
|
|
5659
|
+
getAuditLogEntityTypes: (params?: RequestParams) => Promise<AxiosResponse<AuditEntityType[], any, {}>>;
|
|
5569
5660
|
/**
|
|
5570
5661
|
* No description
|
|
5571
5662
|
*
|
|
@@ -5577,7 +5668,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5577
5668
|
* @response `200` `AuditLogEntry` Success
|
|
5578
5669
|
* @response `404` `ProblemDetails` Not Found
|
|
5579
5670
|
*/
|
|
5580
|
-
getAuditLogById: (id: string, params?: RequestParams) => Promise<AxiosResponse<AuditLogEntry, any>>;
|
|
5671
|
+
getAuditLogById: (id: string, params?: RequestParams) => Promise<AxiosResponse<AuditLogEntry, any, {}>>;
|
|
5581
5672
|
/**
|
|
5582
5673
|
* No description
|
|
5583
5674
|
*
|
|
@@ -5590,7 +5681,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5590
5681
|
* @response `401` `ProblemDetails` Unauthorized
|
|
5591
5682
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5592
5683
|
*/
|
|
5593
|
-
getTokenFromRefreshToken: (data: RefreshTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any>>;
|
|
5684
|
+
getTokenFromRefreshToken: (data: RefreshTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any, {}>>;
|
|
5594
5685
|
/**
|
|
5595
5686
|
* No description
|
|
5596
5687
|
*
|
|
@@ -5602,7 +5693,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5602
5693
|
* @response `200` `ForcePasswordReset` Success
|
|
5603
5694
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5604
5695
|
*/
|
|
5605
|
-
getToken: (data: TokenRequest, params?: RequestParams) => Promise<AxiosResponse<ForcePasswordReset, any>>;
|
|
5696
|
+
getToken: (data: TokenRequest, params?: RequestParams) => Promise<AxiosResponse<ForcePasswordReset, any, {}>>;
|
|
5606
5697
|
/**
|
|
5607
5698
|
* No description
|
|
5608
5699
|
*
|
|
@@ -5614,7 +5705,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5614
5705
|
* @response `200` `ForcePasswordReset` Success
|
|
5615
5706
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5616
5707
|
*/
|
|
5617
|
-
getTokenFromChallengeCode: (data: TokenChallengeRequest, params?: RequestParams) => Promise<AxiosResponse<ForcePasswordReset, any>>;
|
|
5708
|
+
getTokenFromChallengeCode: (data: TokenChallengeRequest, params?: RequestParams) => Promise<AxiosResponse<ForcePasswordReset, any, {}>>;
|
|
5618
5709
|
/**
|
|
5619
5710
|
* No description
|
|
5620
5711
|
*
|
|
@@ -5626,7 +5717,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5626
5717
|
* @response `200` `Token` Success
|
|
5627
5718
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5628
5719
|
*/
|
|
5629
|
-
getSystemToken: (data: SystemTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any>>;
|
|
5720
|
+
getSystemToken: (data: SystemTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any, {}>>;
|
|
5630
5721
|
/**
|
|
5631
5722
|
* No description
|
|
5632
5723
|
*
|
|
@@ -5638,7 +5729,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5638
5729
|
* @response `200` `SSOToken` Success
|
|
5639
5730
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5640
5731
|
*/
|
|
5641
|
-
getSsoToken: (data: SSOTokenRequest, params?: RequestParams) => Promise<AxiosResponse<SSOToken, any>>;
|
|
5732
|
+
getSsoToken: (data: SSOTokenRequest, params?: RequestParams) => Promise<AxiosResponse<SSOToken, any, {}>>;
|
|
5642
5733
|
/**
|
|
5643
5734
|
* No description
|
|
5644
5735
|
*
|
|
@@ -5650,7 +5741,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5650
5741
|
* @response `204` `NoContentResult` No Content
|
|
5651
5742
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5652
5743
|
*/
|
|
5653
|
-
logOut: (params?: RequestParams) => Promise<AxiosResponse<NoContentResult, any>>;
|
|
5744
|
+
logOut: (params?: RequestParams) => Promise<AxiosResponse<NoContentResult, any, {}>>;
|
|
5654
5745
|
/**
|
|
5655
5746
|
* No description
|
|
5656
5747
|
*
|
|
@@ -5669,7 +5760,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5669
5760
|
pageNumber?: number;
|
|
5670
5761
|
sortBy?: string;
|
|
5671
5762
|
sortDirection?: string;
|
|
5672
|
-
}, params?: RequestParams) => Promise<AxiosResponse<GetBranchPaginated, any>>;
|
|
5763
|
+
}, params?: RequestParams) => Promise<AxiosResponse<GetBranchPaginated, any, {}>>;
|
|
5673
5764
|
/**
|
|
5674
5765
|
* No description
|
|
5675
5766
|
*
|
|
@@ -5681,7 +5772,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5681
5772
|
* @response `200` `GetBranch` Success
|
|
5682
5773
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5683
5774
|
*/
|
|
5684
|
-
createBranch: (data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any>>;
|
|
5775
|
+
createBranch: (data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any, {}>>;
|
|
5685
5776
|
/**
|
|
5686
5777
|
* No description
|
|
5687
5778
|
*
|
|
@@ -5699,7 +5790,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5699
5790
|
pageNumber?: number;
|
|
5700
5791
|
sortBy?: string;
|
|
5701
5792
|
sortDirection?: string;
|
|
5702
|
-
}, params?: RequestParams) => Promise<AxiosResponse<GetBranchPaginated, any>>;
|
|
5793
|
+
}, params?: RequestParams) => Promise<AxiosResponse<GetBranchPaginated, any, {}>>;
|
|
5703
5794
|
/**
|
|
5704
5795
|
* No description
|
|
5705
5796
|
*
|
|
@@ -5710,7 +5801,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5710
5801
|
* @secure
|
|
5711
5802
|
* @response `200` `GetBranch` Success
|
|
5712
5803
|
*/
|
|
5713
|
-
getBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any>>;
|
|
5804
|
+
getBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any, {}>>;
|
|
5714
5805
|
/**
|
|
5715
5806
|
* No description
|
|
5716
5807
|
*
|
|
@@ -5722,7 +5813,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5722
5813
|
* @response `200` `GetBranch` Success
|
|
5723
5814
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5724
5815
|
*/
|
|
5725
|
-
replaceBranch: (branchId: string, data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any>>;
|
|
5816
|
+
replaceBranch: (branchId: string, data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any, {}>>;
|
|
5726
5817
|
/**
|
|
5727
5818
|
* No description
|
|
5728
5819
|
*
|
|
@@ -5733,7 +5824,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5733
5824
|
* @secure
|
|
5734
5825
|
* @response `204` `void` No Content
|
|
5735
5826
|
*/
|
|
5736
|
-
deleteBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
5827
|
+
deleteBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
5737
5828
|
/**
|
|
5738
5829
|
* No description
|
|
5739
5830
|
*
|
|
@@ -5745,7 +5836,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5745
5836
|
* @response `204` `void` No Content
|
|
5746
5837
|
* @response `400` `ProblemDetails` Bad Request
|
|
5747
5838
|
*/
|
|
5748
|
-
restoreBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
5839
|
+
restoreBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
5749
5840
|
/**
|
|
5750
5841
|
* No description
|
|
5751
5842
|
*
|
|
@@ -5757,7 +5848,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5757
5848
|
* @response `200` `SiteConfiguration` Success
|
|
5758
5849
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5759
5850
|
*/
|
|
5760
|
-
createBranchSiteConfiguration: (branchId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
5851
|
+
createBranchSiteConfiguration: (branchId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
5761
5852
|
/**
|
|
5762
5853
|
* No description
|
|
5763
5854
|
*
|
|
@@ -5768,7 +5859,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5768
5859
|
* @secure
|
|
5769
5860
|
* @response `200` `SiteConfigurationWithInherited` Success
|
|
5770
5861
|
*/
|
|
5771
|
-
getBranchSiteConfiguration: (branchId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
|
|
5862
|
+
getBranchSiteConfiguration: (branchId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any, {}>>;
|
|
5772
5863
|
/**
|
|
5773
5864
|
* No description
|
|
5774
5865
|
*
|
|
@@ -5782,7 +5873,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5782
5873
|
*/
|
|
5783
5874
|
replaceBranchSiteConfiguration: (branchId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
|
|
5784
5875
|
applyToChildren?: boolean;
|
|
5785
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
5876
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
5786
5877
|
/**
|
|
5787
5878
|
* No description
|
|
5788
5879
|
*
|
|
@@ -5793,7 +5884,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5793
5884
|
* @secure
|
|
5794
5885
|
* @response `200` `(LoanOfficerPublic)[]` Success
|
|
5795
5886
|
*/
|
|
5796
|
-
getLoanOfficersByBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic[], any>>;
|
|
5887
|
+
getLoanOfficersByBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic[], any, {}>>;
|
|
5797
5888
|
/**
|
|
5798
5889
|
* No description
|
|
5799
5890
|
*
|
|
@@ -5806,7 +5897,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5806
5897
|
*/
|
|
5807
5898
|
getBusinessRules: (query?: {
|
|
5808
5899
|
showAll?: boolean;
|
|
5809
|
-
}, params?: RequestParams) => Promise<AxiosResponse<BusinessRule[], any>>;
|
|
5900
|
+
}, params?: RequestParams) => Promise<AxiosResponse<BusinessRule[], any, {}>>;
|
|
5810
5901
|
/**
|
|
5811
5902
|
* No description
|
|
5812
5903
|
*
|
|
@@ -5818,7 +5909,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5818
5909
|
* @response `200` `BusinessRule` Success
|
|
5819
5910
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5820
5911
|
*/
|
|
5821
|
-
createBusinessRule: (data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
|
|
5912
|
+
createBusinessRule: (data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any, {}>>;
|
|
5822
5913
|
/**
|
|
5823
5914
|
* No description
|
|
5824
5915
|
*
|
|
@@ -5829,7 +5920,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5829
5920
|
* @secure
|
|
5830
5921
|
* @response `200` `BusinessRule` Success
|
|
5831
5922
|
*/
|
|
5832
|
-
getBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
|
|
5923
|
+
getBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any, {}>>;
|
|
5833
5924
|
/**
|
|
5834
5925
|
* No description
|
|
5835
5926
|
*
|
|
@@ -5841,7 +5932,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5841
5932
|
* @response `200` `BusinessRule` Success
|
|
5842
5933
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5843
5934
|
*/
|
|
5844
|
-
replaceBusinessRule: (id: string, data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
|
|
5935
|
+
replaceBusinessRule: (id: string, data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any, {}>>;
|
|
5845
5936
|
/**
|
|
5846
5937
|
* No description
|
|
5847
5938
|
*
|
|
@@ -5852,7 +5943,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5852
5943
|
* @secure
|
|
5853
5944
|
* @response `204` `void` No Content
|
|
5854
5945
|
*/
|
|
5855
|
-
deleteBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
5946
|
+
deleteBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
5856
5947
|
/**
|
|
5857
5948
|
* No description
|
|
5858
5949
|
*
|
|
@@ -5863,7 +5954,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5863
5954
|
* @secure
|
|
5864
5955
|
* @response `200` `BusinessRule` Success
|
|
5865
5956
|
*/
|
|
5866
|
-
restoreBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
|
|
5957
|
+
restoreBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any, {}>>;
|
|
5867
5958
|
/**
|
|
5868
5959
|
* @description Returns closed loan counts per account within the specified date range, including POS vs non-POS breakdown and utilization ratios.
|
|
5869
5960
|
*
|
|
@@ -5874,7 +5965,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5874
5965
|
* @secure
|
|
5875
5966
|
* @response `200` `ClosedLoansReport` Success
|
|
5876
5967
|
*/
|
|
5877
|
-
getClosedLoansReport: (data: ClosedLoansReportRequest, params?: RequestParams) => Promise<AxiosResponse<ClosedLoansReport, any>>;
|
|
5968
|
+
getClosedLoansReport: (data: ClosedLoansReportRequest, params?: RequestParams) => Promise<AxiosResponse<ClosedLoansReport, any, {}>>;
|
|
5878
5969
|
/**
|
|
5879
5970
|
* No description
|
|
5880
5971
|
*
|
|
@@ -5885,7 +5976,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5885
5976
|
* @secure
|
|
5886
5977
|
* @response `200` `(ConsumerConnectStatus)[]` Success
|
|
5887
5978
|
*/
|
|
5888
|
-
getConsumerConnectStatus: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<ConsumerConnectStatus[], any>>;
|
|
5979
|
+
getConsumerConnectStatus: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<ConsumerConnectStatus[], any, {}>>;
|
|
5889
5980
|
/**
|
|
5890
5981
|
* No description
|
|
5891
5982
|
*
|
|
@@ -5896,7 +5987,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5896
5987
|
* @secure
|
|
5897
5988
|
* @response `200` `(ConsumerConnectRetry)[]` Success
|
|
5898
5989
|
*/
|
|
5899
|
-
retryConsumerConnectAssociation: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<ConsumerConnectRetry[], any>>;
|
|
5990
|
+
retryConsumerConnectAssociation: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<ConsumerConnectRetry[], any, {}>>;
|
|
5900
5991
|
/**
|
|
5901
5992
|
* No description
|
|
5902
5993
|
*
|
|
@@ -5915,7 +6006,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5915
6006
|
pageNumber?: number;
|
|
5916
6007
|
sortBy?: string;
|
|
5917
6008
|
sortDirection?: string;
|
|
5918
|
-
}, params?: RequestParams) => Promise<AxiosResponse<CorporatePaginated, any>>;
|
|
6009
|
+
}, params?: RequestParams) => Promise<AxiosResponse<CorporatePaginated, any, {}>>;
|
|
5919
6010
|
/**
|
|
5920
6011
|
* No description
|
|
5921
6012
|
*
|
|
@@ -5927,7 +6018,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5927
6018
|
* @response `200` `Corporate` Success
|
|
5928
6019
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5929
6020
|
*/
|
|
5930
|
-
createCorporate: (data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any>>;
|
|
6021
|
+
createCorporate: (data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any, {}>>;
|
|
5931
6022
|
/**
|
|
5932
6023
|
* No description
|
|
5933
6024
|
*
|
|
@@ -5945,7 +6036,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5945
6036
|
pageNumber?: number;
|
|
5946
6037
|
sortBy?: string;
|
|
5947
6038
|
sortDirection?: string;
|
|
5948
|
-
}, params?: RequestParams) => Promise<AxiosResponse<CorporatePaginated, any>>;
|
|
6039
|
+
}, params?: RequestParams) => Promise<AxiosResponse<CorporatePaginated, any, {}>>;
|
|
5949
6040
|
/**
|
|
5950
6041
|
* No description
|
|
5951
6042
|
*
|
|
@@ -5956,7 +6047,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5956
6047
|
* @secure
|
|
5957
6048
|
* @response `200` `Corporate` Success
|
|
5958
6049
|
*/
|
|
5959
|
-
getCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<Corporate, any>>;
|
|
6050
|
+
getCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<Corporate, any, {}>>;
|
|
5960
6051
|
/**
|
|
5961
6052
|
* No description
|
|
5962
6053
|
*
|
|
@@ -5968,7 +6059,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5968
6059
|
* @response `200` `Corporate` Success
|
|
5969
6060
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5970
6061
|
*/
|
|
5971
|
-
replaceCorporate: (id: string, data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any>>;
|
|
6062
|
+
replaceCorporate: (id: string, data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any, {}>>;
|
|
5972
6063
|
/**
|
|
5973
6064
|
* No description
|
|
5974
6065
|
*
|
|
@@ -5979,7 +6070,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5979
6070
|
* @secure
|
|
5980
6071
|
* @response `204` `void` No Content
|
|
5981
6072
|
*/
|
|
5982
|
-
deleteCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6073
|
+
deleteCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
5983
6074
|
/**
|
|
5984
6075
|
* No description
|
|
5985
6076
|
*
|
|
@@ -5990,7 +6081,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5990
6081
|
* @secure
|
|
5991
6082
|
* @response `204` `void` No Content
|
|
5992
6083
|
*/
|
|
5993
|
-
restoreCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6084
|
+
restoreCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
5994
6085
|
/**
|
|
5995
6086
|
* No description
|
|
5996
6087
|
*
|
|
@@ -6002,7 +6093,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6002
6093
|
* @response `200` `SiteConfiguration` Success
|
|
6003
6094
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6004
6095
|
*/
|
|
6005
|
-
createCorporateSiteConfiguration: (corporateId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
6096
|
+
createCorporateSiteConfiguration: (corporateId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
6006
6097
|
/**
|
|
6007
6098
|
* No description
|
|
6008
6099
|
*
|
|
@@ -6013,7 +6104,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6013
6104
|
* @secure
|
|
6014
6105
|
* @response `200` `SiteConfigurationWithInherited` Success
|
|
6015
6106
|
*/
|
|
6016
|
-
getCorporateSiteConfiguration: (corporateId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
|
|
6107
|
+
getCorporateSiteConfiguration: (corporateId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any, {}>>;
|
|
6017
6108
|
/**
|
|
6018
6109
|
* No description
|
|
6019
6110
|
*
|
|
@@ -6027,7 +6118,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6027
6118
|
*/
|
|
6028
6119
|
replaceCorporateSiteConfiguration: (corporateId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
|
|
6029
6120
|
applyToChildren?: boolean;
|
|
6030
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
6121
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
6031
6122
|
/**
|
|
6032
6123
|
* No description
|
|
6033
6124
|
*
|
|
@@ -6038,7 +6129,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6038
6129
|
* @secure
|
|
6039
6130
|
* @response `200` `(BranchReduced)[]` Success
|
|
6040
6131
|
*/
|
|
6041
|
-
getBranchesByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchReduced[], any>>;
|
|
6132
|
+
getBranchesByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchReduced[], any, {}>>;
|
|
6042
6133
|
/**
|
|
6043
6134
|
* No description
|
|
6044
6135
|
*
|
|
@@ -6049,7 +6140,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6049
6140
|
* @secure
|
|
6050
6141
|
* @response `200` `(LoanOfficerPublic)[]` Success
|
|
6051
6142
|
*/
|
|
6052
|
-
getLoanOfficersByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic[], any>>;
|
|
6143
|
+
getLoanOfficersByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic[], any, {}>>;
|
|
6053
6144
|
/**
|
|
6054
6145
|
* No description
|
|
6055
6146
|
*
|
|
@@ -6069,7 +6160,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6069
6160
|
pageNumber?: number;
|
|
6070
6161
|
sortBy?: string;
|
|
6071
6162
|
sortDirection?: string;
|
|
6072
|
-
}, params?: RequestParams) => Promise<AxiosResponse<DevicePaginated, any>>;
|
|
6163
|
+
}, params?: RequestParams) => Promise<AxiosResponse<DevicePaginated, any, {}>>;
|
|
6073
6164
|
/**
|
|
6074
6165
|
* No description
|
|
6075
6166
|
*
|
|
@@ -6080,7 +6171,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6080
6171
|
* @secure
|
|
6081
6172
|
* @response `200` `Device` Success
|
|
6082
6173
|
*/
|
|
6083
|
-
getDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<Device, any>>;
|
|
6174
|
+
getDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<Device, any, {}>>;
|
|
6084
6175
|
/**
|
|
6085
6176
|
* No description
|
|
6086
6177
|
*
|
|
@@ -6091,7 +6182,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6091
6182
|
* @secure
|
|
6092
6183
|
* @response `200` `Device` Success
|
|
6093
6184
|
*/
|
|
6094
|
-
updateDevice: (id: string, data: DeviceRequest, params?: RequestParams) => Promise<AxiosResponse<Device, any>>;
|
|
6185
|
+
updateDevice: (id: string, data: DeviceRequest, params?: RequestParams) => Promise<AxiosResponse<Device, any, {}>>;
|
|
6095
6186
|
/**
|
|
6096
6187
|
* No description
|
|
6097
6188
|
*
|
|
@@ -6102,7 +6193,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6102
6193
|
* @secure
|
|
6103
6194
|
* @response `200` `DeviceMDM` Success
|
|
6104
6195
|
*/
|
|
6105
|
-
getDeviceBySerialNumber: (sn: string, params?: RequestParams) => Promise<AxiosResponse<DeviceMDM, any>>;
|
|
6196
|
+
getDeviceBySerialNumber: (sn: string, params?: RequestParams) => Promise<AxiosResponse<DeviceMDM, any, {}>>;
|
|
6106
6197
|
/**
|
|
6107
6198
|
* No description
|
|
6108
6199
|
*
|
|
@@ -6113,7 +6204,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6113
6204
|
* @secure
|
|
6114
6205
|
* @response `200` `Action` Success
|
|
6115
6206
|
*/
|
|
6116
|
-
createDeviceActionBySerialNumber: (sn: string, actionName: string, params?: RequestParams) => Promise<AxiosResponse<Action, any>>;
|
|
6207
|
+
createDeviceActionBySerialNumber: (sn: string, actionName: string, params?: RequestParams) => Promise<AxiosResponse<Action, any, {}>>;
|
|
6117
6208
|
/**
|
|
6118
6209
|
* No description
|
|
6119
6210
|
*
|
|
@@ -6127,7 +6218,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6127
6218
|
getDocumentBuckets: (query?: {
|
|
6128
6219
|
/** @default false */
|
|
6129
6220
|
includeSystemBuckets?: boolean;
|
|
6130
|
-
}, params?: RequestParams) => Promise<AxiosResponse<string[], any>>;
|
|
6221
|
+
}, params?: RequestParams) => Promise<AxiosResponse<string[], any, {}>>;
|
|
6131
6222
|
/**
|
|
6132
6223
|
* No description
|
|
6133
6224
|
*
|
|
@@ -6140,7 +6231,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6140
6231
|
*/
|
|
6141
6232
|
getDocumentTemplates: (query?: {
|
|
6142
6233
|
showAll?: boolean;
|
|
6143
|
-
}, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase[], any>>;
|
|
6234
|
+
}, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase[], any, {}>>;
|
|
6144
6235
|
/**
|
|
6145
6236
|
* No description
|
|
6146
6237
|
*
|
|
@@ -6153,7 +6244,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6153
6244
|
* @response `404` `ProblemDetails` Not Found
|
|
6154
6245
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6155
6246
|
*/
|
|
6156
|
-
createDocumentTemplate: (data: CreateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any>>;
|
|
6247
|
+
createDocumentTemplate: (data: CreateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any, {}>>;
|
|
6157
6248
|
/**
|
|
6158
6249
|
* No description
|
|
6159
6250
|
*
|
|
@@ -6169,7 +6260,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6169
6260
|
showAll?: boolean;
|
|
6170
6261
|
/** @default true */
|
|
6171
6262
|
publishedOnly?: boolean;
|
|
6172
|
-
}, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase[], any>>;
|
|
6263
|
+
}, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase[], any, {}>>;
|
|
6173
6264
|
/**
|
|
6174
6265
|
* No description
|
|
6175
6266
|
*
|
|
@@ -6181,7 +6272,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6181
6272
|
* @response `200` `DocumentTemplate` Success
|
|
6182
6273
|
* @response `404` `ProblemDetails` Not Found
|
|
6183
6274
|
*/
|
|
6184
|
-
getDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplate, any>>;
|
|
6275
|
+
getDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplate, any, {}>>;
|
|
6185
6276
|
/**
|
|
6186
6277
|
* No description
|
|
6187
6278
|
*
|
|
@@ -6195,7 +6286,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6195
6286
|
* @response `404` `ProblemDetails` Not Found
|
|
6196
6287
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6197
6288
|
*/
|
|
6198
|
-
replaceDocumentTemplate: (id: string, data: UpdateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any>>;
|
|
6289
|
+
replaceDocumentTemplate: (id: string, data: UpdateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any, {}>>;
|
|
6199
6290
|
/**
|
|
6200
6291
|
* No description
|
|
6201
6292
|
*
|
|
@@ -6208,7 +6299,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6208
6299
|
* @response `401` `ProblemDetails` Unauthorized
|
|
6209
6300
|
* @response `404` `ProblemDetails` Not Found
|
|
6210
6301
|
*/
|
|
6211
|
-
deleteDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6302
|
+
deleteDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6212
6303
|
/**
|
|
6213
6304
|
* No description
|
|
6214
6305
|
*
|
|
@@ -6221,7 +6312,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6221
6312
|
* @response `401` `ProblemDetails` Unauthorized
|
|
6222
6313
|
* @response `404` `ProblemDetails` Not Found
|
|
6223
6314
|
*/
|
|
6224
|
-
restoreDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6315
|
+
restoreDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6225
6316
|
/**
|
|
6226
6317
|
* No description
|
|
6227
6318
|
*
|
|
@@ -6232,7 +6323,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6232
6323
|
* @secure
|
|
6233
6324
|
* @response `200` `(DocumentTemplateVersion)[]` Success
|
|
6234
6325
|
*/
|
|
6235
|
-
getDocumentTemplateVersions: (documentId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion[], any>>;
|
|
6326
|
+
getDocumentTemplateVersions: (documentId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion[], any, {}>>;
|
|
6236
6327
|
/**
|
|
6237
6328
|
* No description
|
|
6238
6329
|
*
|
|
@@ -6243,7 +6334,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6243
6334
|
* @secure
|
|
6244
6335
|
* @response `200` `DocumentTemplateVersion` Success
|
|
6245
6336
|
*/
|
|
6246
|
-
createDocumentTemplateVersion: (documentId: string, data: DocumentTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
|
|
6337
|
+
createDocumentTemplateVersion: (documentId: string, data: DocumentTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any, {}>>;
|
|
6247
6338
|
/**
|
|
6248
6339
|
* No description
|
|
6249
6340
|
*
|
|
@@ -6254,7 +6345,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6254
6345
|
* @secure
|
|
6255
6346
|
* @response `200` `DocumentTemplateVersion` Success
|
|
6256
6347
|
*/
|
|
6257
|
-
getDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
|
|
6348
|
+
getDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any, {}>>;
|
|
6258
6349
|
/**
|
|
6259
6350
|
* No description
|
|
6260
6351
|
*
|
|
@@ -6265,7 +6356,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6265
6356
|
* @secure
|
|
6266
6357
|
* @response `200` `DocumentTemplateVersion` Success
|
|
6267
6358
|
*/
|
|
6268
|
-
replaceDocumentTemplateVersion: (documentId: string, id: string, data: DocumentTemplateVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
|
|
6359
|
+
replaceDocumentTemplateVersion: (documentId: string, id: string, data: DocumentTemplateVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any, {}>>;
|
|
6269
6360
|
/**
|
|
6270
6361
|
* No description
|
|
6271
6362
|
*
|
|
@@ -6276,7 +6367,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6276
6367
|
* @secure
|
|
6277
6368
|
* @response `200` `DocumentTemplateVersion` Success
|
|
6278
6369
|
*/
|
|
6279
|
-
deleteDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
|
|
6370
|
+
deleteDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any, {}>>;
|
|
6280
6371
|
/**
|
|
6281
6372
|
* No description
|
|
6282
6373
|
*
|
|
@@ -6304,7 +6395,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6304
6395
|
pageSize?: number;
|
|
6305
6396
|
/** @format uuid */
|
|
6306
6397
|
loanId?: string;
|
|
6307
|
-
}, params?: RequestParams) => Promise<AxiosResponse<EncompassPackageList, any>>;
|
|
6398
|
+
}, params?: RequestParams) => Promise<AxiosResponse<EncompassPackageList, any, {}>>;
|
|
6308
6399
|
/**
|
|
6309
6400
|
* No description
|
|
6310
6401
|
*
|
|
@@ -6316,7 +6407,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6316
6407
|
* @response `401` `EncompassError` Unauthorized
|
|
6317
6408
|
* @response `500` `EncompassError` Server Error
|
|
6318
6409
|
*/
|
|
6319
|
-
getUserRecipients: (params?: RequestParams) => Promise<AxiosResponse<EncompassRecipientItem[], any>>;
|
|
6410
|
+
getUserRecipients: (params?: RequestParams) => Promise<AxiosResponse<EncompassRecipientItem[], any, {}>>;
|
|
6320
6411
|
/**
|
|
6321
6412
|
* No description
|
|
6322
6413
|
*
|
|
@@ -6331,7 +6422,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6331
6422
|
* @response `404` `EncompassError` Not Found
|
|
6332
6423
|
* @response `500` `EncompassError` Server Error
|
|
6333
6424
|
*/
|
|
6334
|
-
createEncompassSession: (data: CreateSessionRequest, params?: RequestParams) => Promise<AxiosResponse<CreateSession, any>>;
|
|
6425
|
+
createEncompassSession: (data: CreateSessionRequest, params?: RequestParams) => Promise<AxiosResponse<CreateSession, any, {}>>;
|
|
6335
6426
|
/**
|
|
6336
6427
|
* No description
|
|
6337
6428
|
*
|
|
@@ -6351,7 +6442,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6351
6442
|
sortDirection?: string;
|
|
6352
6443
|
/** @default false */
|
|
6353
6444
|
includeDeleted?: boolean;
|
|
6354
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FilePaginated, any>>;
|
|
6445
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FilePaginated, any, {}>>;
|
|
6355
6446
|
/**
|
|
6356
6447
|
* No description
|
|
6357
6448
|
*
|
|
@@ -6369,7 +6460,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6369
6460
|
file?: File;
|
|
6370
6461
|
isPublic?: boolean;
|
|
6371
6462
|
bucket?: string;
|
|
6372
|
-
}, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
|
|
6463
|
+
}, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
|
|
6373
6464
|
/**
|
|
6374
6465
|
* No description
|
|
6375
6466
|
*
|
|
@@ -6380,7 +6471,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6380
6471
|
* @secure
|
|
6381
6472
|
* @response `201` `File` Created
|
|
6382
6473
|
*/
|
|
6383
|
-
getFileById: (id: string, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
|
|
6474
|
+
getFileById: (id: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
|
|
6384
6475
|
/**
|
|
6385
6476
|
* No description
|
|
6386
6477
|
*
|
|
@@ -6392,7 +6483,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6392
6483
|
* @response `200` `string` Success
|
|
6393
6484
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6394
6485
|
*/
|
|
6395
|
-
replaceFile: (id: string, data: FileRequest, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
6486
|
+
replaceFile: (id: string, data: FileRequest, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
6396
6487
|
/**
|
|
6397
6488
|
* No description
|
|
6398
6489
|
*
|
|
@@ -6403,7 +6494,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6403
6494
|
* @secure
|
|
6404
6495
|
* @response `204` `void` No Content
|
|
6405
6496
|
*/
|
|
6406
|
-
deleteFile: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6497
|
+
deleteFile: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6407
6498
|
/**
|
|
6408
6499
|
* No description
|
|
6409
6500
|
*
|
|
@@ -6421,7 +6512,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6421
6512
|
pageNumber?: number;
|
|
6422
6513
|
sortBy?: string;
|
|
6423
6514
|
sortDirection?: string;
|
|
6424
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FilePaginated, any>>;
|
|
6515
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FilePaginated, any, {}>>;
|
|
6425
6516
|
/**
|
|
6426
6517
|
* No description
|
|
6427
6518
|
*
|
|
@@ -6434,7 +6525,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6434
6525
|
*/
|
|
6435
6526
|
getForms: (query?: {
|
|
6436
6527
|
showAll?: boolean;
|
|
6437
|
-
}, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms[], any>>;
|
|
6528
|
+
}, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms[], any, {}>>;
|
|
6438
6529
|
/**
|
|
6439
6530
|
* No description
|
|
6440
6531
|
*
|
|
@@ -6446,7 +6537,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6446
6537
|
* @response `201` `Form` Created
|
|
6447
6538
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6448
6539
|
*/
|
|
6449
|
-
createForm: (data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<Form, any>>;
|
|
6540
|
+
createForm: (data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<Form, any, {}>>;
|
|
6450
6541
|
/**
|
|
6451
6542
|
* No description
|
|
6452
6543
|
*
|
|
@@ -6457,7 +6548,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6457
6548
|
* @secure
|
|
6458
6549
|
* @response `200` `Form` Success
|
|
6459
6550
|
*/
|
|
6460
|
-
getForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<Form, any>>;
|
|
6551
|
+
getForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<Form, any, {}>>;
|
|
6461
6552
|
/**
|
|
6462
6553
|
* No description
|
|
6463
6554
|
*
|
|
@@ -6469,7 +6560,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6469
6560
|
* @response `200` `Form` Success
|
|
6470
6561
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6471
6562
|
*/
|
|
6472
|
-
replaceForm: (id: string, data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<Form, any>>;
|
|
6563
|
+
replaceForm: (id: string, data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<Form, any, {}>>;
|
|
6473
6564
|
/**
|
|
6474
6565
|
* No description
|
|
6475
6566
|
*
|
|
@@ -6480,7 +6571,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6480
6571
|
* @secure
|
|
6481
6572
|
* @response `204` `void` No Content
|
|
6482
6573
|
*/
|
|
6483
|
-
deleteForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6574
|
+
deleteForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6484
6575
|
/**
|
|
6485
6576
|
* No description
|
|
6486
6577
|
*
|
|
@@ -6491,7 +6582,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6491
6582
|
* @secure
|
|
6492
6583
|
* @response `200` `Form` Success
|
|
6493
6584
|
*/
|
|
6494
|
-
restoreForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<Form, any>>;
|
|
6585
|
+
restoreForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<Form, any, {}>>;
|
|
6495
6586
|
/**
|
|
6496
6587
|
* No description
|
|
6497
6588
|
*
|
|
@@ -6506,7 +6597,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6506
6597
|
/** @format binary */
|
|
6507
6598
|
file?: File;
|
|
6508
6599
|
name?: string;
|
|
6509
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionFile, any>>;
|
|
6600
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionFile, any, {}>>;
|
|
6510
6601
|
/**
|
|
6511
6602
|
* No description
|
|
6512
6603
|
*
|
|
@@ -6517,7 +6608,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6517
6608
|
* @secure
|
|
6518
6609
|
* @response `204` `void` No Content
|
|
6519
6610
|
*/
|
|
6520
|
-
deleteFormSubmissionFile: (formSubmissionFileId: string, formSubmissionId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6611
|
+
deleteFormSubmissionFile: (formSubmissionFileId: string, formSubmissionId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6521
6612
|
/**
|
|
6522
6613
|
* No description
|
|
6523
6614
|
*
|
|
@@ -6531,7 +6622,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6531
6622
|
downloadFormSubmissionFile: (formSubmissionFileId: string, formSubmissionId: string, query?: {
|
|
6532
6623
|
/** @format uuid */
|
|
6533
6624
|
siteConfigurationId?: string;
|
|
6534
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FileWithBytes, any>>;
|
|
6625
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FileWithBytes, any, {}>>;
|
|
6535
6626
|
/**
|
|
6536
6627
|
* No description
|
|
6537
6628
|
*
|
|
@@ -6549,7 +6640,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6549
6640
|
pageNumber?: number;
|
|
6550
6641
|
sortBy?: string;
|
|
6551
6642
|
sortDirection?: string;
|
|
6552
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionPaginated, any>>;
|
|
6643
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionPaginated, any, {}>>;
|
|
6553
6644
|
/**
|
|
6554
6645
|
* No description
|
|
6555
6646
|
*
|
|
@@ -6562,7 +6653,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6562
6653
|
*/
|
|
6563
6654
|
createFormSubmission: (data: FormSubmissionRequest, query?: {
|
|
6564
6655
|
formID?: string;
|
|
6565
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any>>;
|
|
6656
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any, {}>>;
|
|
6566
6657
|
/**
|
|
6567
6658
|
* No description
|
|
6568
6659
|
*
|
|
@@ -6573,7 +6664,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6573
6664
|
* @secure
|
|
6574
6665
|
* @response `200` `FormSubmission` Success
|
|
6575
6666
|
*/
|
|
6576
|
-
getFormSubmission: (id: string, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any>>;
|
|
6667
|
+
getFormSubmission: (id: string, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any, {}>>;
|
|
6577
6668
|
/**
|
|
6578
6669
|
* No description
|
|
6579
6670
|
*
|
|
@@ -6584,7 +6675,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6584
6675
|
* @secure
|
|
6585
6676
|
* @response `200` `FormSubmission` Success
|
|
6586
6677
|
*/
|
|
6587
|
-
replaceFormSubmission: (id: string, data: FormSubmissionRequest, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any>>;
|
|
6678
|
+
replaceFormSubmission: (id: string, data: FormSubmissionRequest, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any, {}>>;
|
|
6588
6679
|
/**
|
|
6589
6680
|
* No description
|
|
6590
6681
|
*
|
|
@@ -6595,7 +6686,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6595
6686
|
* @secure
|
|
6596
6687
|
* @response `204` `void` No Content
|
|
6597
6688
|
*/
|
|
6598
|
-
deleteFormSubmission: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6689
|
+
deleteFormSubmission: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6599
6690
|
/**
|
|
6600
6691
|
* No description
|
|
6601
6692
|
*
|
|
@@ -6613,7 +6704,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6613
6704
|
pageNumber?: number;
|
|
6614
6705
|
sortBy?: string;
|
|
6615
6706
|
sortDirection?: string;
|
|
6616
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionPaginated, any>>;
|
|
6707
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionPaginated, any, {}>>;
|
|
6617
6708
|
/**
|
|
6618
6709
|
* No description
|
|
6619
6710
|
*
|
|
@@ -6624,7 +6715,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6624
6715
|
* @secure
|
|
6625
6716
|
* @response `200` `(FormVersion)[]` Success
|
|
6626
6717
|
*/
|
|
6627
|
-
getFormVersions: (formId: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion[], any>>;
|
|
6718
|
+
getFormVersions: (formId: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion[], any, {}>>;
|
|
6628
6719
|
/**
|
|
6629
6720
|
* No description
|
|
6630
6721
|
*
|
|
@@ -6635,7 +6726,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6635
6726
|
* @secure
|
|
6636
6727
|
* @response `200` `FormVersion` Success
|
|
6637
6728
|
*/
|
|
6638
|
-
createFormVersion: (formId: string, data: FormVersionRequest, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
|
|
6729
|
+
createFormVersion: (formId: string, data: FormVersionRequest, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any, {}>>;
|
|
6639
6730
|
/**
|
|
6640
6731
|
* No description
|
|
6641
6732
|
*
|
|
@@ -6646,7 +6737,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6646
6737
|
* @secure
|
|
6647
6738
|
* @response `200` `FormVersion` Success
|
|
6648
6739
|
*/
|
|
6649
|
-
getFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
|
|
6740
|
+
getFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any, {}>>;
|
|
6650
6741
|
/**
|
|
6651
6742
|
* No description
|
|
6652
6743
|
*
|
|
@@ -6657,7 +6748,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6657
6748
|
* @secure
|
|
6658
6749
|
* @response `200` `FormVersion` Success
|
|
6659
6750
|
*/
|
|
6660
|
-
replaceFormVersion: (formId: string, id: string, data: FormVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
|
|
6751
|
+
replaceFormVersion: (formId: string, id: string, data: FormVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any, {}>>;
|
|
6661
6752
|
/**
|
|
6662
6753
|
* No description
|
|
6663
6754
|
*
|
|
@@ -6668,7 +6759,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6668
6759
|
* @secure
|
|
6669
6760
|
* @response `200` `FormVersion` Success
|
|
6670
6761
|
*/
|
|
6671
|
-
deleteFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
|
|
6762
|
+
deleteFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any, {}>>;
|
|
6672
6763
|
/**
|
|
6673
6764
|
* No description
|
|
6674
6765
|
*
|
|
@@ -6679,7 +6770,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6679
6770
|
* @secure
|
|
6680
6771
|
* @response `200` `Record<string,any>` Success
|
|
6681
6772
|
*/
|
|
6682
|
-
getLoanData: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Record<string, any>, any>>;
|
|
6773
|
+
getLoanData: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Record<string, any>, any, {}>>;
|
|
6683
6774
|
/**
|
|
6684
6775
|
* No description
|
|
6685
6776
|
*
|
|
@@ -6692,7 +6783,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6692
6783
|
* @response `200` `string` Success
|
|
6693
6784
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6694
6785
|
*/
|
|
6695
|
-
updateLoanConsentAndCustomFieldsObsolete: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
6786
|
+
updateLoanConsentAndCustomFieldsObsolete: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
6696
6787
|
/**
|
|
6697
6788
|
* No description
|
|
6698
6789
|
*
|
|
@@ -6703,7 +6794,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6703
6794
|
* @secure
|
|
6704
6795
|
* @response `200` `GetReport` Success
|
|
6705
6796
|
*/
|
|
6706
|
-
getLoansReport: (data: GetReportRequest, params?: RequestParams) => Promise<AxiosResponse<GetReport, any>>;
|
|
6797
|
+
getLoansReport: (data: GetReportRequest, params?: RequestParams) => Promise<AxiosResponse<GetReport, any, {}>>;
|
|
6707
6798
|
/**
|
|
6708
6799
|
* No description
|
|
6709
6800
|
*
|
|
@@ -6720,7 +6811,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6720
6811
|
createLoan: (data: any, query?: {
|
|
6721
6812
|
/** @default false */
|
|
6722
6813
|
isPatch?: boolean;
|
|
6723
|
-
}, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
6814
|
+
}, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
6724
6815
|
/**
|
|
6725
6816
|
* No description
|
|
6726
6817
|
*
|
|
@@ -6736,7 +6827,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6736
6827
|
createLoanInternal: (data: any, query?: {
|
|
6737
6828
|
/** @default false */
|
|
6738
6829
|
isPatch?: boolean;
|
|
6739
|
-
}, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
6830
|
+
}, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
6740
6831
|
/**
|
|
6741
6832
|
* No description
|
|
6742
6833
|
*
|
|
@@ -6748,7 +6839,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6748
6839
|
* @response `200` `string` Success
|
|
6749
6840
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6750
6841
|
*/
|
|
6751
|
-
updateLoanCustomFields: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
6842
|
+
updateLoanCustomFields: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
6752
6843
|
/**
|
|
6753
6844
|
* No description
|
|
6754
6845
|
*
|
|
@@ -6761,7 +6852,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6761
6852
|
* @response `202` `string` Accepted
|
|
6762
6853
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6763
6854
|
*/
|
|
6764
|
-
updateLoanConsent: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
6855
|
+
updateLoanConsent: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
6765
6856
|
/**
|
|
6766
6857
|
* No description
|
|
6767
6858
|
*
|
|
@@ -6772,7 +6863,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6772
6863
|
* @secure
|
|
6773
6864
|
* @response `200` `(DocumentData)[]` Success
|
|
6774
6865
|
*/
|
|
6775
|
-
getTaskDocumentsByLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentData[], any>>;
|
|
6866
|
+
getTaskDocumentsByLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentData[], any, {}>>;
|
|
6776
6867
|
/**
|
|
6777
6868
|
* No description
|
|
6778
6869
|
*
|
|
@@ -6786,7 +6877,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6786
6877
|
getLoanDocumentContent: (loanId: string, documentId: string, query?: {
|
|
6787
6878
|
/** @default "base64" */
|
|
6788
6879
|
contentType?: string;
|
|
6789
|
-
}, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6880
|
+
}, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6790
6881
|
/**
|
|
6791
6882
|
* No description
|
|
6792
6883
|
*
|
|
@@ -6797,7 +6888,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6797
6888
|
* @secure
|
|
6798
6889
|
* @response `204` `void` No Content
|
|
6799
6890
|
*/
|
|
6800
|
-
getLoanRecipients: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6891
|
+
getLoanRecipients: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6801
6892
|
/**
|
|
6802
6893
|
* No description
|
|
6803
6894
|
*
|
|
@@ -6808,7 +6899,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6808
6899
|
* @secure
|
|
6809
6900
|
* @response `200` `(PreliminaryCondition)[]` Success
|
|
6810
6901
|
*/
|
|
6811
|
-
getPreliminaryConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<PreliminaryCondition[], any>>;
|
|
6902
|
+
getPreliminaryConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<PreliminaryCondition[], any, {}>>;
|
|
6812
6903
|
/**
|
|
6813
6904
|
* No description
|
|
6814
6905
|
*
|
|
@@ -6819,7 +6910,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6819
6910
|
* @secure
|
|
6820
6911
|
* @response `200` `(UnderwritingCondition)[]` Success
|
|
6821
6912
|
*/
|
|
6822
|
-
getUnderwritingConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UnderwritingCondition[], any>>;
|
|
6913
|
+
getUnderwritingConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UnderwritingCondition[], any, {}>>;
|
|
6823
6914
|
/**
|
|
6824
6915
|
* No description
|
|
6825
6916
|
*
|
|
@@ -6830,7 +6921,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6830
6921
|
* @secure
|
|
6831
6922
|
* @response `200` `string` Success
|
|
6832
6923
|
*/
|
|
6833
|
-
getLoanEmbeddedSigningLink: (envelopeId: string, userName: string, email: string, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
6924
|
+
getLoanEmbeddedSigningLink: (envelopeId: string, userName: string, email: string, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
6834
6925
|
/**
|
|
6835
6926
|
* No description
|
|
6836
6927
|
*
|
|
@@ -6842,7 +6933,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6842
6933
|
* @secure
|
|
6843
6934
|
* @response `200` `DocumentDataRequest` Success
|
|
6844
6935
|
*/
|
|
6845
|
-
createLegacyLoanDocument: (data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any>>;
|
|
6936
|
+
createLegacyLoanDocument: (data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any, {}>>;
|
|
6846
6937
|
/**
|
|
6847
6938
|
* No description
|
|
6848
6939
|
*
|
|
@@ -6859,7 +6950,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6859
6950
|
createEditDraftForLoan: (loanId: string, query?: {
|
|
6860
6951
|
/** @default false */
|
|
6861
6952
|
isCoBorrower?: boolean;
|
|
6862
|
-
}, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
|
|
6953
|
+
}, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
|
|
6863
6954
|
/**
|
|
6864
6955
|
* No description
|
|
6865
6956
|
*
|
|
@@ -6875,7 +6966,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6875
6966
|
file?: File;
|
|
6876
6967
|
/** @format int32 */
|
|
6877
6968
|
weight?: number;
|
|
6878
|
-
}, params?: RequestParams) => Promise<AxiosResponse<ListingFile, any>>;
|
|
6969
|
+
}, params?: RequestParams) => Promise<AxiosResponse<ListingFile, any, {}>>;
|
|
6879
6970
|
/**
|
|
6880
6971
|
* No description
|
|
6881
6972
|
*
|
|
@@ -6886,7 +6977,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6886
6977
|
* @secure
|
|
6887
6978
|
* @response `200` `ListingFile` Success
|
|
6888
6979
|
*/
|
|
6889
|
-
updateListingFiles: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingFile, any>>;
|
|
6980
|
+
updateListingFiles: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingFile, any, {}>>;
|
|
6890
6981
|
/**
|
|
6891
6982
|
* No description
|
|
6892
6983
|
*
|
|
@@ -6897,7 +6988,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6897
6988
|
* @secure
|
|
6898
6989
|
* @response `204` `Listing` No Content
|
|
6899
6990
|
*/
|
|
6900
|
-
removeListingFile: (listingId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
|
|
6991
|
+
removeListingFile: (listingId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
|
|
6901
6992
|
/**
|
|
6902
6993
|
* No description
|
|
6903
6994
|
*
|
|
@@ -6915,7 +7006,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6915
7006
|
file?: File;
|
|
6916
7007
|
/** @format int32 */
|
|
6917
7008
|
weight?: number;
|
|
6918
|
-
}, params?: RequestParams) => Promise<AxiosResponse<ListingPhoto, any>>;
|
|
7009
|
+
}, params?: RequestParams) => Promise<AxiosResponse<ListingPhoto, any, {}>>;
|
|
6919
7010
|
/**
|
|
6920
7011
|
* No description
|
|
6921
7012
|
*
|
|
@@ -6926,7 +7017,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6926
7017
|
* @secure
|
|
6927
7018
|
* @response `200` `(ListingPhoto)[]` Success
|
|
6928
7019
|
*/
|
|
6929
|
-
updateListingPhotos: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingPhoto[], any>>;
|
|
7020
|
+
updateListingPhotos: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingPhoto[], any, {}>>;
|
|
6930
7021
|
/**
|
|
6931
7022
|
* No description
|
|
6932
7023
|
*
|
|
@@ -6937,7 +7028,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6937
7028
|
* @secure
|
|
6938
7029
|
* @response `204` `Listing` No Content
|
|
6939
7030
|
*/
|
|
6940
|
-
removeListingPhoto: (listingId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
|
|
7031
|
+
removeListingPhoto: (listingId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
|
|
6941
7032
|
/**
|
|
6942
7033
|
* No description
|
|
6943
7034
|
*
|
|
@@ -6955,7 +7046,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6955
7046
|
pageNumber?: number;
|
|
6956
7047
|
sortBy?: string;
|
|
6957
7048
|
sortDirection?: string;
|
|
6958
|
-
}, params?: RequestParams) => Promise<AxiosResponse<ListingPaginated, any>>;
|
|
7049
|
+
}, params?: RequestParams) => Promise<AxiosResponse<ListingPaginated, any, {}>>;
|
|
6959
7050
|
/**
|
|
6960
7051
|
* No description
|
|
6961
7052
|
*
|
|
@@ -6966,7 +7057,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6966
7057
|
* @secure
|
|
6967
7058
|
* @response `201` `Listing` Created
|
|
6968
7059
|
*/
|
|
6969
|
-
createListing: (data: ListingRequest, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
|
|
7060
|
+
createListing: (data: ListingRequest, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
|
|
6970
7061
|
/**
|
|
6971
7062
|
* No description
|
|
6972
7063
|
*
|
|
@@ -6977,7 +7068,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6977
7068
|
* @secure
|
|
6978
7069
|
* @response `200` `Listing` Success
|
|
6979
7070
|
*/
|
|
6980
|
-
getListingBySlug: (slug: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
|
|
7071
|
+
getListingBySlug: (slug: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
|
|
6981
7072
|
/**
|
|
6982
7073
|
* No description
|
|
6983
7074
|
*
|
|
@@ -6988,7 +7079,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6988
7079
|
* @secure
|
|
6989
7080
|
* @response `200` `Listing` Success
|
|
6990
7081
|
*/
|
|
6991
|
-
getListing: (id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
|
|
7082
|
+
getListing: (id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
|
|
6992
7083
|
/**
|
|
6993
7084
|
* No description
|
|
6994
7085
|
*
|
|
@@ -6999,7 +7090,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6999
7090
|
* @secure
|
|
7000
7091
|
* @response `200` `Listing` Success
|
|
7001
7092
|
*/
|
|
7002
|
-
replaceListing: (id: string, data: ListingRequest, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
|
|
7093
|
+
replaceListing: (id: string, data: ListingRequest, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
|
|
7003
7094
|
/**
|
|
7004
7095
|
* No description
|
|
7005
7096
|
*
|
|
@@ -7010,7 +7101,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7010
7101
|
* @secure
|
|
7011
7102
|
* @response `204` `void` No Content
|
|
7012
7103
|
*/
|
|
7013
|
-
deleteListing: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7104
|
+
deleteListing: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7014
7105
|
/**
|
|
7015
7106
|
* No description
|
|
7016
7107
|
*
|
|
@@ -7028,7 +7119,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7028
7119
|
pageNumber?: number;
|
|
7029
7120
|
sortBy?: string;
|
|
7030
7121
|
sortDirection?: string;
|
|
7031
|
-
}, params?: RequestParams) => Promise<AxiosResponse<ListingPaginated, any>>;
|
|
7122
|
+
}, params?: RequestParams) => Promise<AxiosResponse<ListingPaginated, any, {}>>;
|
|
7032
7123
|
/**
|
|
7033
7124
|
* No description
|
|
7034
7125
|
*
|
|
@@ -7042,7 +7133,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7042
7133
|
updateListingBackgroundImage: (id: string, data: {
|
|
7043
7134
|
/** @format binary */
|
|
7044
7135
|
file?: File;
|
|
7045
|
-
}, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
|
|
7136
|
+
}, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
|
|
7046
7137
|
/**
|
|
7047
7138
|
* No description
|
|
7048
7139
|
*
|
|
@@ -7053,7 +7144,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7053
7144
|
* @secure
|
|
7054
7145
|
* @response `204` `void` No Content
|
|
7055
7146
|
*/
|
|
7056
|
-
deleteListingBackgroundImage: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7147
|
+
deleteListingBackgroundImage: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7057
7148
|
/**
|
|
7058
7149
|
* No description
|
|
7059
7150
|
*
|
|
@@ -7064,7 +7155,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7064
7155
|
* @secure
|
|
7065
7156
|
* @response `200` `File` Success
|
|
7066
7157
|
*/
|
|
7067
|
-
getListingOpenHouseFlyer: (id: string, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
|
|
7158
|
+
getListingOpenHouseFlyer: (id: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
|
|
7068
7159
|
/**
|
|
7069
7160
|
* No description
|
|
7070
7161
|
*
|
|
@@ -7075,7 +7166,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7075
7166
|
* @secure
|
|
7076
7167
|
* @response `200` `RunLOCalculation` Success
|
|
7077
7168
|
*/
|
|
7078
|
-
getLoanCalculator: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any>>;
|
|
7169
|
+
getLoanCalculator: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any, {}>>;
|
|
7079
7170
|
/**
|
|
7080
7171
|
* No description
|
|
7081
7172
|
*
|
|
@@ -7088,7 +7179,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7088
7179
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7089
7180
|
* @response `423` `UnprocessableEntity` Client Error
|
|
7090
7181
|
*/
|
|
7091
|
-
runLoanCalculator: (loanId: string, data: RunLOCalculationRequest, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any>>;
|
|
7182
|
+
runLoanCalculator: (loanId: string, data: RunLOCalculationRequest, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any, {}>>;
|
|
7092
7183
|
/**
|
|
7093
7184
|
* No description
|
|
7094
7185
|
*
|
|
@@ -7099,7 +7190,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7099
7190
|
* @secure
|
|
7100
7191
|
* @response `200` `LoanComparison` Success
|
|
7101
7192
|
*/
|
|
7102
|
-
getLoanComparisons: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<LoanComparison, any>>;
|
|
7193
|
+
getLoanComparisons: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<LoanComparison, any, {}>>;
|
|
7103
7194
|
/**
|
|
7104
7195
|
* No description
|
|
7105
7196
|
*
|
|
@@ -7112,7 +7203,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7112
7203
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7113
7204
|
* @response `423` `UnprocessableEntity` Client Error
|
|
7114
7205
|
*/
|
|
7115
|
-
createLoanComparison: (loanId: string, index: number, data: LoanComparisonScenario, params?: RequestParams) => Promise<AxiosResponse<LoanComparisonScenario, any>>;
|
|
7206
|
+
createLoanComparison: (loanId: string, index: number, data: LoanComparisonScenario, params?: RequestParams) => Promise<AxiosResponse<LoanComparisonScenario, any, {}>>;
|
|
7116
7207
|
/**
|
|
7117
7208
|
* No description
|
|
7118
7209
|
*
|
|
@@ -7123,7 +7214,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7123
7214
|
* @secure
|
|
7124
7215
|
* @response `204` `void` No Content
|
|
7125
7216
|
*/
|
|
7126
|
-
deleteLoanComparison: (loanId: string, index: number, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7217
|
+
deleteLoanComparison: (loanId: string, index: number, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7127
7218
|
/**
|
|
7128
7219
|
* No description
|
|
7129
7220
|
*
|
|
@@ -7135,7 +7226,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7135
7226
|
* @response `204` `void` No Content
|
|
7136
7227
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7137
7228
|
*/
|
|
7138
|
-
createLoanComparisonPdf: (loanId: string, data: PostLoanComparisonPdfRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7229
|
+
createLoanComparisonPdf: (loanId: string, data: PostLoanComparisonPdfRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7139
7230
|
/**
|
|
7140
7231
|
* No description
|
|
7141
7232
|
*
|
|
@@ -7146,7 +7237,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7146
7237
|
* @secure
|
|
7147
7238
|
* @response `200` `(string)[]` Success
|
|
7148
7239
|
*/
|
|
7149
|
-
getLoanDocumentBuckets: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<string[], any>>;
|
|
7240
|
+
getLoanDocumentBuckets: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<string[], any, {}>>;
|
|
7150
7241
|
/**
|
|
7151
7242
|
* No description
|
|
7152
7243
|
*
|
|
@@ -7157,7 +7248,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7157
7248
|
* @secure
|
|
7158
7249
|
* @response `201` `(string)[]` Created
|
|
7159
7250
|
*/
|
|
7160
|
-
createLoanDocumentBuckets: (loanId: string, data: string[], params?: RequestParams) => Promise<AxiosResponse<string[], any>>;
|
|
7251
|
+
createLoanDocumentBuckets: (loanId: string, data: string[], params?: RequestParams) => Promise<AxiosResponse<string[], any, {}>>;
|
|
7161
7252
|
/**
|
|
7162
7253
|
* No description
|
|
7163
7254
|
*
|
|
@@ -7172,7 +7263,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7172
7263
|
getLoanDocument: (loanId: string, documentId: string, query?: {
|
|
7173
7264
|
/** @default false */
|
|
7174
7265
|
preview?: boolean;
|
|
7175
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any>>;
|
|
7266
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any, {}>>;
|
|
7176
7267
|
/**
|
|
7177
7268
|
* No description
|
|
7178
7269
|
*
|
|
@@ -7190,7 +7281,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7190
7281
|
pageNumber?: number;
|
|
7191
7282
|
sortBy?: string;
|
|
7192
7283
|
sortDirection?: string;
|
|
7193
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanDocumentSearchPaginated, any>>;
|
|
7284
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanDocumentSearchPaginated, any, {}>>;
|
|
7194
7285
|
/**
|
|
7195
7286
|
* @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
7287
|
*
|
|
@@ -7204,7 +7295,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7204
7295
|
getLoanDocumentFolders: (loanId: string, data: DocumentFoldersRequest, query?: {
|
|
7205
7296
|
/** @default false */
|
|
7206
7297
|
folderNamesOnly?: boolean;
|
|
7207
|
-
}, params?: RequestParams) => Promise<AxiosResponse<DocumentFolder[], any>>;
|
|
7298
|
+
}, params?: RequestParams) => Promise<AxiosResponse<DocumentFolder[], any, {}>>;
|
|
7208
7299
|
/**
|
|
7209
7300
|
* No description
|
|
7210
7301
|
*
|
|
@@ -7213,10 +7304,10 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7213
7304
|
* @summary Download By ID
|
|
7214
7305
|
* @request GET:/api/loans/{loanId}/documents/{documentId}/download
|
|
7215
7306
|
* @secure
|
|
7216
|
-
* @response `200` `
|
|
7307
|
+
* @response `200` `Blob` Success
|
|
7217
7308
|
* @response `404` `ProblemDetails` Not Found
|
|
7218
7309
|
*/
|
|
7219
|
-
downloadLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<
|
|
7310
|
+
downloadLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<Blob, any, {}>>;
|
|
7220
7311
|
/**
|
|
7221
7312
|
* No description
|
|
7222
7313
|
*
|
|
@@ -7234,7 +7325,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7234
7325
|
/** @format binary */
|
|
7235
7326
|
file?: File;
|
|
7236
7327
|
bucket?: string;
|
|
7237
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any>>;
|
|
7328
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any, {}>>;
|
|
7238
7329
|
/**
|
|
7239
7330
|
* No description
|
|
7240
7331
|
*
|
|
@@ -7247,7 +7338,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7247
7338
|
* @response `404` `ProblemDetails` Not Found
|
|
7248
7339
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7249
7340
|
*/
|
|
7250
|
-
retryFailedLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any>>;
|
|
7341
|
+
retryFailedLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any, {}>>;
|
|
7251
7342
|
/**
|
|
7252
7343
|
* No description
|
|
7253
7344
|
*
|
|
@@ -7258,7 +7349,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7258
7349
|
* @secure
|
|
7259
7350
|
* @response `200` `DocumentDataRequest` Success
|
|
7260
7351
|
*/
|
|
7261
|
-
generateLoanDocument: (loanId: string, data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any>>;
|
|
7352
|
+
generateLoanDocument: (loanId: string, data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any, {}>>;
|
|
7262
7353
|
/**
|
|
7263
7354
|
* No description
|
|
7264
7355
|
*
|
|
@@ -7271,7 +7362,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7271
7362
|
* @response `400` `ProblemDetails` Bad Request
|
|
7272
7363
|
* @response `404` `ProblemDetails` Not Found
|
|
7273
7364
|
*/
|
|
7274
|
-
sendLoanDocuments: (loanId: string, data: SendLoanDocumentsRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7365
|
+
sendLoanDocuments: (loanId: string, data: SendLoanDocumentsRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7275
7366
|
/**
|
|
7276
7367
|
* @description Fetches all documents from Encompass that don't exist locally and stores them in S3
|
|
7277
7368
|
*
|
|
@@ -7283,7 +7374,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7283
7374
|
* @response `200` `DocumentSync` Success
|
|
7284
7375
|
* @response `404` `ProblemDetails` Not Found
|
|
7285
7376
|
*/
|
|
7286
|
-
syncLoanDocumentsFromLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentSync, any>>;
|
|
7377
|
+
syncLoanDocumentsFromLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentSync, any, {}>>;
|
|
7287
7378
|
/**
|
|
7288
7379
|
* @description Re-attempts to push a failed document to LOS
|
|
7289
7380
|
*
|
|
@@ -7296,7 +7387,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7296
7387
|
* @response `404` `ProblemDetails` Not Found
|
|
7297
7388
|
* @response `423` `ProblemDetails` Client Error
|
|
7298
7389
|
*/
|
|
7299
|
-
retrySyncLoanDocumentToLos: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7390
|
+
retrySyncLoanDocumentToLos: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7300
7391
|
/**
|
|
7301
7392
|
* No description
|
|
7302
7393
|
*
|
|
@@ -7307,7 +7398,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7307
7398
|
* @secure
|
|
7308
7399
|
* @response `201` `Draft` Created
|
|
7309
7400
|
*/
|
|
7310
|
-
createLoanDraft: (data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
|
|
7401
|
+
createLoanDraft: (data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
|
|
7311
7402
|
/**
|
|
7312
7403
|
* No description
|
|
7313
7404
|
*
|
|
@@ -7318,7 +7409,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7318
7409
|
* @secure
|
|
7319
7410
|
* @response `200` `(DraftContent)[]` Success
|
|
7320
7411
|
*/
|
|
7321
|
-
getLoanDrafts: (params?: RequestParams) => Promise<AxiosResponse<DraftContent[], any>>;
|
|
7412
|
+
getLoanDrafts: (params?: RequestParams) => Promise<AxiosResponse<DraftContent[], any, {}>>;
|
|
7322
7413
|
/**
|
|
7323
7414
|
* No description
|
|
7324
7415
|
*
|
|
@@ -7329,7 +7420,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7329
7420
|
* @secure
|
|
7330
7421
|
* @response `200` `DraftContent` Success
|
|
7331
7422
|
*/
|
|
7332
|
-
getLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<DraftContent, any>>;
|
|
7423
|
+
getLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<DraftContent, any, {}>>;
|
|
7333
7424
|
/**
|
|
7334
7425
|
* No description
|
|
7335
7426
|
*
|
|
@@ -7340,7 +7431,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7340
7431
|
* @secure
|
|
7341
7432
|
* @response `200` `Draft` Success
|
|
7342
7433
|
*/
|
|
7343
|
-
replaceLoanDraft: (draftId: string, data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
|
|
7434
|
+
replaceLoanDraft: (draftId: string, data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
|
|
7344
7435
|
/**
|
|
7345
7436
|
* No description
|
|
7346
7437
|
*
|
|
@@ -7351,7 +7442,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7351
7442
|
* @secure
|
|
7352
7443
|
* @response `204` `void` No Content
|
|
7353
7444
|
*/
|
|
7354
|
-
deleteLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7445
|
+
deleteLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7355
7446
|
/**
|
|
7356
7447
|
* No description
|
|
7357
7448
|
*
|
|
@@ -7369,7 +7460,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7369
7460
|
pageNumber?: number;
|
|
7370
7461
|
sortBy?: string;
|
|
7371
7462
|
sortDirection?: string;
|
|
7372
|
-
}, params?: RequestParams) => Promise<AxiosResponse<DraftContentPaginated, any>>;
|
|
7463
|
+
}, params?: RequestParams) => Promise<AxiosResponse<DraftContentPaginated, any, {}>>;
|
|
7373
7464
|
/**
|
|
7374
7465
|
* No description
|
|
7375
7466
|
*
|
|
@@ -7380,7 +7471,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7380
7471
|
* @secure
|
|
7381
7472
|
* @response `200` `Draft` Success
|
|
7382
7473
|
*/
|
|
7383
|
-
reassignLoanOfficer: (draftId: string, data: DraftLoanOfficerReassignRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
|
|
7474
|
+
reassignLoanOfficer: (draftId: string, data: DraftLoanOfficerReassignRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
|
|
7384
7475
|
/**
|
|
7385
7476
|
* No description
|
|
7386
7477
|
*
|
|
@@ -7391,7 +7482,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7391
7482
|
* @secure
|
|
7392
7483
|
* @response `200` `Draft` Success
|
|
7393
7484
|
*/
|
|
7394
|
-
restoreLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
|
|
7485
|
+
restoreLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
|
|
7395
7486
|
/**
|
|
7396
7487
|
* No description
|
|
7397
7488
|
*
|
|
@@ -7411,7 +7502,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7411
7502
|
pageNumber?: number;
|
|
7412
7503
|
sortBy?: string;
|
|
7413
7504
|
sortDirection?: string;
|
|
7414
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanImportPaginated, any>>;
|
|
7505
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanImportPaginated, any, {}>>;
|
|
7415
7506
|
/**
|
|
7416
7507
|
* No description
|
|
7417
7508
|
*
|
|
@@ -7422,7 +7513,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7422
7513
|
* @secure
|
|
7423
7514
|
* @response `201` `LoanImport` Created
|
|
7424
7515
|
*/
|
|
7425
|
-
createLoanImport: (data: CreateLoanImportRequest, params?: RequestParams) => Promise<AxiosResponse<LoanImport, any>>;
|
|
7516
|
+
createLoanImport: (data: CreateLoanImportRequest, params?: RequestParams) => Promise<AxiosResponse<LoanImport, any, {}>>;
|
|
7426
7517
|
/**
|
|
7427
7518
|
* No description
|
|
7428
7519
|
*
|
|
@@ -7433,7 +7524,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7433
7524
|
* @secure
|
|
7434
7525
|
* @response `200` `LoanImport` Success
|
|
7435
7526
|
*/
|
|
7436
|
-
getLoanImport: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanImport, any>>;
|
|
7527
|
+
getLoanImport: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanImport, any, {}>>;
|
|
7437
7528
|
/**
|
|
7438
7529
|
* No description
|
|
7439
7530
|
*
|
|
@@ -7451,7 +7542,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7451
7542
|
pageNumber?: number;
|
|
7452
7543
|
sortBy?: string;
|
|
7453
7544
|
sortDirection?: string;
|
|
7454
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanImportLogPaginated, any>>;
|
|
7545
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanImportLogPaginated, any, {}>>;
|
|
7455
7546
|
/**
|
|
7456
7547
|
* No description
|
|
7457
7548
|
*
|
|
@@ -7463,7 +7554,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7463
7554
|
* @response `200` `(Invite)[]` Success
|
|
7464
7555
|
* @response `404` `ProblemDetails` Not Found
|
|
7465
7556
|
*/
|
|
7466
|
-
getLoanInvites: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Invite[], any>>;
|
|
7557
|
+
getLoanInvites: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Invite[], any, {}>>;
|
|
7467
7558
|
/**
|
|
7468
7559
|
* No description
|
|
7469
7560
|
*
|
|
@@ -7475,7 +7566,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7475
7566
|
* @response `200` `(Invite)[]` Success
|
|
7476
7567
|
* @response `404` `ProblemDetails` Not Found
|
|
7477
7568
|
*/
|
|
7478
|
-
inviteLoanContacts: (loanId: string, data: string[], params?: RequestParams) => Promise<AxiosResponse<Invite[], any>>;
|
|
7569
|
+
inviteLoanContacts: (loanId: string, data: string[], params?: RequestParams) => Promise<AxiosResponse<Invite[], any, {}>>;
|
|
7479
7570
|
/**
|
|
7480
7571
|
* No description
|
|
7481
7572
|
*
|
|
@@ -7493,7 +7584,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7493
7584
|
pageNumber?: number;
|
|
7494
7585
|
sortBy?: string;
|
|
7495
7586
|
sortDirection?: string;
|
|
7496
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanLogPaginated, any>>;
|
|
7587
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanLogPaginated, any, {}>>;
|
|
7497
7588
|
/**
|
|
7498
7589
|
* No description
|
|
7499
7590
|
*
|
|
@@ -7505,7 +7596,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7505
7596
|
* @response `200` `LoanLogDetail` Success
|
|
7506
7597
|
* @response `404` `ProblemDetails` Not Found
|
|
7507
7598
|
*/
|
|
7508
|
-
getLoanLogById: (loanId: string, loanLogId: string, params?: RequestParams) => Promise<AxiosResponse<LoanLogDetail, any>>;
|
|
7599
|
+
getLoanLogById: (loanId: string, loanLogId: string, params?: RequestParams) => Promise<AxiosResponse<LoanLogDetail, any, {}>>;
|
|
7509
7600
|
/**
|
|
7510
7601
|
* No description
|
|
7511
7602
|
*
|
|
@@ -7524,7 +7615,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7524
7615
|
pageNumber?: number;
|
|
7525
7616
|
sortBy?: string;
|
|
7526
7617
|
sortDirection?: string;
|
|
7527
|
-
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any>>;
|
|
7618
|
+
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any, {}>>;
|
|
7528
7619
|
/**
|
|
7529
7620
|
* No description
|
|
7530
7621
|
*
|
|
@@ -7542,7 +7633,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7542
7633
|
pageNumber?: number;
|
|
7543
7634
|
sortBy?: string;
|
|
7544
7635
|
sortDirection?: string;
|
|
7545
|
-
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any>>;
|
|
7636
|
+
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any, {}>>;
|
|
7546
7637
|
/**
|
|
7547
7638
|
* No description
|
|
7548
7639
|
*
|
|
@@ -7553,7 +7644,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7553
7644
|
* @secure
|
|
7554
7645
|
* @response `200` `BranchUser` Success
|
|
7555
7646
|
*/
|
|
7556
|
-
getLoanOfficer: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any>>;
|
|
7647
|
+
getLoanOfficer: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any, {}>>;
|
|
7557
7648
|
/**
|
|
7558
7649
|
* No description
|
|
7559
7650
|
*
|
|
@@ -7565,7 +7656,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7565
7656
|
* @response `200` `SiteConfiguration` Success
|
|
7566
7657
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7567
7658
|
*/
|
|
7568
|
-
createLoanOfficerSiteConfiguration: (loanOfficerId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
7659
|
+
createLoanOfficerSiteConfiguration: (loanOfficerId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
7569
7660
|
/**
|
|
7570
7661
|
* No description
|
|
7571
7662
|
*
|
|
@@ -7576,7 +7667,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7576
7667
|
* @secure
|
|
7577
7668
|
* @response `200` `SiteConfigurationWithInherited` Success
|
|
7578
7669
|
*/
|
|
7579
|
-
getLoanOfficerSiteConfiguration: (loanOfficerId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
|
|
7670
|
+
getLoanOfficerSiteConfiguration: (loanOfficerId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any, {}>>;
|
|
7580
7671
|
/**
|
|
7581
7672
|
* No description
|
|
7582
7673
|
*
|
|
@@ -7590,7 +7681,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7590
7681
|
*/
|
|
7591
7682
|
replaceLoanOfficerSiteConfiguration: (loanOfficerId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
|
|
7592
7683
|
applyToChildren?: boolean;
|
|
7593
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
7684
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
7594
7685
|
/**
|
|
7595
7686
|
* No description
|
|
7596
7687
|
*
|
|
@@ -7608,7 +7699,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7608
7699
|
pageNumber?: number;
|
|
7609
7700
|
sortBy?: string;
|
|
7610
7701
|
sortDirection?: string;
|
|
7611
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanQueuePaginated, any>>;
|
|
7702
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanQueuePaginated, any, {}>>;
|
|
7612
7703
|
/**
|
|
7613
7704
|
* No description
|
|
7614
7705
|
*
|
|
@@ -7620,7 +7711,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7620
7711
|
* @response `200` `any` Success
|
|
7621
7712
|
* @response `404` `ProblemDetails` Not Found
|
|
7622
7713
|
*/
|
|
7623
|
-
getLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<any, any>>;
|
|
7714
|
+
getLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
7624
7715
|
/**
|
|
7625
7716
|
* No description
|
|
7626
7717
|
*
|
|
@@ -7632,7 +7723,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7632
7723
|
* @response `200` `LoanQueueWithData` Success
|
|
7633
7724
|
* @response `404` `ProblemDetails` Not Found
|
|
7634
7725
|
*/
|
|
7635
|
-
replaceLoanQueue: (loanQueueId: string, data: UpdateLoanQueueRequest, params?: RequestParams) => Promise<AxiosResponse<LoanQueueWithData, any>>;
|
|
7726
|
+
replaceLoanQueue: (loanQueueId: string, data: UpdateLoanQueueRequest, params?: RequestParams) => Promise<AxiosResponse<LoanQueueWithData, any, {}>>;
|
|
7636
7727
|
/**
|
|
7637
7728
|
* No description
|
|
7638
7729
|
*
|
|
@@ -7644,7 +7735,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7644
7735
|
* @response `204` `void` No Content
|
|
7645
7736
|
* @response `404` `ProblemDetails` Not Found
|
|
7646
7737
|
*/
|
|
7647
|
-
deleteLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7738
|
+
deleteLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7648
7739
|
/**
|
|
7649
7740
|
* No description
|
|
7650
7741
|
*
|
|
@@ -7656,7 +7747,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7656
7747
|
* @response `204` `void` No Content
|
|
7657
7748
|
* @response `404` `ProblemDetails` Not Found
|
|
7658
7749
|
*/
|
|
7659
|
-
retryLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7750
|
+
retryLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7660
7751
|
/**
|
|
7661
7752
|
* No description
|
|
7662
7753
|
*
|
|
@@ -7668,7 +7759,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7668
7759
|
* @response `200` `Loan` Success
|
|
7669
7760
|
* @response `404` `ProblemDetails` Not Found
|
|
7670
7761
|
*/
|
|
7671
|
-
getLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any>>;
|
|
7762
|
+
getLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any, {}>>;
|
|
7672
7763
|
/**
|
|
7673
7764
|
* No description
|
|
7674
7765
|
*
|
|
@@ -7679,7 +7770,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7679
7770
|
* @secure
|
|
7680
7771
|
* @response `200` `GetApplications` Success
|
|
7681
7772
|
*/
|
|
7682
|
-
getLoans: (params?: RequestParams) => Promise<AxiosResponse<GetApplications, any>>;
|
|
7773
|
+
getLoans: (params?: RequestParams) => Promise<AxiosResponse<GetApplications, any, {}>>;
|
|
7683
7774
|
/**
|
|
7684
7775
|
* No description
|
|
7685
7776
|
*
|
|
@@ -7693,7 +7784,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7693
7784
|
* @response `401` `ProblemDetails` Unauthorized
|
|
7694
7785
|
* @response `403` `ProblemDetails` Forbidden
|
|
7695
7786
|
*/
|
|
7696
|
-
createLoanv3: (data: LoanApplicationRequest, params?: RequestParams) => Promise<AxiosResponse<LoanApplication, any>>;
|
|
7787
|
+
createLoanv3: (data: LoanApplicationRequest, params?: RequestParams) => Promise<AxiosResponse<LoanApplication, any, {}>>;
|
|
7697
7788
|
/**
|
|
7698
7789
|
* No description
|
|
7699
7790
|
*
|
|
@@ -7711,7 +7802,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7711
7802
|
pageNumber?: number;
|
|
7712
7803
|
sortBy?: string;
|
|
7713
7804
|
sortDirection?: string;
|
|
7714
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanListPaginated, any>>;
|
|
7805
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanListPaginated, any, {}>>;
|
|
7715
7806
|
/**
|
|
7716
7807
|
* No description
|
|
7717
7808
|
*
|
|
@@ -7727,7 +7818,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7727
7818
|
* @response `404` `ProblemDetails` Not Found
|
|
7728
7819
|
* @response `409` `any` Conflict
|
|
7729
7820
|
*/
|
|
7730
|
-
updateLoan: (loanId: string, data: any, params?: RequestParams) => Promise<AxiosResponse<Loan, any>>;
|
|
7821
|
+
updateLoan: (loanId: string, data: any, params?: RequestParams) => Promise<AxiosResponse<Loan, any, {}>>;
|
|
7731
7822
|
/**
|
|
7732
7823
|
* No description
|
|
7733
7824
|
*
|
|
@@ -7740,7 +7831,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7740
7831
|
* @response `400` `ProblemDetails` Bad Request
|
|
7741
7832
|
* @response `404` `ProblemDetails` Not Found
|
|
7742
7833
|
*/
|
|
7743
|
-
completeBorrowerApplication: (loanId: string, borrowerId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7834
|
+
completeBorrowerApplication: (loanId: string, borrowerId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7744
7835
|
/**
|
|
7745
7836
|
* No description
|
|
7746
7837
|
*
|
|
@@ -7751,7 +7842,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7751
7842
|
* @secure
|
|
7752
7843
|
* @response `200` `Loan` Success
|
|
7753
7844
|
*/
|
|
7754
|
-
importLoanFromLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any>>;
|
|
7845
|
+
importLoanFromLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any, {}>>;
|
|
7755
7846
|
/**
|
|
7756
7847
|
* No description
|
|
7757
7848
|
*
|
|
@@ -7763,7 +7854,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7763
7854
|
* @response `202` `void` Accepted
|
|
7764
7855
|
* @response `404` `ProblemDetails` Not Found
|
|
7765
7856
|
*/
|
|
7766
|
-
syncLoanToLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7857
|
+
syncLoanToLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7767
7858
|
/**
|
|
7768
7859
|
* No description
|
|
7769
7860
|
*
|
|
@@ -7782,7 +7873,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7782
7873
|
pageNumber?: number;
|
|
7783
7874
|
sortBy?: string;
|
|
7784
7875
|
sortDirection?: string;
|
|
7785
|
-
}, params?: RequestParams) => Promise<AxiosResponse<TaskCommentPaginated, any>>;
|
|
7876
|
+
}, params?: RequestParams) => Promise<AxiosResponse<TaskCommentPaginated, any, {}>>;
|
|
7786
7877
|
/**
|
|
7787
7878
|
* No description
|
|
7788
7879
|
*
|
|
@@ -7794,7 +7885,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7794
7885
|
* @response `200` `TaskComment` Success
|
|
7795
7886
|
* @response `404` `ProblemDetails` Not Found
|
|
7796
7887
|
*/
|
|
7797
|
-
getLoanTaskComment: (id: string, loanId: string, userLoanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any>>;
|
|
7888
|
+
getLoanTaskComment: (id: string, loanId: string, userLoanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any, {}>>;
|
|
7798
7889
|
/**
|
|
7799
7890
|
* No description
|
|
7800
7891
|
*
|
|
@@ -7806,7 +7897,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7806
7897
|
* @response `201` `TaskComment` Created
|
|
7807
7898
|
* @response `404` `ProblemDetails` Not Found
|
|
7808
7899
|
*/
|
|
7809
|
-
createLoanTaskComment: (loanId: string, userLoanTaskId: string, data: TaskCommentRequest, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any>>;
|
|
7900
|
+
createLoanTaskComment: (loanId: string, userLoanTaskId: string, data: TaskCommentRequest, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any, {}>>;
|
|
7810
7901
|
/**
|
|
7811
7902
|
* No description
|
|
7812
7903
|
*
|
|
@@ -7818,7 +7909,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7818
7909
|
* @response `200` `TaskComment` Success
|
|
7819
7910
|
* @response `404` `ProblemDetails` Not Found
|
|
7820
7911
|
*/
|
|
7821
|
-
replaceLoanTaskComment: (loanId: string, userLoanTaskId: string, commentId: string, data: TaskCommentRequest, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any>>;
|
|
7912
|
+
replaceLoanTaskComment: (loanId: string, userLoanTaskId: string, commentId: string, data: TaskCommentRequest, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any, {}>>;
|
|
7822
7913
|
/**
|
|
7823
7914
|
* No description
|
|
7824
7915
|
*
|
|
@@ -7830,7 +7921,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7830
7921
|
* @response `204` `void` No Content
|
|
7831
7922
|
* @response `404` `ProblemDetails` Not Found
|
|
7832
7923
|
*/
|
|
7833
|
-
deleteLoanTaskComment: (loanId: string, userLoanTaskId: string, commentId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7924
|
+
deleteLoanTaskComment: (loanId: string, userLoanTaskId: string, commentId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7834
7925
|
/**
|
|
7835
7926
|
* No description
|
|
7836
7927
|
*
|
|
@@ -7848,7 +7939,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7848
7939
|
/** @format binary */
|
|
7849
7940
|
file?: File;
|
|
7850
7941
|
bucket?: string;
|
|
7851
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
|
|
7942
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
|
|
7852
7943
|
/**
|
|
7853
7944
|
* No description
|
|
7854
7945
|
*
|
|
@@ -7860,7 +7951,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7860
7951
|
* @response `204` `UserLoanTask` No Content
|
|
7861
7952
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7862
7953
|
*/
|
|
7863
|
-
createLoanTaskDocumentBucket: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
|
|
7954
|
+
createLoanTaskDocumentBucket: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
|
|
7864
7955
|
/**
|
|
7865
7956
|
* No description
|
|
7866
7957
|
*
|
|
@@ -7872,7 +7963,20 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7872
7963
|
* @response `204` `void` No Content
|
|
7873
7964
|
* @response `404` `ProblemDetails` Not Found
|
|
7874
7965
|
*/
|
|
7875
|
-
sendOutstandingLoanTaskNotification: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7966
|
+
sendOutstandingLoanTaskNotification: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7967
|
+
/**
|
|
7968
|
+
* No description
|
|
7969
|
+
*
|
|
7970
|
+
* @tags LoanTaskNotifications
|
|
7971
|
+
* @name SendLoanTaskReminder
|
|
7972
|
+
* @summary Send Loan Task Reminder
|
|
7973
|
+
* @request POST:/api/loans/{loanID}/tasks/reminders
|
|
7974
|
+
* @secure
|
|
7975
|
+
* @response `204` `void` No Content
|
|
7976
|
+
* @response `400` `ProblemDetails` Bad Request
|
|
7977
|
+
* @response `404` `ProblemDetails` Not Found
|
|
7978
|
+
*/
|
|
7979
|
+
sendLoanTaskReminder: (loanId: string, data: SendLoanTaskReminderRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7876
7980
|
/**
|
|
7877
7981
|
* @description Search tasks across all loans
|
|
7878
7982
|
*
|
|
@@ -7890,7 +7994,19 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7890
7994
|
pageNumber?: number;
|
|
7891
7995
|
sortBy?: string;
|
|
7892
7996
|
sortDirection?: string;
|
|
7893
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UserLoanTaskPaginated, any>>;
|
|
7997
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UserLoanTaskPaginated, any, {}>>;
|
|
7998
|
+
/**
|
|
7999
|
+
* @description Returns task counts grouped by status for loans accessible to the current user based on their role
|
|
8000
|
+
*
|
|
8001
|
+
* @tags LoanTasks
|
|
8002
|
+
* @name SearchLoanTasksSummary
|
|
8003
|
+
* @summary Search Summary
|
|
8004
|
+
* @request POST:/api/loans/tasks/search/summary
|
|
8005
|
+
* @secure
|
|
8006
|
+
* @response `200` `(LoanTaskStatusSummary)[]` Success
|
|
8007
|
+
* @response `422` `UnprocessableEntity` Client Error
|
|
8008
|
+
*/
|
|
8009
|
+
searchLoanTasksSummary: (data: LoanTaskSearchRequest, params?: RequestParams) => Promise<AxiosResponse<LoanTaskStatusSummary[], any, {}>>;
|
|
7894
8010
|
/**
|
|
7895
8011
|
* No description
|
|
7896
8012
|
*
|
|
@@ -7902,7 +8018,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7902
8018
|
* @response `200` `(UserLoanTask)[]` Success
|
|
7903
8019
|
* @response `404` `ProblemDetails` Not Found
|
|
7904
8020
|
*/
|
|
7905
|
-
getLoanTasks: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any>>;
|
|
8021
|
+
getLoanTasks: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any, {}>>;
|
|
7906
8022
|
/**
|
|
7907
8023
|
* No description
|
|
7908
8024
|
*
|
|
@@ -7914,7 +8030,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7914
8030
|
* @response `200` `UserLoanTask` Success
|
|
7915
8031
|
* @response `404` `ProblemDetails` Not Found
|
|
7916
8032
|
*/
|
|
7917
|
-
getLoanTask: (id: string, loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
|
|
8033
|
+
getLoanTask: (id: string, loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
|
|
7918
8034
|
/**
|
|
7919
8035
|
* @description Get the difference between the current loan tasks and the tasks generated by business rules
|
|
7920
8036
|
*
|
|
@@ -7926,7 +8042,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7926
8042
|
* @response `200` `(UserLoanTask)[]` Success
|
|
7927
8043
|
* @response `404` `ProblemDetails` Not Found
|
|
7928
8044
|
*/
|
|
7929
|
-
getLoanTaskDifference: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any>>;
|
|
8045
|
+
getLoanTaskDifference: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any, {}>>;
|
|
7930
8046
|
/**
|
|
7931
8047
|
* No description
|
|
7932
8048
|
*
|
|
@@ -7938,7 +8054,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7938
8054
|
* @response `201` `UserLoanTask` Created
|
|
7939
8055
|
* @response `404` `ProblemDetails` Not Found
|
|
7940
8056
|
*/
|
|
7941
|
-
createLoanTask: (loanId: string, taskId: string, data: UserLoanTaskRequest, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
|
|
8057
|
+
createLoanTask: (loanId: string, taskId: string, data: UserLoanTaskRequest, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
|
|
7942
8058
|
/**
|
|
7943
8059
|
* No description
|
|
7944
8060
|
*
|
|
@@ -7950,7 +8066,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7950
8066
|
* @response `201` `(UserLoanTask)[]` Created
|
|
7951
8067
|
* @response `404` `ProblemDetails` Not Found
|
|
7952
8068
|
*/
|
|
7953
|
-
importLoanTask: (loanId: string, data: ImportUserLoanTaskRequest[], params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any>>;
|
|
8069
|
+
importLoanTask: (loanId: string, data: ImportUserLoanTaskRequest[], params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any, {}>>;
|
|
7954
8070
|
/**
|
|
7955
8071
|
* No description
|
|
7956
8072
|
*
|
|
@@ -7962,7 +8078,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7962
8078
|
* @response `200` `UserLoanTask` Success
|
|
7963
8079
|
* @response `404` `ProblemDetails` Not Found
|
|
7964
8080
|
*/
|
|
7965
|
-
replaceLoanTask: (loanId: string, userLoanTaskId: string, data: UserLoanTaskUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
|
|
8081
|
+
replaceLoanTask: (loanId: string, userLoanTaskId: string, data: UserLoanTaskUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
|
|
7966
8082
|
/**
|
|
7967
8083
|
* No description
|
|
7968
8084
|
*
|
|
@@ -7974,7 +8090,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7974
8090
|
* @response `204` `void` No Content
|
|
7975
8091
|
* @response `404` `ProblemDetails` Not Found
|
|
7976
8092
|
*/
|
|
7977
|
-
deleteLoanTask: (loanId: string, userLoanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8093
|
+
deleteLoanTask: (loanId: string, userLoanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7978
8094
|
/**
|
|
7979
8095
|
* No description
|
|
7980
8096
|
*
|
|
@@ -7987,7 +8103,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7987
8103
|
* @response `404` `ProblemDetails` Not Found
|
|
7988
8104
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7989
8105
|
*/
|
|
7990
|
-
createLoanTaskVerification: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
|
|
8106
|
+
createLoanTaskVerification: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
|
|
7991
8107
|
/**
|
|
7992
8108
|
* No description
|
|
7993
8109
|
*
|
|
@@ -7997,8 +8113,9 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7997
8113
|
* @request GET:/api/loans/{loanId}/users/{userId}/consents
|
|
7998
8114
|
* @secure
|
|
7999
8115
|
* @response `200` `(UserLoanConsent)[]` Success
|
|
8116
|
+
* @response `403` `ProblemDetails` Forbidden
|
|
8000
8117
|
*/
|
|
8001
|
-
getLoanUserConsents: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanConsent[], any>>;
|
|
8118
|
+
getLoanUserConsents: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanConsent[], any, {}>>;
|
|
8002
8119
|
/**
|
|
8003
8120
|
* No description
|
|
8004
8121
|
*
|
|
@@ -8009,7 +8126,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8009
8126
|
* @secure
|
|
8010
8127
|
* @response `200` `LoanUser` Success
|
|
8011
8128
|
*/
|
|
8012
|
-
getLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any>>;
|
|
8129
|
+
getLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any, {}>>;
|
|
8013
8130
|
/**
|
|
8014
8131
|
* No description
|
|
8015
8132
|
*
|
|
@@ -8020,7 +8137,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8020
8137
|
* @secure
|
|
8021
8138
|
* @response `201` `LoanUser` Created
|
|
8022
8139
|
*/
|
|
8023
|
-
addLoanUser: (loanId: string, userId: string, data: CreateUserLoan, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any>>;
|
|
8140
|
+
addLoanUser: (loanId: string, userId: string, data: CreateUserLoan, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any, {}>>;
|
|
8024
8141
|
/**
|
|
8025
8142
|
* No description
|
|
8026
8143
|
*
|
|
@@ -8031,7 +8148,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8031
8148
|
* @secure
|
|
8032
8149
|
* @response `204` `LoanUser` No Content
|
|
8033
8150
|
*/
|
|
8034
|
-
removeLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any>>;
|
|
8151
|
+
removeLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any, {}>>;
|
|
8035
8152
|
/**
|
|
8036
8153
|
* No description
|
|
8037
8154
|
*
|
|
@@ -8042,7 +8159,25 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8042
8159
|
* @secure
|
|
8043
8160
|
* @response `204` `void` No Content
|
|
8044
8161
|
*/
|
|
8045
|
-
sendLoanUserInviteReminderNotification: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8162
|
+
sendLoanUserInviteReminderNotification: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8163
|
+
/**
|
|
8164
|
+
* No description
|
|
8165
|
+
*
|
|
8166
|
+
* @tags LosOperationTracking
|
|
8167
|
+
* @name SearchLosOperationTracking
|
|
8168
|
+
* @summary Search LOS operation tracking
|
|
8169
|
+
* @request POST:/api/los-operation-tracking/search
|
|
8170
|
+
* @secure
|
|
8171
|
+
* @response `200` `LosOperationTrackingPaginated` Success
|
|
8172
|
+
*/
|
|
8173
|
+
searchLosOperationTracking: (data: LosOperationTrackingSearchCriteria, query?: {
|
|
8174
|
+
/** @format int32 */
|
|
8175
|
+
pageSize?: number;
|
|
8176
|
+
/** @format int32 */
|
|
8177
|
+
pageNumber?: number;
|
|
8178
|
+
sortBy?: string;
|
|
8179
|
+
sortDirection?: string;
|
|
8180
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LosOperationTrackingPaginated, any, {}>>;
|
|
8046
8181
|
/**
|
|
8047
8182
|
* No description
|
|
8048
8183
|
*
|
|
@@ -8053,7 +8188,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8053
8188
|
* @secure
|
|
8054
8189
|
* @response `200` `(MilestoneConfiguration)[]` Success
|
|
8055
8190
|
*/
|
|
8056
|
-
getMilestones: (params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration[], any>>;
|
|
8191
|
+
getMilestones: (params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration[], any, {}>>;
|
|
8057
8192
|
/**
|
|
8058
8193
|
* No description
|
|
8059
8194
|
*
|
|
@@ -8065,7 +8200,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8065
8200
|
* @response `201` `MilestoneConfiguration` Created
|
|
8066
8201
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8067
8202
|
*/
|
|
8068
|
-
createMilestone: (data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any>>;
|
|
8203
|
+
createMilestone: (data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any, {}>>;
|
|
8069
8204
|
/**
|
|
8070
8205
|
* No description
|
|
8071
8206
|
*
|
|
@@ -8077,7 +8212,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8077
8212
|
* @response `200` `MilestoneConfiguration` Success
|
|
8078
8213
|
* @response `404` `Error` Not Found
|
|
8079
8214
|
*/
|
|
8080
|
-
getMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any>>;
|
|
8215
|
+
getMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any, {}>>;
|
|
8081
8216
|
/**
|
|
8082
8217
|
* No description
|
|
8083
8218
|
*
|
|
@@ -8090,7 +8225,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8090
8225
|
* @response `404` `Error` Not Found
|
|
8091
8226
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8092
8227
|
*/
|
|
8093
|
-
replaceMilestone: (id: string, data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any>>;
|
|
8228
|
+
replaceMilestone: (id: string, data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any, {}>>;
|
|
8094
8229
|
/**
|
|
8095
8230
|
* No description
|
|
8096
8231
|
*
|
|
@@ -8102,7 +8237,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8102
8237
|
* @response `204` `void` No Content
|
|
8103
8238
|
* @response `404` `Error` Not Found
|
|
8104
8239
|
*/
|
|
8105
|
-
deleteMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8240
|
+
deleteMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8106
8241
|
/**
|
|
8107
8242
|
* No description
|
|
8108
8243
|
*
|
|
@@ -8114,7 +8249,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8114
8249
|
* @response `200` `MonthlyPaymentCalculator` Success
|
|
8115
8250
|
* @response `422` `ProblemDetails` Client Error
|
|
8116
8251
|
*/
|
|
8117
|
-
calculateMortgageMonthlyPayment: (data: MonthlyPaymentCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<MonthlyPaymentCalculator, any>>;
|
|
8252
|
+
calculateMortgageMonthlyPayment: (data: MonthlyPaymentCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<MonthlyPaymentCalculator, any, {}>>;
|
|
8118
8253
|
/**
|
|
8119
8254
|
* No description
|
|
8120
8255
|
*
|
|
@@ -8126,7 +8261,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8126
8261
|
* @response `200` `AffordabilityCalculator` Success
|
|
8127
8262
|
* @response `422` `ProblemDetails` Client Error
|
|
8128
8263
|
*/
|
|
8129
|
-
calculateMortgageAffordability: (data: AffordabilityCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<AffordabilityCalculator, any>>;
|
|
8264
|
+
calculateMortgageAffordability: (data: AffordabilityCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<AffordabilityCalculator, any, {}>>;
|
|
8130
8265
|
/**
|
|
8131
8266
|
* No description
|
|
8132
8267
|
*
|
|
@@ -8138,7 +8273,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8138
8273
|
* @response `200` `LoanComparisonCalculator` Success
|
|
8139
8274
|
* @response `422` `ProblemDetails` Client Error
|
|
8140
8275
|
*/
|
|
8141
|
-
calculateMortgageLoanComparison: (data: LoanComparisonCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<LoanComparisonCalculator, any>>;
|
|
8276
|
+
calculateMortgageLoanComparison: (data: LoanComparisonCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<LoanComparisonCalculator, any, {}>>;
|
|
8142
8277
|
/**
|
|
8143
8278
|
* No description
|
|
8144
8279
|
*
|
|
@@ -8150,7 +8285,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8150
8285
|
* @response `200` `RefinanceCalculator` Success
|
|
8151
8286
|
* @response `422` `ProblemDetails` Client Error
|
|
8152
8287
|
*/
|
|
8153
|
-
calculateMortgageRefinance: (data: RefinanceCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<RefinanceCalculator, any>>;
|
|
8288
|
+
calculateMortgageRefinance: (data: RefinanceCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<RefinanceCalculator, any, {}>>;
|
|
8154
8289
|
/**
|
|
8155
8290
|
* No description
|
|
8156
8291
|
*
|
|
@@ -8162,7 +8297,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8162
8297
|
* @response `200` `void` Success
|
|
8163
8298
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8164
8299
|
*/
|
|
8165
|
-
sendNotificationForLoan: (data: SendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8300
|
+
sendNotificationForLoan: (data: SendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8166
8301
|
/**
|
|
8167
8302
|
* No description
|
|
8168
8303
|
*
|
|
@@ -8174,7 +8309,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8174
8309
|
* @response `200` `void` Success
|
|
8175
8310
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8176
8311
|
*/
|
|
8177
|
-
sendTestNotificationForLoan: (data: TestSendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8312
|
+
sendTestNotificationForLoan: (data: TestSendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8178
8313
|
/**
|
|
8179
8314
|
* No description
|
|
8180
8315
|
*
|
|
@@ -8187,7 +8322,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8187
8322
|
*/
|
|
8188
8323
|
getNotificationTemplates: (query?: {
|
|
8189
8324
|
showAll?: boolean;
|
|
8190
|
-
}, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateBase[], any>>;
|
|
8325
|
+
}, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateBase[], any, {}>>;
|
|
8191
8326
|
/**
|
|
8192
8327
|
* No description
|
|
8193
8328
|
*
|
|
@@ -8199,7 +8334,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8199
8334
|
* @response `201` `NotificationTemplate` Created
|
|
8200
8335
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8201
8336
|
*/
|
|
8202
|
-
createNotificationTemplate: (data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
|
|
8337
|
+
createNotificationTemplate: (data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any, {}>>;
|
|
8203
8338
|
/**
|
|
8204
8339
|
* No description
|
|
8205
8340
|
*
|
|
@@ -8217,7 +8352,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8217
8352
|
pageNumber?: number;
|
|
8218
8353
|
sortBy?: string;
|
|
8219
8354
|
sortDirection?: string;
|
|
8220
|
-
}, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateBasePaginated, any>>;
|
|
8355
|
+
}, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateBasePaginated, any, {}>>;
|
|
8221
8356
|
/**
|
|
8222
8357
|
* No description
|
|
8223
8358
|
*
|
|
@@ -8228,7 +8363,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8228
8363
|
* @secure
|
|
8229
8364
|
* @response `200` `NotificationTemplate` Success
|
|
8230
8365
|
*/
|
|
8231
|
-
getNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
|
|
8366
|
+
getNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any, {}>>;
|
|
8232
8367
|
/**
|
|
8233
8368
|
* No description
|
|
8234
8369
|
*
|
|
@@ -8240,7 +8375,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8240
8375
|
* @response `200` `NotificationTemplate` Success
|
|
8241
8376
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8242
8377
|
*/
|
|
8243
|
-
replaceNotificationTemplate: (id: string, data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
|
|
8378
|
+
replaceNotificationTemplate: (id: string, data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any, {}>>;
|
|
8244
8379
|
/**
|
|
8245
8380
|
* No description
|
|
8246
8381
|
*
|
|
@@ -8251,7 +8386,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8251
8386
|
* @secure
|
|
8252
8387
|
* @response `204` `void` No Content
|
|
8253
8388
|
*/
|
|
8254
|
-
deleteNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8389
|
+
deleteNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8255
8390
|
/**
|
|
8256
8391
|
* No description
|
|
8257
8392
|
*
|
|
@@ -8262,7 +8397,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8262
8397
|
* @secure
|
|
8263
8398
|
* @response `200` `NotificationTemplate` Success
|
|
8264
8399
|
*/
|
|
8265
|
-
restoreNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
|
|
8400
|
+
restoreNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any, {}>>;
|
|
8266
8401
|
/**
|
|
8267
8402
|
* No description
|
|
8268
8403
|
*
|
|
@@ -8273,7 +8408,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8273
8408
|
* @secure
|
|
8274
8409
|
* @response `200` `(NotificationTemplateVersion)[]` Success
|
|
8275
8410
|
*/
|
|
8276
|
-
getNotificationTemplateVersions: (notificationId: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion[], any>>;
|
|
8411
|
+
getNotificationTemplateVersions: (notificationId: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion[], any, {}>>;
|
|
8277
8412
|
/**
|
|
8278
8413
|
* No description
|
|
8279
8414
|
*
|
|
@@ -8284,7 +8419,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8284
8419
|
* @secure
|
|
8285
8420
|
* @response `200` `NotificationTemplateVersion` Success
|
|
8286
8421
|
*/
|
|
8287
|
-
createNotificationTemplateVersion: (notificationId: string, data: NotificationTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
|
|
8422
|
+
createNotificationTemplateVersion: (notificationId: string, data: NotificationTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any, {}>>;
|
|
8288
8423
|
/**
|
|
8289
8424
|
* No description
|
|
8290
8425
|
*
|
|
@@ -8295,7 +8430,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8295
8430
|
* @secure
|
|
8296
8431
|
* @response `200` `NotificationTemplateVersion` Success
|
|
8297
8432
|
*/
|
|
8298
|
-
getNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
|
|
8433
|
+
getNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any, {}>>;
|
|
8299
8434
|
/**
|
|
8300
8435
|
* No description
|
|
8301
8436
|
*
|
|
@@ -8306,7 +8441,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8306
8441
|
* @secure
|
|
8307
8442
|
* @response `200` `NotificationTemplateVersion` Success
|
|
8308
8443
|
*/
|
|
8309
|
-
replaceNotificationTemplateVersion: (notificationId: string, id: string, data: NotificationTemplateVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
|
|
8444
|
+
replaceNotificationTemplateVersion: (notificationId: string, id: string, data: NotificationTemplateVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any, {}>>;
|
|
8310
8445
|
/**
|
|
8311
8446
|
* No description
|
|
8312
8447
|
*
|
|
@@ -8317,7 +8452,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8317
8452
|
* @secure
|
|
8318
8453
|
* @response `200` `NotificationTemplateVersion` Success
|
|
8319
8454
|
*/
|
|
8320
|
-
deleteNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
|
|
8455
|
+
deleteNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any, {}>>;
|
|
8321
8456
|
/**
|
|
8322
8457
|
* No description
|
|
8323
8458
|
*
|
|
@@ -8331,14 +8466,14 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8331
8466
|
getPartners: (query?: {
|
|
8332
8467
|
showAll?: boolean;
|
|
8333
8468
|
/** @default "Realtor" */
|
|
8334
|
-
role?:
|
|
8469
|
+
role?: GetPartnersParamsRoleEnum;
|
|
8335
8470
|
/** @format int32 */
|
|
8336
8471
|
pageSize?: number;
|
|
8337
8472
|
/** @format int32 */
|
|
8338
8473
|
pageNumber?: number;
|
|
8339
8474
|
sortBy?: string;
|
|
8340
8475
|
sortDirection?: string;
|
|
8341
|
-
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any>>;
|
|
8476
|
+
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any, {}>>;
|
|
8342
8477
|
/**
|
|
8343
8478
|
* No description
|
|
8344
8479
|
*
|
|
@@ -8356,7 +8491,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8356
8491
|
pageNumber?: number;
|
|
8357
8492
|
sortBy?: string;
|
|
8358
8493
|
sortDirection?: string;
|
|
8359
|
-
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any>>;
|
|
8494
|
+
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any, {}>>;
|
|
8360
8495
|
/**
|
|
8361
8496
|
* No description
|
|
8362
8497
|
*
|
|
@@ -8367,7 +8502,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8367
8502
|
* @secure
|
|
8368
8503
|
* @response `200` `BranchUser` Success
|
|
8369
8504
|
*/
|
|
8370
|
-
getPartner: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any>>;
|
|
8505
|
+
getPartner: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any, {}>>;
|
|
8371
8506
|
/**
|
|
8372
8507
|
* No description
|
|
8373
8508
|
*
|
|
@@ -8379,7 +8514,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8379
8514
|
* @response `200` `SiteConfiguration` Success
|
|
8380
8515
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8381
8516
|
*/
|
|
8382
|
-
createPartnerSiteConfiguration: (realtorId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
8517
|
+
createPartnerSiteConfiguration: (realtorId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
8383
8518
|
/**
|
|
8384
8519
|
* No description
|
|
8385
8520
|
*
|
|
@@ -8390,7 +8525,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8390
8525
|
* @secure
|
|
8391
8526
|
* @response `200` `SiteConfigurationWithInherited` Success
|
|
8392
8527
|
*/
|
|
8393
|
-
getPartnerSiteConfiguration: (realtorId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
|
|
8528
|
+
getPartnerSiteConfiguration: (realtorId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any, {}>>;
|
|
8394
8529
|
/**
|
|
8395
8530
|
* No description
|
|
8396
8531
|
*
|
|
@@ -8404,7 +8539,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8404
8539
|
*/
|
|
8405
8540
|
replacePartnerSiteConfiguration: (realtorId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
|
|
8406
8541
|
applyToChildren?: boolean;
|
|
8407
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
8542
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
8408
8543
|
/**
|
|
8409
8544
|
* No description
|
|
8410
8545
|
*
|
|
@@ -8415,7 +8550,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8415
8550
|
* @secure
|
|
8416
8551
|
* @response `200` `SiteConfiguration` Success
|
|
8417
8552
|
*/
|
|
8418
|
-
getSiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
8553
|
+
getSiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
8419
8554
|
/**
|
|
8420
8555
|
* No description
|
|
8421
8556
|
*
|
|
@@ -8428,7 +8563,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8428
8563
|
* @response `200` `SiteConfigurationByUrl` Success
|
|
8429
8564
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8430
8565
|
*/
|
|
8431
|
-
searchSiteConfigurationByUrl: (data: GetSiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationByUrl, any>>;
|
|
8566
|
+
searchSiteConfigurationByUrl: (data: GetSiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationByUrl, any, {}>>;
|
|
8432
8567
|
/**
|
|
8433
8568
|
* No description
|
|
8434
8569
|
*
|
|
@@ -8442,7 +8577,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8442
8577
|
*/
|
|
8443
8578
|
getSiteConfigurationByUrl: (query?: {
|
|
8444
8579
|
url?: string;
|
|
8445
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationByUrl, any>>;
|
|
8580
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationByUrl, any, {}>>;
|
|
8446
8581
|
/**
|
|
8447
8582
|
* No description
|
|
8448
8583
|
*
|
|
@@ -8455,7 +8590,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8455
8590
|
* @response `200` `SiteConfiguration` Success
|
|
8456
8591
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8457
8592
|
*/
|
|
8458
|
-
searchSiteConfigurationByLoanOfficerUser: (data: GetSiteConfigurationByLOUserIDRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
8593
|
+
searchSiteConfigurationByLoanOfficerUser: (data: GetSiteConfigurationByLOUserIDRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
8459
8594
|
/**
|
|
8460
8595
|
* No description
|
|
8461
8596
|
*
|
|
@@ -8467,7 +8602,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8467
8602
|
* @response `200` `SiteConfiguration` Success
|
|
8468
8603
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8469
8604
|
*/
|
|
8470
|
-
getSiteConfigurationByLoanOfficerUser: (loUserId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
8605
|
+
getSiteConfigurationByLoanOfficerUser: (loUserId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
8471
8606
|
/**
|
|
8472
8607
|
* No description
|
|
8473
8608
|
*
|
|
@@ -8486,7 +8621,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8486
8621
|
pageNumber?: number;
|
|
8487
8622
|
sortBy?: string;
|
|
8488
8623
|
sortDirection?: string;
|
|
8489
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationSummaryPaginated, any>>;
|
|
8624
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationSummaryPaginated, any, {}>>;
|
|
8490
8625
|
/**
|
|
8491
8626
|
* No description
|
|
8492
8627
|
*
|
|
@@ -8497,7 +8632,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8497
8632
|
* @secure
|
|
8498
8633
|
* @response `200` `(AdminAccessGetForms)[]` Success
|
|
8499
8634
|
*/
|
|
8500
|
-
getFormsBySiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms[], any>>;
|
|
8635
|
+
getFormsBySiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms[], any, {}>>;
|
|
8501
8636
|
/**
|
|
8502
8637
|
* No description
|
|
8503
8638
|
*
|
|
@@ -8509,7 +8644,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8509
8644
|
* @response `200` `File` Success
|
|
8510
8645
|
* @response `404` `ProblemDetails` Not Found
|
|
8511
8646
|
*/
|
|
8512
|
-
getSamlMetadata: (sSoIntegration:
|
|
8647
|
+
getSamlMetadata: (sSoIntegration: GetSamlMetadataParamsEnum, ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
|
|
8513
8648
|
/**
|
|
8514
8649
|
* No description
|
|
8515
8650
|
*
|
|
@@ -8520,7 +8655,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8520
8655
|
* @secure
|
|
8521
8656
|
* @response `200` `File` Success
|
|
8522
8657
|
*/
|
|
8523
|
-
createOrReplaceSamlMetadata: (sSoIntegration:
|
|
8658
|
+
createOrReplaceSamlMetadata: (sSoIntegration: CreateOrReplaceSamlMetadataParamsEnum, ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
|
|
8524
8659
|
/**
|
|
8525
8660
|
* No description
|
|
8526
8661
|
*
|
|
@@ -8531,7 +8666,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8531
8666
|
* @secure
|
|
8532
8667
|
* @response `200` `(SiteConfigurationForm)[]` Success
|
|
8533
8668
|
*/
|
|
8534
|
-
getWorkflowSiteConfigurations: (workflowId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm[], any>>;
|
|
8669
|
+
getWorkflowSiteConfigurations: (workflowId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm[], any, {}>>;
|
|
8535
8670
|
/**
|
|
8536
8671
|
* No description
|
|
8537
8672
|
*
|
|
@@ -8543,7 +8678,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8543
8678
|
* @response `200` `SiteConfigurationForm` Success
|
|
8544
8679
|
* @response `404` `ProblemDetails` Not Found
|
|
8545
8680
|
*/
|
|
8546
|
-
getWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any>>;
|
|
8681
|
+
getWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any, {}>>;
|
|
8547
8682
|
/**
|
|
8548
8683
|
* No description
|
|
8549
8684
|
*
|
|
@@ -8556,7 +8691,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8556
8691
|
* @response `409` `ProblemDetails` Conflict
|
|
8557
8692
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8558
8693
|
*/
|
|
8559
|
-
createWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any>>;
|
|
8694
|
+
createWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any, {}>>;
|
|
8560
8695
|
/**
|
|
8561
8696
|
* No description
|
|
8562
8697
|
*
|
|
@@ -8567,7 +8702,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8567
8702
|
* @secure
|
|
8568
8703
|
* @response `204` `void` No Content
|
|
8569
8704
|
*/
|
|
8570
|
-
deleteWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8705
|
+
deleteWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8571
8706
|
/**
|
|
8572
8707
|
* No description
|
|
8573
8708
|
*
|
|
@@ -8578,7 +8713,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8578
8713
|
* @secure
|
|
8579
8714
|
* @response `200` `GetForm` Success
|
|
8580
8715
|
*/
|
|
8581
|
-
getFormBySiteConfigurationSlug: (data: GetSiteFormRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any>>;
|
|
8716
|
+
getFormBySiteConfigurationSlug: (data: GetSiteFormRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any, {}>>;
|
|
8582
8717
|
/**
|
|
8583
8718
|
* No description
|
|
8584
8719
|
*
|
|
@@ -8592,7 +8727,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8592
8727
|
getSurveysByUsers: (query?: {
|
|
8593
8728
|
/** @format int32 */
|
|
8594
8729
|
limit?: number;
|
|
8595
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SocialSurveyRecord[], any>>;
|
|
8730
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SocialSurveyRecord[], any, {}>>;
|
|
8596
8731
|
/**
|
|
8597
8732
|
* No description
|
|
8598
8733
|
*
|
|
@@ -8604,7 +8739,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8604
8739
|
* @response `200` `(SocialSurveyRecord)[]` Success
|
|
8605
8740
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8606
8741
|
*/
|
|
8607
|
-
getSurveysByUser: (data: SurveyEmailRequest, params?: RequestParams) => Promise<AxiosResponse<SocialSurveyRecord[], any>>;
|
|
8742
|
+
getSurveysByUser: (data: SurveyEmailRequest, params?: RequestParams) => Promise<AxiosResponse<SocialSurveyRecord[], any, {}>>;
|
|
8608
8743
|
/**
|
|
8609
8744
|
* No description
|
|
8610
8745
|
*
|
|
@@ -8623,7 +8758,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8623
8758
|
pageNumber?: number;
|
|
8624
8759
|
sortBy?: string;
|
|
8625
8760
|
sortDirection?: string;
|
|
8626
|
-
}, params?: RequestParams) => Promise<AxiosResponse<Task, any>>;
|
|
8761
|
+
}, params?: RequestParams) => Promise<AxiosResponse<Task, any, {}>>;
|
|
8627
8762
|
/**
|
|
8628
8763
|
* No description
|
|
8629
8764
|
*
|
|
@@ -8634,7 +8769,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8634
8769
|
* @secure
|
|
8635
8770
|
* @response `201` `Task` Created
|
|
8636
8771
|
*/
|
|
8637
|
-
createTask: (data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<Task, any>>;
|
|
8772
|
+
createTask: (data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<Task, any, {}>>;
|
|
8638
8773
|
/**
|
|
8639
8774
|
* No description
|
|
8640
8775
|
*
|
|
@@ -8646,7 +8781,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8646
8781
|
* @response `200` `Task` Success
|
|
8647
8782
|
* @response `404` `ProblemDetails` Not Found
|
|
8648
8783
|
*/
|
|
8649
|
-
getTask: (id: string, params?: RequestParams) => Promise<AxiosResponse<Task, any>>;
|
|
8784
|
+
getTask: (id: string, params?: RequestParams) => Promise<AxiosResponse<Task, any, {}>>;
|
|
8650
8785
|
/**
|
|
8651
8786
|
* No description
|
|
8652
8787
|
*
|
|
@@ -8658,7 +8793,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8658
8793
|
* @response `200` `void` Success
|
|
8659
8794
|
* @response `404` `ProblemDetails` Not Found
|
|
8660
8795
|
*/
|
|
8661
|
-
replaceTask: (id: string, data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8796
|
+
replaceTask: (id: string, data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8662
8797
|
/**
|
|
8663
8798
|
* No description
|
|
8664
8799
|
*
|
|
@@ -8670,7 +8805,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8670
8805
|
* @response `204` `void` No Content
|
|
8671
8806
|
* @response `404` `ProblemDetails` Not Found
|
|
8672
8807
|
*/
|
|
8673
|
-
deleteTask: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8808
|
+
deleteTask: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8674
8809
|
/**
|
|
8675
8810
|
* No description
|
|
8676
8811
|
*
|
|
@@ -8688,7 +8823,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8688
8823
|
pageNumber?: number;
|
|
8689
8824
|
sortBy?: string;
|
|
8690
8825
|
sortDirection?: string;
|
|
8691
|
-
}, params?: RequestParams) => Promise<AxiosResponse<TaskPaginated, any>>;
|
|
8826
|
+
}, params?: RequestParams) => Promise<AxiosResponse<TaskPaginated, any, {}>>;
|
|
8692
8827
|
/**
|
|
8693
8828
|
* No description
|
|
8694
8829
|
*
|
|
@@ -8698,7 +8833,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8698
8833
|
* @secure
|
|
8699
8834
|
* @response `200` `void` Success
|
|
8700
8835
|
*/
|
|
8701
|
-
integrationsLosLoansCreate: (data: LosLoanCreationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8836
|
+
integrationsLosLoansCreate: (data: LosLoanCreationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8702
8837
|
/**
|
|
8703
8838
|
* No description
|
|
8704
8839
|
*
|
|
@@ -8715,7 +8850,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8715
8850
|
pageNumber: number;
|
|
8716
8851
|
sortBy?: string;
|
|
8717
8852
|
sortDirection?: string;
|
|
8718
|
-
}, data: EncompassLogSearchCriteria, params?: RequestParams) => Promise<AxiosResponse<EncompassRequestLogPaginated, any>>;
|
|
8853
|
+
}, data: EncompassLogSearchCriteria, params?: RequestParams) => Promise<AxiosResponse<EncompassRequestLogPaginated, any, {}>>;
|
|
8719
8854
|
/**
|
|
8720
8855
|
* No description
|
|
8721
8856
|
*
|
|
@@ -8726,7 +8861,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8726
8861
|
* @response `200` `EncompassCredentialsDetail` Success
|
|
8727
8862
|
* @response `204` `void` No Content
|
|
8728
8863
|
*/
|
|
8729
|
-
getEncompassCredentials: (params?: RequestParams) => Promise<AxiosResponse<EncompassCredentialsDetail, any>>;
|
|
8864
|
+
getEncompassCredentials: (params?: RequestParams) => Promise<AxiosResponse<EncompassCredentialsDetail, any, {}>>;
|
|
8730
8865
|
/**
|
|
8731
8866
|
* No description
|
|
8732
8867
|
*
|
|
@@ -8736,7 +8871,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8736
8871
|
* @secure
|
|
8737
8872
|
* @response `201` `LosCredentials` Created
|
|
8738
8873
|
*/
|
|
8739
|
-
createEncompassCredentials: (data: EncompassCredentialsRequest, params?: RequestParams) => Promise<AxiosResponse<LosCredentials, any>>;
|
|
8874
|
+
createEncompassCredentials: (data: EncompassCredentialsRequest, params?: RequestParams) => Promise<AxiosResponse<LosCredentials, any, {}>>;
|
|
8740
8875
|
/**
|
|
8741
8876
|
* No description
|
|
8742
8877
|
*
|
|
@@ -8746,7 +8881,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8746
8881
|
* @secure
|
|
8747
8882
|
* @response `200` `EncompassCredentialsDetail` Success
|
|
8748
8883
|
*/
|
|
8749
|
-
updateEncompassCredentials: (data: EncompassCredentialsRequest, params?: RequestParams) => Promise<AxiosResponse<EncompassCredentialsDetail, any>>;
|
|
8884
|
+
updateEncompassCredentials: (data: EncompassCredentialsRequest, params?: RequestParams) => Promise<AxiosResponse<EncompassCredentialsDetail, any, {}>>;
|
|
8750
8885
|
/**
|
|
8751
8886
|
* No description
|
|
8752
8887
|
*
|
|
@@ -8756,7 +8891,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8756
8891
|
* @secure
|
|
8757
8892
|
* @response `200` `(LosWebhook)[]` Success
|
|
8758
8893
|
*/
|
|
8759
|
-
getEncompassWebhooks: (params?: RequestParams) => Promise<AxiosResponse<LosWebhook[], any>>;
|
|
8894
|
+
getEncompassWebhooks: (params?: RequestParams) => Promise<AxiosResponse<LosWebhook[], any, {}>>;
|
|
8760
8895
|
/**
|
|
8761
8896
|
* No description
|
|
8762
8897
|
*
|
|
@@ -8766,7 +8901,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8766
8901
|
* @secure
|
|
8767
8902
|
* @response `201` `LosWebhook` Created
|
|
8768
8903
|
*/
|
|
8769
|
-
createEncompassWebhook: (data: CreateWebhookRequest, params?: RequestParams) => Promise<AxiosResponse<LosWebhook, any>>;
|
|
8904
|
+
createEncompassWebhook: (data: CreateWebhookRequest, params?: RequestParams) => Promise<AxiosResponse<LosWebhook, any, {}>>;
|
|
8770
8905
|
/**
|
|
8771
8906
|
* No description
|
|
8772
8907
|
*
|
|
@@ -8776,7 +8911,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8776
8911
|
* @secure
|
|
8777
8912
|
* @response `204` `void` No Content
|
|
8778
8913
|
*/
|
|
8779
|
-
deleteEncompassWebhook: (webhookId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8914
|
+
deleteEncompassWebhook: (webhookId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8780
8915
|
/**
|
|
8781
8916
|
* No description
|
|
8782
8917
|
*
|
|
@@ -8788,7 +8923,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8788
8923
|
* @response `200` `UsageReport` Success
|
|
8789
8924
|
* @response `404` `ProblemDetails` Not Found
|
|
8790
8925
|
*/
|
|
8791
|
-
getUsageReportById: (id: string, params?: RequestParams) => Promise<AxiosResponse<UsageReport, any>>;
|
|
8926
|
+
getUsageReportById: (id: string, params?: RequestParams) => Promise<AxiosResponse<UsageReport, any, {}>>;
|
|
8792
8927
|
/**
|
|
8793
8928
|
* No description
|
|
8794
8929
|
*
|
|
@@ -8805,7 +8940,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8805
8940
|
month?: number;
|
|
8806
8941
|
/** @format int32 */
|
|
8807
8942
|
year?: number;
|
|
8808
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UsageReport[], any>>;
|
|
8943
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UsageReport[], any, {}>>;
|
|
8809
8944
|
/**
|
|
8810
8945
|
* No description
|
|
8811
8946
|
*
|
|
@@ -8822,7 +8957,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8822
8957
|
month?: number;
|
|
8823
8958
|
/** @format int32 */
|
|
8824
8959
|
year?: number;
|
|
8825
|
-
}, params?: RequestParams) => Promise<AxiosResponse<any, any>>;
|
|
8960
|
+
}, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
8826
8961
|
/**
|
|
8827
8962
|
* No description
|
|
8828
8963
|
*
|
|
@@ -8833,7 +8968,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8833
8968
|
* @secure
|
|
8834
8969
|
* @response `200` `UsageReportDashboard` Success
|
|
8835
8970
|
*/
|
|
8836
|
-
getUsageReportDashboard: (params?: RequestParams) => Promise<AxiosResponse<UsageReportDashboard, any>>;
|
|
8971
|
+
getUsageReportDashboard: (params?: RequestParams) => Promise<AxiosResponse<UsageReportDashboard, any, {}>>;
|
|
8837
8972
|
/**
|
|
8838
8973
|
* No description
|
|
8839
8974
|
*
|
|
@@ -8845,7 +8980,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8845
8980
|
* @response `200` `UsageReportExecution` Success
|
|
8846
8981
|
* @response `404` `ProblemDetails` Not Found
|
|
8847
8982
|
*/
|
|
8848
|
-
getUsageReportExecution: (correlationId: string, params?: RequestParams) => Promise<AxiosResponse<UsageReportExecution, any>>;
|
|
8983
|
+
getUsageReportExecution: (correlationId: string, params?: RequestParams) => Promise<AxiosResponse<UsageReportExecution, any, {}>>;
|
|
8849
8984
|
/**
|
|
8850
8985
|
* No description
|
|
8851
8986
|
*
|
|
@@ -8862,7 +8997,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8862
8997
|
month?: number;
|
|
8863
8998
|
/** @format int32 */
|
|
8864
8999
|
year?: number;
|
|
8865
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UsageReportExecution[], any>>;
|
|
9000
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UsageReportExecution[], any, {}>>;
|
|
8866
9001
|
/**
|
|
8867
9002
|
* No description
|
|
8868
9003
|
*
|
|
@@ -8874,7 +9009,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8874
9009
|
* @response `201` `UserDevice` Created
|
|
8875
9010
|
* @response `400` `ProblemDetails` Bad Request
|
|
8876
9011
|
*/
|
|
8877
|
-
createUserDevice: (data: CreateUserDeviceRequest, params?: RequestParams) => Promise<AxiosResponse<UserDevice, any>>;
|
|
9012
|
+
createUserDevice: (data: CreateUserDeviceRequest, params?: RequestParams) => Promise<AxiosResponse<UserDevice, any, {}>>;
|
|
8878
9013
|
/**
|
|
8879
9014
|
* No description
|
|
8880
9015
|
*
|
|
@@ -8886,7 +9021,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8886
9021
|
* @response `204` `void` No Content
|
|
8887
9022
|
* @response `404` `ProblemDetails` Not Found
|
|
8888
9023
|
*/
|
|
8889
|
-
deleteUserDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9024
|
+
deleteUserDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8890
9025
|
/**
|
|
8891
9026
|
* No description
|
|
8892
9027
|
*
|
|
@@ -8904,7 +9039,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8904
9039
|
pageNumber?: number;
|
|
8905
9040
|
sortBy?: string;
|
|
8906
9041
|
sortDirection?: string;
|
|
8907
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UserDraftPaginated, any>>;
|
|
9042
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UserDraftPaginated, any, {}>>;
|
|
8908
9043
|
/**
|
|
8909
9044
|
* No description
|
|
8910
9045
|
*
|
|
@@ -8915,7 +9050,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8915
9050
|
* @secure
|
|
8916
9051
|
* @response `200` `UserDraft` Success
|
|
8917
9052
|
*/
|
|
8918
|
-
getDraftUser: (draftId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<UserDraft, any>>;
|
|
9053
|
+
getDraftUser: (draftId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<UserDraft, any, {}>>;
|
|
8919
9054
|
/**
|
|
8920
9055
|
* No description
|
|
8921
9056
|
*
|
|
@@ -8926,7 +9061,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8926
9061
|
* @secure
|
|
8927
9062
|
* @response `200` `UserDraft` Success
|
|
8928
9063
|
*/
|
|
8929
|
-
addDraftUsers: (draftId: string, userId: string, data: CreateUserDraft, params?: RequestParams) => Promise<AxiosResponse<UserDraft, any>>;
|
|
9064
|
+
addDraftUsers: (draftId: string, userId: string, data: CreateUserDraft, params?: RequestParams) => Promise<AxiosResponse<UserDraft, any, {}>>;
|
|
8930
9065
|
/**
|
|
8931
9066
|
* No description
|
|
8932
9067
|
*
|
|
@@ -8937,7 +9072,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8937
9072
|
* @secure
|
|
8938
9073
|
* @response `204` `void` No Content
|
|
8939
9074
|
*/
|
|
8940
|
-
deleteDraftUser: (draftId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9075
|
+
deleteDraftUser: (draftId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8941
9076
|
/**
|
|
8942
9077
|
* No description
|
|
8943
9078
|
*
|
|
@@ -8948,7 +9083,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8948
9083
|
* @secure
|
|
8949
9084
|
* @response `200` `(UserGroupAccessScope)[]` Success
|
|
8950
9085
|
*/
|
|
8951
|
-
getUserGroupAccessScopes: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope[], any>>;
|
|
9086
|
+
getUserGroupAccessScopes: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope[], any, {}>>;
|
|
8952
9087
|
/**
|
|
8953
9088
|
* No description
|
|
8954
9089
|
*
|
|
@@ -8959,7 +9094,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8959
9094
|
* @secure
|
|
8960
9095
|
* @response `200` `UserGroupAccessScope` Success
|
|
8961
9096
|
*/
|
|
8962
|
-
createUserGroupAccessScope: (groupId: string, data: CreateAccessScopeRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope, any>>;
|
|
9097
|
+
createUserGroupAccessScope: (groupId: string, data: CreateAccessScopeRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope, any, {}>>;
|
|
8963
9098
|
/**
|
|
8964
9099
|
* No description
|
|
8965
9100
|
*
|
|
@@ -8970,7 +9105,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8970
9105
|
* @secure
|
|
8971
9106
|
* @response `204` `void` No Content
|
|
8972
9107
|
*/
|
|
8973
|
-
deleteUserGroupAccessScope: (groupId: string, scopeId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9108
|
+
deleteUserGroupAccessScope: (groupId: string, scopeId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8974
9109
|
/**
|
|
8975
9110
|
* No description
|
|
8976
9111
|
*
|
|
@@ -8981,7 +9116,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8981
9116
|
* @secure
|
|
8982
9117
|
* @response `200` `(UserGroupMember)[]` Success
|
|
8983
9118
|
*/
|
|
8984
|
-
getUserGroupMembers: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupMember[], any>>;
|
|
9119
|
+
getUserGroupMembers: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupMember[], any, {}>>;
|
|
8985
9120
|
/**
|
|
8986
9121
|
* No description
|
|
8987
9122
|
*
|
|
@@ -8995,7 +9130,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8995
9130
|
createUserGroupMember: (groupId: string, data: CreateGroupMemberRequest, query?: {
|
|
8996
9131
|
/** @format uuid */
|
|
8997
9132
|
userId?: string;
|
|
8998
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UserGroupMember, any>>;
|
|
9133
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UserGroupMember, any, {}>>;
|
|
8999
9134
|
/**
|
|
9000
9135
|
* No description
|
|
9001
9136
|
*
|
|
@@ -9006,7 +9141,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9006
9141
|
* @secure
|
|
9007
9142
|
* @response `204` `void` No Content
|
|
9008
9143
|
*/
|
|
9009
|
-
deleteUserGroupMember: (groupId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9144
|
+
deleteUserGroupMember: (groupId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9010
9145
|
/**
|
|
9011
9146
|
* No description
|
|
9012
9147
|
*
|
|
@@ -9025,7 +9160,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9025
9160
|
pageNumber?: number;
|
|
9026
9161
|
sortBy?: string;
|
|
9027
9162
|
sortDirection?: string;
|
|
9028
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UserGroupPaginated, any>>;
|
|
9163
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UserGroupPaginated, any, {}>>;
|
|
9029
9164
|
/**
|
|
9030
9165
|
* No description
|
|
9031
9166
|
*
|
|
@@ -9036,7 +9171,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9036
9171
|
* @secure
|
|
9037
9172
|
* @response `200` `UserGroup` Success
|
|
9038
9173
|
*/
|
|
9039
|
-
getUserGroup: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any>>;
|
|
9174
|
+
getUserGroup: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any, {}>>;
|
|
9040
9175
|
/**
|
|
9041
9176
|
* No description
|
|
9042
9177
|
*
|
|
@@ -9047,7 +9182,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9047
9182
|
* @secure
|
|
9048
9183
|
* @response `200` `UserGroup` Success
|
|
9049
9184
|
*/
|
|
9050
|
-
updateUserGroup: (groupId: string, data: UpdateUserGroupRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any>>;
|
|
9185
|
+
updateUserGroup: (groupId: string, data: UpdateUserGroupRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any, {}>>;
|
|
9051
9186
|
/**
|
|
9052
9187
|
* No description
|
|
9053
9188
|
*
|
|
@@ -9058,7 +9193,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9058
9193
|
* @secure
|
|
9059
9194
|
* @response `204` `void` No Content
|
|
9060
9195
|
*/
|
|
9061
|
-
deleteUserGroup: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9196
|
+
deleteUserGroup: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9062
9197
|
/**
|
|
9063
9198
|
* No description
|
|
9064
9199
|
*
|
|
@@ -9069,7 +9204,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9069
9204
|
* @secure
|
|
9070
9205
|
* @response `201` `UserGroup` Created
|
|
9071
9206
|
*/
|
|
9072
|
-
createUserGroup: (data: CreateUserGroupRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any>>;
|
|
9207
|
+
createUserGroup: (data: CreateUserGroupRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any, {}>>;
|
|
9073
9208
|
/**
|
|
9074
9209
|
* No description
|
|
9075
9210
|
*
|
|
@@ -9082,7 +9217,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9082
9217
|
* @response `404` `Error` Not Found
|
|
9083
9218
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9084
9219
|
*/
|
|
9085
|
-
requestImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9220
|
+
requestImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9086
9221
|
/**
|
|
9087
9222
|
* No description
|
|
9088
9223
|
*
|
|
@@ -9095,7 +9230,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9095
9230
|
* @response `404` `Error` Not Found
|
|
9096
9231
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9097
9232
|
*/
|
|
9098
|
-
allowImpersonation: (data: AllowImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9233
|
+
allowImpersonation: (data: AllowImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9099
9234
|
/**
|
|
9100
9235
|
* No description
|
|
9101
9236
|
*
|
|
@@ -9108,7 +9243,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9108
9243
|
* @response `404` `Error` Not Found
|
|
9109
9244
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9110
9245
|
*/
|
|
9111
|
-
allowImpersonationWithGuid: (allowToken: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9246
|
+
allowImpersonationWithGuid: (allowToken: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9112
9247
|
/**
|
|
9113
9248
|
* No description
|
|
9114
9249
|
*
|
|
@@ -9120,7 +9255,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9120
9255
|
* @response `204` `void` No Content
|
|
9121
9256
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9122
9257
|
*/
|
|
9123
|
-
beginImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9258
|
+
beginImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9124
9259
|
/**
|
|
9125
9260
|
* No description
|
|
9126
9261
|
*
|
|
@@ -9132,7 +9267,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9132
9267
|
* @response `204` `void` No Content
|
|
9133
9268
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9134
9269
|
*/
|
|
9135
|
-
stopImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9270
|
+
stopImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9136
9271
|
/**
|
|
9137
9272
|
* No description
|
|
9138
9273
|
*
|
|
@@ -9145,7 +9280,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9145
9280
|
* @response `404` `Error` Not Found
|
|
9146
9281
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9147
9282
|
*/
|
|
9148
|
-
forceImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9283
|
+
forceImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9149
9284
|
/**
|
|
9150
9285
|
* No description
|
|
9151
9286
|
*
|
|
@@ -9157,7 +9292,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9157
9292
|
* @response `204` `void` No Content
|
|
9158
9293
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9159
9294
|
*/
|
|
9160
|
-
extendImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9295
|
+
extendImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9161
9296
|
/**
|
|
9162
9297
|
* No description
|
|
9163
9298
|
*
|
|
@@ -9169,7 +9304,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9169
9304
|
* @response `204` `void` No Content
|
|
9170
9305
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9171
9306
|
*/
|
|
9172
|
-
inviteUser: (data: CreateInviteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9307
|
+
inviteUser: (data: CreateInviteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9173
9308
|
/**
|
|
9174
9309
|
* No description
|
|
9175
9310
|
*
|
|
@@ -9182,7 +9317,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9182
9317
|
* @response `401` `UnprocessableEntity` Unauthorized
|
|
9183
9318
|
* @response `404` `UnprocessableEntity` Not Found
|
|
9184
9319
|
*/
|
|
9185
|
-
resendInviteNotification: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9320
|
+
resendInviteNotification: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9186
9321
|
/**
|
|
9187
9322
|
* No description
|
|
9188
9323
|
*
|
|
@@ -9194,7 +9329,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9194
9329
|
* @response `200` `Invite` Success
|
|
9195
9330
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9196
9331
|
*/
|
|
9197
|
-
verifyUserInvite: (token: string, params?: RequestParams) => Promise<AxiosResponse<Invite, any>>;
|
|
9332
|
+
verifyUserInvite: (token: string, params?: RequestParams) => Promise<AxiosResponse<Invite, any, {}>>;
|
|
9198
9333
|
/**
|
|
9199
9334
|
* No description
|
|
9200
9335
|
*
|
|
@@ -9205,7 +9340,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9205
9340
|
* @secure
|
|
9206
9341
|
* @response `200` `(UserRelation)[]` Success
|
|
9207
9342
|
*/
|
|
9208
|
-
getUserRelations: (userId: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation[], any>>;
|
|
9343
|
+
getUserRelations: (userId: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation[], any, {}>>;
|
|
9209
9344
|
/**
|
|
9210
9345
|
* No description
|
|
9211
9346
|
*
|
|
@@ -9216,7 +9351,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9216
9351
|
* @secure
|
|
9217
9352
|
* @response `204` `void` No Content
|
|
9218
9353
|
*/
|
|
9219
|
-
createUserRelation: (userId: string, data: CreateUserRelationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9354
|
+
createUserRelation: (userId: string, data: CreateUserRelationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9220
9355
|
/**
|
|
9221
9356
|
* No description
|
|
9222
9357
|
*
|
|
@@ -9227,7 +9362,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9227
9362
|
* @secure
|
|
9228
9363
|
* @response `200` `UserRelation` Success
|
|
9229
9364
|
*/
|
|
9230
|
-
getUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation, any>>;
|
|
9365
|
+
getUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation, any, {}>>;
|
|
9231
9366
|
/**
|
|
9232
9367
|
* No description
|
|
9233
9368
|
*
|
|
@@ -9238,7 +9373,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9238
9373
|
* @secure
|
|
9239
9374
|
* @response `204` `void` No Content
|
|
9240
9375
|
*/
|
|
9241
|
-
deleteUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9376
|
+
deleteUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9242
9377
|
/**
|
|
9243
9378
|
* No description
|
|
9244
9379
|
*
|
|
@@ -9256,7 +9391,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9256
9391
|
pageNumber?: number;
|
|
9257
9392
|
sortBy?: string;
|
|
9258
9393
|
sortDirection?: string;
|
|
9259
|
-
}, params?: RequestParams) => Promise<AxiosResponse<User[], any>>;
|
|
9394
|
+
}, params?: RequestParams) => Promise<AxiosResponse<User[], any, {}>>;
|
|
9260
9395
|
/**
|
|
9261
9396
|
* No description
|
|
9262
9397
|
*
|
|
@@ -9268,7 +9403,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9268
9403
|
* @response `200` `DetailedUser` Success
|
|
9269
9404
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9270
9405
|
*/
|
|
9271
|
-
createUser: (data: CreateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
|
|
9406
|
+
createUser: (data: CreateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any, {}>>;
|
|
9272
9407
|
/**
|
|
9273
9408
|
* No description
|
|
9274
9409
|
*
|
|
@@ -9286,7 +9421,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9286
9421
|
pageNumber?: number;
|
|
9287
9422
|
sortBy?: string;
|
|
9288
9423
|
sortDirection?: string;
|
|
9289
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UserPaginated, any>>;
|
|
9424
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UserPaginated, any, {}>>;
|
|
9290
9425
|
/**
|
|
9291
9426
|
* No description
|
|
9292
9427
|
*
|
|
@@ -9297,7 +9432,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9297
9432
|
* @secure
|
|
9298
9433
|
* @response `200` `AdminAccessUser` Success
|
|
9299
9434
|
*/
|
|
9300
|
-
getUserByEmail: (data: GetUserByEmailRequest, params?: RequestParams) => Promise<AxiosResponse<AdminAccessUser, any>>;
|
|
9435
|
+
getUserByEmail: (data: GetUserByEmailRequest, params?: RequestParams) => Promise<AxiosResponse<AdminAccessUser, any, {}>>;
|
|
9301
9436
|
/**
|
|
9302
9437
|
* No description
|
|
9303
9438
|
*
|
|
@@ -9309,7 +9444,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9309
9444
|
* @response `200` `User` Success
|
|
9310
9445
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9311
9446
|
*/
|
|
9312
|
-
signUp: (data: RegisterUserRequest, params?: RequestParams) => Promise<AxiosResponse<User, any>>;
|
|
9447
|
+
signUp: (data: RegisterUserRequest, params?: RequestParams) => Promise<AxiosResponse<User, any, {}>>;
|
|
9313
9448
|
/**
|
|
9314
9449
|
* No description
|
|
9315
9450
|
*
|
|
@@ -9321,7 +9456,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9321
9456
|
* @response `200` `DetailedUser` Success
|
|
9322
9457
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9323
9458
|
*/
|
|
9324
|
-
replaceUser: (id: string, data: UpdateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
|
|
9459
|
+
replaceUser: (id: string, data: UpdateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any, {}>>;
|
|
9325
9460
|
/**
|
|
9326
9461
|
* No description
|
|
9327
9462
|
*
|
|
@@ -9335,7 +9470,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9335
9470
|
deleteUser: (id: string, query?: {
|
|
9336
9471
|
/** @default false */
|
|
9337
9472
|
permanent?: boolean;
|
|
9338
|
-
}, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9473
|
+
}, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9339
9474
|
/**
|
|
9340
9475
|
* No description
|
|
9341
9476
|
*
|
|
@@ -9346,7 +9481,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9346
9481
|
* @secure
|
|
9347
9482
|
* @response `204` `void` No Content
|
|
9348
9483
|
*/
|
|
9349
|
-
restoreUser: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9484
|
+
restoreUser: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9350
9485
|
/**
|
|
9351
9486
|
* No description
|
|
9352
9487
|
*
|
|
@@ -9358,7 +9493,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9358
9493
|
* @response `204` `void` No Content
|
|
9359
9494
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9360
9495
|
*/
|
|
9361
|
-
changePassword: (data: ChangePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9496
|
+
changePassword: (data: ChangePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9362
9497
|
/**
|
|
9363
9498
|
* No description
|
|
9364
9499
|
*
|
|
@@ -9370,7 +9505,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9370
9505
|
* @response `204` `void` No Content
|
|
9371
9506
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9372
9507
|
*/
|
|
9373
|
-
verifyPassword: (data: VerifyPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9508
|
+
verifyPassword: (data: VerifyPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9374
9509
|
/**
|
|
9375
9510
|
* No description
|
|
9376
9511
|
*
|
|
@@ -9382,7 +9517,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9382
9517
|
* @response `204` `void` No Content
|
|
9383
9518
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9384
9519
|
*/
|
|
9385
|
-
overridePassword: (id: string, data: OverridePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9520
|
+
overridePassword: (id: string, data: OverridePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9386
9521
|
/**
|
|
9387
9522
|
* No description
|
|
9388
9523
|
*
|
|
@@ -9394,7 +9529,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9394
9529
|
* @response `204` `void` No Content
|
|
9395
9530
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9396
9531
|
*/
|
|
9397
|
-
forgotPassword: (data: SendForgotPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9532
|
+
forgotPassword: (data: SendForgotPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9398
9533
|
/**
|
|
9399
9534
|
* No description
|
|
9400
9535
|
*
|
|
@@ -9406,7 +9541,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9406
9541
|
* @response `204` `void` No Content
|
|
9407
9542
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9408
9543
|
*/
|
|
9409
|
-
sendMobilePhoneVerificationCode: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9544
|
+
sendMobilePhoneVerificationCode: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9410
9545
|
/**
|
|
9411
9546
|
* No description
|
|
9412
9547
|
*
|
|
@@ -9418,7 +9553,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9418
9553
|
* @response `204` `void` No Content
|
|
9419
9554
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9420
9555
|
*/
|
|
9421
|
-
verifyUserMobilePhone: (data: UserMobilePhoneVerificationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9556
|
+
verifyUserMobilePhone: (data: UserMobilePhoneVerificationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9422
9557
|
/**
|
|
9423
9558
|
* No description
|
|
9424
9559
|
*
|
|
@@ -9430,7 +9565,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9430
9565
|
* @response `200` `ImpersonatedDetailedUser` Success
|
|
9431
9566
|
* @response `401` `ProblemDetails` Unauthorized
|
|
9432
9567
|
*/
|
|
9433
|
-
getMe: (params?: RequestParams) => Promise<AxiosResponse<ImpersonatedDetailedUser, any>>;
|
|
9568
|
+
getMe: (params?: RequestParams) => Promise<AxiosResponse<ImpersonatedDetailedUser, any, {}>>;
|
|
9434
9569
|
/**
|
|
9435
9570
|
* No description
|
|
9436
9571
|
*
|
|
@@ -9441,7 +9576,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9441
9576
|
* @secure
|
|
9442
9577
|
* @response `200` `DetailedUser` Success
|
|
9443
9578
|
*/
|
|
9444
|
-
replaceMe: (data: UpdateMeRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
|
|
9579
|
+
replaceMe: (data: UpdateMeRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any, {}>>;
|
|
9445
9580
|
/**
|
|
9446
9581
|
* @description Update the phone number If changed will send a verification code to the new number
|
|
9447
9582
|
*
|
|
@@ -9452,7 +9587,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9452
9587
|
* @secure
|
|
9453
9588
|
* @response `204` `DetailedUser` No Content
|
|
9454
9589
|
*/
|
|
9455
|
-
updateMyPhone: (data: UpdateMobilePhoneRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
|
|
9590
|
+
updateMyPhone: (data: UpdateMobilePhoneRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any, {}>>;
|
|
9456
9591
|
/**
|
|
9457
9592
|
* No description
|
|
9458
9593
|
*
|
|
@@ -9463,7 +9598,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9463
9598
|
* @secure
|
|
9464
9599
|
* @response `200` `(UserRelationship)[]` Success
|
|
9465
9600
|
*/
|
|
9466
|
-
getMyRelationships: (params?: RequestParams) => Promise<AxiosResponse<UserRelationship[], any>>;
|
|
9601
|
+
getMyRelationships: (params?: RequestParams) => Promise<AxiosResponse<UserRelationship[], any, {}>>;
|
|
9467
9602
|
/**
|
|
9468
9603
|
* No description
|
|
9469
9604
|
*
|
|
@@ -9474,7 +9609,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9474
9609
|
* @secure
|
|
9475
9610
|
* @response `200` `(UserRelationshipProspect)[]` Success
|
|
9476
9611
|
*/
|
|
9477
|
-
getMyRelationshipProspects: (params?: RequestParams) => Promise<AxiosResponse<UserRelationshipProspect[], any>>;
|
|
9612
|
+
getMyRelationshipProspects: (params?: RequestParams) => Promise<AxiosResponse<UserRelationshipProspect[], any, {}>>;
|
|
9478
9613
|
/**
|
|
9479
9614
|
* No description
|
|
9480
9615
|
*
|
|
@@ -9485,7 +9620,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9485
9620
|
* @secure
|
|
9486
9621
|
* @response `204` `void` No Content
|
|
9487
9622
|
*/
|
|
9488
|
-
deleteRelationshipProspect: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9623
|
+
deleteRelationshipProspect: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9489
9624
|
/**
|
|
9490
9625
|
* No description
|
|
9491
9626
|
*
|
|
@@ -9496,7 +9631,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9496
9631
|
* @secure
|
|
9497
9632
|
* @response `204` `void` No Content
|
|
9498
9633
|
*/
|
|
9499
|
-
deleteMe: (data: UserAccountDeletionRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9634
|
+
deleteMe: (data: UserAccountDeletionRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9500
9635
|
/**
|
|
9501
9636
|
* No description
|
|
9502
9637
|
*
|
|
@@ -9507,7 +9642,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9507
9642
|
* @secure
|
|
9508
9643
|
* @response `200` `GetForm` Success
|
|
9509
9644
|
*/
|
|
9510
|
-
getWorkflow: (data: GetWorkflowRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any>>;
|
|
9645
|
+
getWorkflow: (data: GetWorkflowRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any, {}>>;
|
|
9511
9646
|
};
|
|
9512
9647
|
sso: {
|
|
9513
9648
|
/**
|
|
@@ -9519,6 +9654,6 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9519
9654
|
* @secure
|
|
9520
9655
|
* @response `200` `void` Success
|
|
9521
9656
|
*/
|
|
9522
|
-
logoutList: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9657
|
+
logoutList: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9523
9658
|
};
|
|
9524
9659
|
}
|