@matech/thebigpos-sdk 2.40.0-rc.0 → 2.40.0-rc.2
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 +17 -15
- package/dist/index.d.ts +647 -407
- package/dist/index.js +116 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +948 -435
package/dist/index.d.ts
CHANGED
|
@@ -4,13 +4,14 @@ 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 LosSyncStepSeverity = "Success" | "Info" | "Warning" | "Error";
|
|
7
8
|
export type LosOperationStatus = "Pending" | "Success" | "Failed" | "ConfigurationError" | "PermanentFailure" | "Locked";
|
|
8
9
|
export type LogLevel = "None" | "Info" | "Warning" | "Error";
|
|
9
10
|
export type LoanType = "Fha" | "Conventional" | "UsdaRd" | "Va" | "Other";
|
|
10
11
|
export type LoanTrustType = "Living" | "Land" | "Testamentary" | "Other";
|
|
11
12
|
export type LoanTitleHeld = "Sole" | "JointWithSpouse" | "JointWithOtherThanSpouse";
|
|
12
13
|
export type LoanTaskActivityFilter = "Active" | "Inactive" | "All";
|
|
13
|
-
export type LoanRole = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
|
|
14
|
+
export type LoanRole = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
14
15
|
export type LoanRealEstateStatus = "Keep" | "Rent" | "Sell";
|
|
15
16
|
export type LoanQueueType = "Unknown" | "New" | "Append" | "Update" | "FieldUpdates" | "Document" | "Buckets";
|
|
16
17
|
export type LoanQueueReason = "Unknown" | "Locked" | "LOSError" | "Exception";
|
|
@@ -40,6 +41,7 @@ export type LoanHispanicEthnicity = "Mexican" | "PuertoRican" | "Cuban" | "Other
|
|
|
40
41
|
export type LoanGiftSource = "CommunityNonProfit" | "Employer" | "FederalAgency" | "LocalAgency" | "Relative" | "ReligiousNonProfit" | "StateAgency" | "UnmarriedPartner" | "Lender" | "Other";
|
|
41
42
|
export type LoanGiftAssetType = "Cash" | "Asset" | "Equity";
|
|
42
43
|
export type LoanGenderType = "Male" | "Female";
|
|
44
|
+
export type LoanDocumentFolderPermissionLevel = "None" | "Read" | "Write" | "Manage";
|
|
43
45
|
export type LoanCitizenship = "USCitizen" | "PermanentResidentAlien" | "NonPermanentResidentAlien";
|
|
44
46
|
export type LoanBankruptcyType = "Chapter7" | "Chapter11" | "Chapter12" | "Chapter13";
|
|
45
47
|
export type LoanAsianRace = "AsianIndian" | "Chinese" | "Filipino" | "Japanese" | "Korean" | "Vietnamese" | "Other";
|
|
@@ -113,7 +115,7 @@ export interface AccountBilling {
|
|
|
113
115
|
contractedRate: number;
|
|
114
116
|
}
|
|
115
117
|
export interface AccountBillingRequest {
|
|
116
|
-
billingType:
|
|
118
|
+
billingType: AccountBillingRequestBillingTypeEnum;
|
|
117
119
|
/**
|
|
118
120
|
* @format double
|
|
119
121
|
* @min 0
|
|
@@ -433,7 +435,7 @@ export interface AuditLogEntry {
|
|
|
433
435
|
/** @format uuid */
|
|
434
436
|
id: string;
|
|
435
437
|
entityType: string;
|
|
436
|
-
changeType:
|
|
438
|
+
changeType: AuditLogEntryChangeTypeEnum;
|
|
437
439
|
/** @format uuid */
|
|
438
440
|
entityId: string;
|
|
439
441
|
performedBy?: AuditLogUser | null;
|
|
@@ -717,7 +719,7 @@ export interface CorporateSearchCriteria {
|
|
|
717
719
|
isActive?: boolean | null;
|
|
718
720
|
}
|
|
719
721
|
export interface CreateAccessScopeRequest {
|
|
720
|
-
scopeType:
|
|
722
|
+
scopeType: CreateAccessScopeRequestScopeTypeEnum;
|
|
721
723
|
/** @format uuid */
|
|
722
724
|
userId?: string | null;
|
|
723
725
|
/** @format uuid */
|
|
@@ -740,7 +742,7 @@ export interface CreateAccountRequest {
|
|
|
740
742
|
*/
|
|
741
743
|
nlmsid: number;
|
|
742
744
|
settings: AccountSettingsRequest;
|
|
743
|
-
environment:
|
|
745
|
+
environment: CreateAccountRequestEnvironmentEnum;
|
|
744
746
|
losIntegration: LOSIntegration;
|
|
745
747
|
billingSettings: AccountBillingRequest;
|
|
746
748
|
}
|
|
@@ -776,8 +778,8 @@ export interface CreateCustomFieldDefinitionRequest {
|
|
|
776
778
|
name: string;
|
|
777
779
|
defaultValue?: string | null;
|
|
778
780
|
regexPattern?: string | null;
|
|
779
|
-
dataType:
|
|
780
|
-
entityType:
|
|
781
|
+
dataType: CreateCustomFieldDefinitionRequestDataTypeEnum;
|
|
782
|
+
entityType: CreateCustomFieldDefinitionRequestEntityTypeEnum;
|
|
781
783
|
options?: CustomFieldOptionRequest[] | null;
|
|
782
784
|
permissions?: CustomFieldPermissionRequest[] | null;
|
|
783
785
|
}
|
|
@@ -797,7 +799,7 @@ export interface CreateDocumentTemplateRequest {
|
|
|
797
799
|
export interface CreateGroupMemberRequest {
|
|
798
800
|
/** @format uuid */
|
|
799
801
|
userId: string;
|
|
800
|
-
loanRole:
|
|
802
|
+
loanRole: CreateGroupMemberRequestLoanRoleEnum;
|
|
801
803
|
}
|
|
802
804
|
export interface CreateInviteRequest {
|
|
803
805
|
/** @minLength 1 */
|
|
@@ -808,7 +810,7 @@ export interface CreateInviteRequest {
|
|
|
808
810
|
emailAddress: string;
|
|
809
811
|
phoneNumber?: string | null;
|
|
810
812
|
/** @deprecated */
|
|
811
|
-
relationship:
|
|
813
|
+
relationship: CreateInviteRequestRelationshipEnum;
|
|
812
814
|
loanID: string;
|
|
813
815
|
route?: string | null;
|
|
814
816
|
/** @format uuid */
|
|
@@ -817,6 +819,14 @@ export interface CreateInviteRequest {
|
|
|
817
819
|
userRole?: UserRole | null;
|
|
818
820
|
loanRole?: LoanRole | null;
|
|
819
821
|
}
|
|
822
|
+
export interface CreateLoanDocumentFolderRequest {
|
|
823
|
+
/**
|
|
824
|
+
* @minLength 1
|
|
825
|
+
* @maxLength 250
|
|
826
|
+
*/
|
|
827
|
+
name: string;
|
|
828
|
+
permissions: LoanDocumentFolderPermissionRequest[];
|
|
829
|
+
}
|
|
820
830
|
export interface CreateLoanImportRequest {
|
|
821
831
|
/** @format uuid */
|
|
822
832
|
accountID: string;
|
|
@@ -830,7 +840,7 @@ export interface CreateLoanImportRequest {
|
|
|
830
840
|
* @minLength 1
|
|
831
841
|
*/
|
|
832
842
|
startDate: string;
|
|
833
|
-
importMode:
|
|
843
|
+
importMode: CreateLoanImportRequestImportModeEnum;
|
|
834
844
|
}
|
|
835
845
|
export interface CreateSession {
|
|
836
846
|
sessionId: string;
|
|
@@ -848,7 +858,7 @@ export interface CreateUserDeviceRequest {
|
|
|
848
858
|
token: string;
|
|
849
859
|
}
|
|
850
860
|
export interface CreateUserDraft {
|
|
851
|
-
loanRole:
|
|
861
|
+
loanRole: CreateUserDraftLoanRoleEnum;
|
|
852
862
|
}
|
|
853
863
|
export interface CreateUserGroupRequest {
|
|
854
864
|
/**
|
|
@@ -929,8 +939,8 @@ export interface CustomFieldDefinition {
|
|
|
929
939
|
name: string;
|
|
930
940
|
defaultValue?: string | null;
|
|
931
941
|
regexPattern?: string | null;
|
|
932
|
-
dataType:
|
|
933
|
-
entityType:
|
|
942
|
+
dataType: CustomFieldDefinitionDataTypeEnum;
|
|
943
|
+
entityType: CustomFieldDefinitionEntityTypeEnum;
|
|
934
944
|
options: CustomFieldOption[];
|
|
935
945
|
permissions: CustomFieldPermission[];
|
|
936
946
|
encompassMapping?: EncompassMapping | null;
|
|
@@ -944,7 +954,7 @@ export interface CustomFieldEntry {
|
|
|
944
954
|
displayOrder: number;
|
|
945
955
|
name: string;
|
|
946
956
|
value: string;
|
|
947
|
-
dataType:
|
|
957
|
+
dataType: CustomFieldEntryDataTypeEnum;
|
|
948
958
|
}
|
|
949
959
|
export interface CustomFieldOption {
|
|
950
960
|
/** @format uuid */
|
|
@@ -961,12 +971,12 @@ export interface CustomFieldOptionRequest {
|
|
|
961
971
|
export interface CustomFieldPermission {
|
|
962
972
|
/** @format uuid */
|
|
963
973
|
id: string;
|
|
964
|
-
role:
|
|
965
|
-
accessLevel:
|
|
974
|
+
role: CustomFieldPermissionRoleEnum;
|
|
975
|
+
accessLevel: CustomFieldPermissionAccessLevelEnum;
|
|
966
976
|
}
|
|
967
977
|
export interface CustomFieldPermissionRequest {
|
|
968
|
-
role:
|
|
969
|
-
accessLevel:
|
|
978
|
+
role: CustomFieldPermissionRequestRoleEnum;
|
|
979
|
+
accessLevel: CustomFieldPermissionRequestAccessLevelEnum;
|
|
970
980
|
}
|
|
971
981
|
export interface CustomFieldValue {
|
|
972
982
|
/** @format uuid */
|
|
@@ -977,7 +987,7 @@ export interface CustomFieldValue {
|
|
|
977
987
|
customFieldDefinitionID: string;
|
|
978
988
|
value: string;
|
|
979
989
|
definitionName: string;
|
|
980
|
-
dataType:
|
|
990
|
+
dataType: CustomFieldValueDataTypeEnum;
|
|
981
991
|
}
|
|
982
992
|
export interface CustomLoanData {
|
|
983
993
|
eConsentInformation?: EConsentInformation | null;
|
|
@@ -1221,7 +1231,7 @@ export interface Draft {
|
|
|
1221
1231
|
siteConfiguration: SiteConfigurationReduced;
|
|
1222
1232
|
/** @format uuid */
|
|
1223
1233
|
loanID?: string | null;
|
|
1224
|
-
type:
|
|
1234
|
+
type: DraftTypeEnum;
|
|
1225
1235
|
isCoBorrower: boolean;
|
|
1226
1236
|
}
|
|
1227
1237
|
export interface DraftContent {
|
|
@@ -1239,7 +1249,7 @@ export interface DraftContent {
|
|
|
1239
1249
|
siteConfiguration: SiteConfigurationReduced;
|
|
1240
1250
|
/** @format uuid */
|
|
1241
1251
|
loanID?: string | null;
|
|
1242
|
-
type:
|
|
1252
|
+
type: DraftContentTypeEnum;
|
|
1243
1253
|
isCoBorrower: boolean;
|
|
1244
1254
|
applicationPayload: any;
|
|
1245
1255
|
}
|
|
@@ -1278,7 +1288,6 @@ export interface EnabledServices {
|
|
|
1278
1288
|
fullApp?: boolean | null;
|
|
1279
1289
|
mobileApp?: boolean | null;
|
|
1280
1290
|
ringCentral?: boolean | null;
|
|
1281
|
-
rates?: boolean | null;
|
|
1282
1291
|
socialSurvey?: boolean | null;
|
|
1283
1292
|
borrowerTasks?: boolean | null;
|
|
1284
1293
|
docusign?: boolean | null;
|
|
@@ -1331,7 +1340,7 @@ export interface EncompassCredentialsDetail {
|
|
|
1331
1340
|
defaultLoanOfficerUserName?: string | null;
|
|
1332
1341
|
clearStateIfUnlicensed: boolean;
|
|
1333
1342
|
baseUrl?: string | null;
|
|
1334
|
-
signingMethod:
|
|
1343
|
+
signingMethod: EncompassCredentialsDetailSigningMethodEnum;
|
|
1335
1344
|
subscriptionId?: string | null;
|
|
1336
1345
|
environment?: string | null;
|
|
1337
1346
|
}
|
|
@@ -1346,7 +1355,7 @@ export interface EncompassCredentialsRequest {
|
|
|
1346
1355
|
defaultLoanOfficerUserName?: string | null;
|
|
1347
1356
|
clearStateIfUnlicensed: boolean;
|
|
1348
1357
|
baseUrl?: string | null;
|
|
1349
|
-
signingMethod:
|
|
1358
|
+
signingMethod: EncompassCredentialsRequestSigningMethodEnum;
|
|
1350
1359
|
subscriptionId?: string | null;
|
|
1351
1360
|
environment?: string | null;
|
|
1352
1361
|
clientID?: string | null;
|
|
@@ -1431,8 +1440,8 @@ export interface EncompassRequestLog {
|
|
|
1431
1440
|
losId?: string | null;
|
|
1432
1441
|
/** @format uuid */
|
|
1433
1442
|
accountId: string;
|
|
1434
|
-
operationType:
|
|
1435
|
-
outcome:
|
|
1443
|
+
operationType: EncompassRequestLogOperationTypeEnum;
|
|
1444
|
+
outcome: EncompassRequestLogOutcomeEnum;
|
|
1436
1445
|
message: string;
|
|
1437
1446
|
endpoint?: string | null;
|
|
1438
1447
|
httpMethod?: string | null;
|
|
@@ -1649,7 +1658,7 @@ export interface FusionFieldDisplay {
|
|
|
1649
1658
|
fieldValue: string;
|
|
1650
1659
|
}
|
|
1651
1660
|
export interface FusionReportFilter {
|
|
1652
|
-
filterType:
|
|
1661
|
+
filterType: FusionReportFilterFilterTypeEnum;
|
|
1653
1662
|
targetField: string;
|
|
1654
1663
|
targetValue: string;
|
|
1655
1664
|
}
|
|
@@ -1763,7 +1772,7 @@ export interface GuidPatchOperation {
|
|
|
1763
1772
|
from?: string | null;
|
|
1764
1773
|
}
|
|
1765
1774
|
export interface IPAddress {
|
|
1766
|
-
addressFamily:
|
|
1775
|
+
addressFamily: IpAddressAddressFamilyEnum;
|
|
1767
1776
|
/** @format int64 */
|
|
1768
1777
|
scopeId: number;
|
|
1769
1778
|
isIPv6Multicast: boolean;
|
|
@@ -2017,7 +2026,7 @@ export interface Loan {
|
|
|
2017
2026
|
userLoans: UserLoan[];
|
|
2018
2027
|
contacts: LoanContact[];
|
|
2019
2028
|
customFields: CustomFieldEntry[];
|
|
2020
|
-
signingMethod:
|
|
2029
|
+
signingMethod: LoanSigningMethodEnum;
|
|
2021
2030
|
}
|
|
2022
2031
|
export interface LoanApplication {
|
|
2023
2032
|
/** @format uuid */
|
|
@@ -2073,7 +2082,7 @@ export interface LoanBorrower {
|
|
|
2073
2082
|
citizenship?: LoanCitizenship | null;
|
|
2074
2083
|
maritalStatus?: LoanMaritalStatus | null;
|
|
2075
2084
|
languagePreference?: LoanLanguagePreference | null;
|
|
2076
|
-
applicationStatus:
|
|
2085
|
+
applicationStatus: LoanBorrowerApplicationStatusEnum;
|
|
2077
2086
|
/** @format int32 */
|
|
2078
2087
|
numberOfDependents?: number | null;
|
|
2079
2088
|
isPrimaryBorrower: boolean;
|
|
@@ -2930,7 +2939,7 @@ export interface LoanContact {
|
|
|
2930
2939
|
email?: string | null;
|
|
2931
2940
|
phone?: string | null;
|
|
2932
2941
|
companyName?: string | null;
|
|
2933
|
-
role:
|
|
2942
|
+
role: LoanContactRoleEnum;
|
|
2934
2943
|
}
|
|
2935
2944
|
export interface LoanContactList {
|
|
2936
2945
|
email: string;
|
|
@@ -2958,6 +2967,39 @@ export interface LoanDocument {
|
|
|
2958
2967
|
/** @format date-time */
|
|
2959
2968
|
sensitiveDataPurgedOn?: string | null;
|
|
2960
2969
|
}
|
|
2970
|
+
export interface LoanDocumentFolder {
|
|
2971
|
+
/** @format uuid */
|
|
2972
|
+
id: string;
|
|
2973
|
+
/** @format uuid */
|
|
2974
|
+
accountID: string;
|
|
2975
|
+
name: string;
|
|
2976
|
+
isSystemDefault: boolean;
|
|
2977
|
+
isActive: boolean;
|
|
2978
|
+
/** @format date-time */
|
|
2979
|
+
createdAt: string;
|
|
2980
|
+
/** @format date-time */
|
|
2981
|
+
updatedAt?: string | null;
|
|
2982
|
+
/** @format date-time */
|
|
2983
|
+
deletedAt?: string | null;
|
|
2984
|
+
permissions: LoanDocumentFolderPermission[];
|
|
2985
|
+
}
|
|
2986
|
+
export interface LoanDocumentFolderPermission {
|
|
2987
|
+
/** @format uuid */
|
|
2988
|
+
id: string;
|
|
2989
|
+
/** @format uuid */
|
|
2990
|
+
loanDocumentFolderID: string;
|
|
2991
|
+
role: LoanDocumentFolderPermissionRoleEnum;
|
|
2992
|
+
level: LoanDocumentFolderPermissionLevelEnum;
|
|
2993
|
+
}
|
|
2994
|
+
export interface LoanDocumentFolderPermissionRequest {
|
|
2995
|
+
role: LoanDocumentFolderPermissionRequestRoleEnum;
|
|
2996
|
+
level: LoanDocumentFolderPermissionRequestLevelEnum;
|
|
2997
|
+
}
|
|
2998
|
+
export interface LoanDocumentFolderUsage {
|
|
2999
|
+
/** @format uuid */
|
|
3000
|
+
folderID: string;
|
|
3001
|
+
hasEverBeenReferenced: boolean;
|
|
3002
|
+
}
|
|
2961
3003
|
export interface LoanDocumentPreviewsRequest {
|
|
2962
3004
|
documentIds: string[];
|
|
2963
3005
|
}
|
|
@@ -3059,13 +3101,13 @@ export interface LoanImport {
|
|
|
3059
3101
|
/** @format int32 */
|
|
3060
3102
|
importedCount: number;
|
|
3061
3103
|
statusMessage?: string | null;
|
|
3062
|
-
status:
|
|
3063
|
-
importMode:
|
|
3104
|
+
status: LoanImportStatusEnum;
|
|
3105
|
+
importMode: LoanImportImportModeEnum;
|
|
3064
3106
|
/** @format date-time */
|
|
3065
3107
|
createdAt?: string | null;
|
|
3066
3108
|
}
|
|
3067
3109
|
export interface LoanImportLog {
|
|
3068
|
-
level:
|
|
3110
|
+
level: LoanImportLogLevelEnum;
|
|
3069
3111
|
message: string;
|
|
3070
3112
|
/** @format date-time */
|
|
3071
3113
|
createdAt: string;
|
|
@@ -3120,8 +3162,8 @@ export interface LoanListPaginated {
|
|
|
3120
3162
|
export interface LoanLog {
|
|
3121
3163
|
/** @format uuid */
|
|
3122
3164
|
id: string;
|
|
3123
|
-
level:
|
|
3124
|
-
type:
|
|
3165
|
+
level: LoanLogLevelEnum;
|
|
3166
|
+
type: LoanLogTypeEnum;
|
|
3125
3167
|
message: string;
|
|
3126
3168
|
/** @format date-time */
|
|
3127
3169
|
createdAt: string;
|
|
@@ -3129,8 +3171,8 @@ export interface LoanLog {
|
|
|
3129
3171
|
export interface LoanLogDetail {
|
|
3130
3172
|
/** @format uuid */
|
|
3131
3173
|
id: string;
|
|
3132
|
-
level:
|
|
3133
|
-
type:
|
|
3174
|
+
level: LoanLogDetailLevelEnum;
|
|
3175
|
+
type: LoanLogDetailTypeEnum;
|
|
3134
3176
|
message: string;
|
|
3135
3177
|
/** @format date-time */
|
|
3136
3178
|
createdAt: string;
|
|
@@ -3396,7 +3438,7 @@ export interface LoanTaskSearchRequest {
|
|
|
3396
3438
|
loanStatus?: LoanTaskActivityFilter | null;
|
|
3397
3439
|
}
|
|
3398
3440
|
export interface LoanTaskStatusSummary {
|
|
3399
|
-
status:
|
|
3441
|
+
status: LoanTaskStatusSummaryStatusEnum;
|
|
3400
3442
|
/** @format int32 */
|
|
3401
3443
|
count: number;
|
|
3402
3444
|
}
|
|
@@ -3408,7 +3450,7 @@ export interface LoanUser {
|
|
|
3408
3450
|
email: string;
|
|
3409
3451
|
phone?: string | null;
|
|
3410
3452
|
role: string;
|
|
3411
|
-
loanRole:
|
|
3453
|
+
loanRole: LoanUserLoanRoleEnum;
|
|
3412
3454
|
isUser: boolean;
|
|
3413
3455
|
/** @format date-time */
|
|
3414
3456
|
createdAt: string;
|
|
@@ -3441,7 +3483,7 @@ export interface LosOperationTracking {
|
|
|
3441
3483
|
operationType: string;
|
|
3442
3484
|
correlationKey: string;
|
|
3443
3485
|
lastTriggerSource?: string | null;
|
|
3444
|
-
status:
|
|
3486
|
+
status: LosOperationTrackingStatusEnum;
|
|
3445
3487
|
/** @format date-time */
|
|
3446
3488
|
createdAt: string;
|
|
3447
3489
|
/** @format date-time */
|
|
@@ -3468,6 +3510,7 @@ export interface LosSync {
|
|
|
3468
3510
|
/** @format uuid */
|
|
3469
3511
|
loanId?: string | null;
|
|
3470
3512
|
direction: string;
|
|
3513
|
+
eventType?: string | null;
|
|
3471
3514
|
currentState: string;
|
|
3472
3515
|
encompassLoanId?: string | null;
|
|
3473
3516
|
encompassLoanNumber?: string | null;
|
|
@@ -3498,12 +3541,13 @@ export interface LosSyncSearchCriteria {
|
|
|
3498
3541
|
dateTo?: string | null;
|
|
3499
3542
|
}
|
|
3500
3543
|
export interface LosSyncStep {
|
|
3501
|
-
name: string;
|
|
3502
|
-
completed: boolean;
|
|
3503
|
-
/** @format date-time */
|
|
3504
|
-
completedAtUtc?: string | null;
|
|
3505
3544
|
/** @format int32 */
|
|
3506
3545
|
order: number;
|
|
3546
|
+
name: string;
|
|
3547
|
+
severity: LosSyncStepSeverityEnum;
|
|
3548
|
+
message: string;
|
|
3549
|
+
/** @format date-time */
|
|
3550
|
+
atUtc: string;
|
|
3507
3551
|
}
|
|
3508
3552
|
export interface LosWebhook {
|
|
3509
3553
|
/** @format uuid */
|
|
@@ -4124,7 +4168,7 @@ export interface SSOTokenRequest {
|
|
|
4124
4168
|
redirectUri: string;
|
|
4125
4169
|
}
|
|
4126
4170
|
export interface SamlMetadataRequest {
|
|
4127
|
-
ssoIntegration:
|
|
4171
|
+
ssoIntegration: SamlMetadataRequestSsoIntegrationEnum;
|
|
4128
4172
|
}
|
|
4129
4173
|
export interface SendForgotPasswordRequest {
|
|
4130
4174
|
/**
|
|
@@ -4175,7 +4219,7 @@ export interface SiteConfiguration {
|
|
|
4175
4219
|
deletedAt?: string | null;
|
|
4176
4220
|
/** @format uuid */
|
|
4177
4221
|
id: string;
|
|
4178
|
-
type:
|
|
4222
|
+
type: SiteConfigurationTypeEnum;
|
|
4179
4223
|
/** @format uuid */
|
|
4180
4224
|
entityID: string;
|
|
4181
4225
|
/** @format int32 */
|
|
@@ -4369,7 +4413,7 @@ export interface SiteConfigurationByUrl {
|
|
|
4369
4413
|
deletedAt?: string | null;
|
|
4370
4414
|
/** @format uuid */
|
|
4371
4415
|
id: string;
|
|
4372
|
-
type:
|
|
4416
|
+
type: SiteConfigurationByUrlTypeEnum;
|
|
4373
4417
|
/** @format uuid */
|
|
4374
4418
|
entityID: string;
|
|
4375
4419
|
/** @format int32 */
|
|
@@ -4580,7 +4624,7 @@ export interface SiteConfigurationForm {
|
|
|
4580
4624
|
export interface SiteConfigurationReduced {
|
|
4581
4625
|
/** @format uuid */
|
|
4582
4626
|
id: string;
|
|
4583
|
-
type:
|
|
4627
|
+
type: SiteConfigurationReducedTypeEnum;
|
|
4584
4628
|
url?: string | null;
|
|
4585
4629
|
name: string;
|
|
4586
4630
|
/** @format int64 */
|
|
@@ -4597,7 +4641,7 @@ export interface SiteConfigurationRequest {
|
|
|
4597
4641
|
entityID: string;
|
|
4598
4642
|
/** @format int32 */
|
|
4599
4643
|
entityType: number;
|
|
4600
|
-
type:
|
|
4644
|
+
type: SiteConfigurationRequestTypeEnum;
|
|
4601
4645
|
url: string;
|
|
4602
4646
|
name: string;
|
|
4603
4647
|
introduction?: string | null;
|
|
@@ -4772,7 +4816,7 @@ export interface SiteConfigurationSearchCriteria {
|
|
|
4772
4816
|
export interface SiteConfigurationSummary {
|
|
4773
4817
|
/** @format uuid */
|
|
4774
4818
|
id: string;
|
|
4775
|
-
type:
|
|
4819
|
+
type: SiteConfigurationSummaryTypeEnum;
|
|
4776
4820
|
url?: string | null;
|
|
4777
4821
|
name: string;
|
|
4778
4822
|
/** @format int64 */
|
|
@@ -5118,6 +5162,14 @@ export interface UpdateListingPhotoRequest {
|
|
|
5118
5162
|
/** @format int32 */
|
|
5119
5163
|
weight: number;
|
|
5120
5164
|
}
|
|
5165
|
+
export interface UpdateLoanDocumentFolderRequest {
|
|
5166
|
+
/**
|
|
5167
|
+
* @minLength 1
|
|
5168
|
+
* @maxLength 250
|
|
5169
|
+
*/
|
|
5170
|
+
name: string;
|
|
5171
|
+
permissions: LoanDocumentFolderPermissionRequest[];
|
|
5172
|
+
}
|
|
5121
5173
|
export interface UpdateLoanQueueRequest {
|
|
5122
5174
|
data: any;
|
|
5123
5175
|
}
|
|
@@ -5380,7 +5432,7 @@ export interface UserDevice {
|
|
|
5380
5432
|
export interface UserDraft {
|
|
5381
5433
|
/** @format uuid */
|
|
5382
5434
|
draftID: string;
|
|
5383
|
-
role:
|
|
5435
|
+
role: UserDraftRoleEnum;
|
|
5384
5436
|
user: User;
|
|
5385
5437
|
}
|
|
5386
5438
|
export interface UserDraftPaginated {
|
|
@@ -5404,7 +5456,7 @@ export interface UserGroupAccessScope {
|
|
|
5404
5456
|
id: string;
|
|
5405
5457
|
/** @format uuid */
|
|
5406
5458
|
groupId: string;
|
|
5407
|
-
scopeType:
|
|
5459
|
+
scopeType: UserGroupAccessScopeScopeTypeEnum;
|
|
5408
5460
|
/** @format uuid */
|
|
5409
5461
|
userId?: string | null;
|
|
5410
5462
|
/** @format uuid */
|
|
@@ -5437,24 +5489,29 @@ export interface UserLoan {
|
|
|
5437
5489
|
deletedAt?: string | null;
|
|
5438
5490
|
loanID: string;
|
|
5439
5491
|
user: User;
|
|
5440
|
-
role:
|
|
5492
|
+
role: UserLoanRoleEnum;
|
|
5441
5493
|
/** @format int32 */
|
|
5442
5494
|
borrowerPair?: number | null;
|
|
5443
5495
|
/** @format int32 */
|
|
5444
5496
|
borrowerPosition?: number | null;
|
|
5445
5497
|
customLoanData?: CustomLoanData | null;
|
|
5498
|
+
consents: UserLoanConsent[];
|
|
5446
5499
|
}
|
|
5447
5500
|
export interface UserLoanConsent {
|
|
5448
5501
|
/** @format uuid */
|
|
5449
5502
|
id: string;
|
|
5450
5503
|
/** @format uuid */
|
|
5451
5504
|
userLoanID: string;
|
|
5452
|
-
type:
|
|
5505
|
+
type: UserLoanConsentTypeEnum;
|
|
5453
5506
|
providedConsent: boolean;
|
|
5454
5507
|
ipAddress?: string | null;
|
|
5455
|
-
losSyncStatus:
|
|
5508
|
+
losSyncStatus: UserLoanConsentLosSyncStatusEnum;
|
|
5456
5509
|
/** @format date-time */
|
|
5457
5510
|
createdAt: string;
|
|
5511
|
+
/** @format date-time */
|
|
5512
|
+
updatedAt?: string | null;
|
|
5513
|
+
/** @format date-time */
|
|
5514
|
+
deletedAt?: string | null;
|
|
5458
5515
|
}
|
|
5459
5516
|
export interface UserLoanTask {
|
|
5460
5517
|
/** @format uuid */
|
|
@@ -5589,7 +5646,7 @@ export interface UserSummary {
|
|
|
5589
5646
|
id: string;
|
|
5590
5647
|
name?: string | null;
|
|
5591
5648
|
email?: string | null;
|
|
5592
|
-
role:
|
|
5649
|
+
role: UserSummaryRoleEnum;
|
|
5593
5650
|
}
|
|
5594
5651
|
export interface VerifyPasswordRequest {
|
|
5595
5652
|
/**
|
|
@@ -5622,6 +5679,70 @@ export interface Workflow {
|
|
|
5622
5679
|
tileSubtitle: string;
|
|
5623
5680
|
icon: string;
|
|
5624
5681
|
}
|
|
5682
|
+
export type AccountBillingRequestBillingTypeEnum = "ClosedLoan" | "LoanOfficer";
|
|
5683
|
+
export type AuditLogEntryChangeTypeEnum = "Created" | "Modified" | "SoftDeleted" | "HardDeleted" | "Restored";
|
|
5684
|
+
export type CreateAccessScopeRequestScopeTypeEnum = "User" | "Branch";
|
|
5685
|
+
export type CreateAccountRequestEnvironmentEnum = "Development" | "Staging" | "UAT" | "Production";
|
|
5686
|
+
export type CreateCustomFieldDefinitionRequestDataTypeEnum = "String" | "Number" | "Decimal" | "Boolean" | "Date" | "SingleSelect" | "MultiSelect";
|
|
5687
|
+
export type CreateCustomFieldDefinitionRequestEntityTypeEnum = "Loan";
|
|
5688
|
+
export type CreateGroupMemberRequestLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5689
|
+
/** @deprecated */
|
|
5690
|
+
export type CreateInviteRequestRelationshipEnum = "NotApplicable" | "Spouse" | "NonSpouse";
|
|
5691
|
+
export type CreateLoanImportRequestImportModeEnum = "All" | "NewOnly" | "UpdateOnly";
|
|
5692
|
+
export type CreateUserDraftLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5693
|
+
export type CustomFieldDefinitionDataTypeEnum = "String" | "Number" | "Decimal" | "Boolean" | "Date" | "SingleSelect" | "MultiSelect";
|
|
5694
|
+
export type CustomFieldDefinitionEntityTypeEnum = "Loan";
|
|
5695
|
+
export type CustomFieldEntryDataTypeEnum = "String" | "Number" | "Decimal" | "Boolean" | "Date" | "SingleSelect" | "MultiSelect";
|
|
5696
|
+
export type CustomFieldPermissionRoleEnum = "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
|
|
5697
|
+
export type CustomFieldPermissionAccessLevelEnum = "NoAccess" | "ReadOnly" | "ReadWrite";
|
|
5698
|
+
export type CustomFieldPermissionRequestRoleEnum = "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
|
|
5699
|
+
export type CustomFieldPermissionRequestAccessLevelEnum = "NoAccess" | "ReadOnly" | "ReadWrite";
|
|
5700
|
+
export type CustomFieldValueDataTypeEnum = "String" | "Number" | "Decimal" | "Boolean" | "Date" | "SingleSelect" | "MultiSelect";
|
|
5701
|
+
export type DraftTypeEnum = "NewLoan" | "EditLoan";
|
|
5702
|
+
export type DraftContentTypeEnum = "NewLoan" | "EditLoan";
|
|
5703
|
+
export type EncompassCredentialsDetailSigningMethodEnum = "ConsumerConnect" | "POSF";
|
|
5704
|
+
export type EncompassCredentialsRequestSigningMethodEnum = "ConsumerConnect" | "POSF";
|
|
5705
|
+
export type EncompassRequestLogOperationTypeEnum = "FieldUpdate" | "ConsentUpdate" | "DocumentSync" | "MilestoneUpdate" | "DocumentAttachment" | "General" | "FieldReader";
|
|
5706
|
+
export type EncompassRequestLogOutcomeEnum = "Success" | "Failure" | "PartialSuccess";
|
|
5707
|
+
export type FusionReportFilterFilterTypeEnum = "DateGreaterThanOrEqualTo" | "DateGreaterThan" | "DateLessThan" | "DateLessThanOrEqualTo" | "DateEquals" | "DateDoesntEqual" | "DateNonEmpty" | "DateEmpty" | "StringContains" | "StringEquals" | "StringNotEmpty" | "StringNotEquals" | "StringNotContains";
|
|
5708
|
+
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";
|
|
5709
|
+
export type LoanSigningMethodEnum = "ConsumerConnect" | "POSF";
|
|
5710
|
+
export type LoanBorrowerApplicationStatusEnum = "Draft" | "Complete";
|
|
5711
|
+
export type LoanContactRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5712
|
+
export type LoanDocumentFolderPermissionRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5713
|
+
export type LoanDocumentFolderPermissionLevelEnum = "None" | "Read" | "Write" | "Manage";
|
|
5714
|
+
export type LoanDocumentFolderPermissionRequestRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5715
|
+
export type LoanDocumentFolderPermissionRequestLevelEnum = "None" | "Read" | "Write" | "Manage";
|
|
5716
|
+
export type LoanImportStatusEnum = "WaitingProcess" | "InProgress" | "Completed" | "Failed" | "Cancelled";
|
|
5717
|
+
export type LoanImportImportModeEnum = "All" | "NewOnly" | "UpdateOnly";
|
|
5718
|
+
export type LoanImportLogLevelEnum = "None" | "Info" | "Warning" | "Error";
|
|
5719
|
+
export type LoanLogLevelEnum = "None" | "Info" | "Warning" | "Error";
|
|
5720
|
+
export type LoanLogTypeEnum = "Loan" | "Queue" | "POSFlagChanged" | "Verification" | "DocumentUploaded" | "LoanCreated" | "WorkflowSubmitted" | "UserInvitationSent" | "CoBorrowerAdded" | "TaskCompleted" | "LoanStatusChanged" | "Consent" | "SensitiveDataPurge" | "ClosingDateUpdated" | "ConsumerConnectAssociation" | "TaskReminderSent";
|
|
5721
|
+
export type LoanLogDetailLevelEnum = "None" | "Info" | "Warning" | "Error";
|
|
5722
|
+
export type LoanLogDetailTypeEnum = "Loan" | "Queue" | "POSFlagChanged" | "Verification" | "DocumentUploaded" | "LoanCreated" | "WorkflowSubmitted" | "UserInvitationSent" | "CoBorrowerAdded" | "TaskCompleted" | "LoanStatusChanged" | "Consent" | "SensitiveDataPurge" | "ClosingDateUpdated" | "ConsumerConnectAssociation" | "TaskReminderSent";
|
|
5723
|
+
export type LoanTaskStatusSummaryStatusEnum = "Outstanding" | "Pending" | "Completed" | "Rejected" | "Unknown";
|
|
5724
|
+
export type LoanUserLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5725
|
+
export type LosOperationTrackingStatusEnum = "Pending" | "Success" | "Failed" | "ConfigurationError" | "PermanentFailure" | "Locked";
|
|
5726
|
+
export type LosSyncStepSeverityEnum = "Success" | "Info" | "Warning" | "Error";
|
|
5727
|
+
export type SamlMetadataRequestSsoIntegrationEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
5728
|
+
export type SiteConfigurationTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5729
|
+
export type SiteConfigurationByUrlTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5730
|
+
export type SiteConfigurationReducedTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5731
|
+
export type SiteConfigurationRequestTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5732
|
+
export type SiteConfigurationSummaryTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5733
|
+
export type UserDraftRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5734
|
+
export type UserGroupAccessScopeScopeTypeEnum = "User" | "Branch";
|
|
5735
|
+
export type UserLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5736
|
+
export type UserLoanConsentTypeEnum = "Econsent" | "CreditAuthorization" | "Tcpa";
|
|
5737
|
+
export type UserLoanConsentLosSyncStatusEnum = "NotStarted" | "Failed" | "Success";
|
|
5738
|
+
export type UserSummaryRoleEnum = "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
|
|
5739
|
+
export type GetCustomFieldDefinitionsParamsEntityTypeEnum = "Loan";
|
|
5740
|
+
/** @default "Realtor" */
|
|
5741
|
+
export type GetPartnersParamsRoleEnum = "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
|
|
5742
|
+
export type GetSamlMetadataParamsSSoIntegrationEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
5743
|
+
export type GetSamlMetadataParamsEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
5744
|
+
export type CreateOrReplaceSamlMetadataParamsSSoIntegrationEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
5745
|
+
export type CreateOrReplaceSamlMetadataParamsEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
5625
5746
|
import type { AxiosInstance, AxiosRequestConfig, AxiosResponse, ResponseType } from "axios";
|
|
5626
5747
|
export type QueryParamsType = Record<string | number, any>;
|
|
5627
5748
|
export interface FullRequestParams extends Omit<AxiosRequestConfig, "data" | "params" | "url" | "responseType"> {
|
|
@@ -5667,7 +5788,7 @@ export declare class HttpClient<SecurityDataType = unknown> {
|
|
|
5667
5788
|
}
|
|
5668
5789
|
/**
|
|
5669
5790
|
* @title The Big POS API
|
|
5670
|
-
* @version v2.
|
|
5791
|
+
* @version v2.40.0
|
|
5671
5792
|
* @termsOfService https://www.thebigpos.com/terms-of-use/
|
|
5672
5793
|
* @contact Mortgage Automation Technologies <support@thebigpos.com> (https://www.thebigpos.com/terms-of-use/)
|
|
5673
5794
|
*/
|
|
@@ -5681,7 +5802,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5681
5802
|
* @secure
|
|
5682
5803
|
* @response `200` `void` Success
|
|
5683
5804
|
*/
|
|
5684
|
-
postRoot: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
5805
|
+
postRoot: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
5685
5806
|
/**
|
|
5686
5807
|
* No description
|
|
5687
5808
|
*
|
|
@@ -5691,7 +5812,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5691
5812
|
* @secure
|
|
5692
5813
|
* @response `200` `string` Success
|
|
5693
5814
|
*/
|
|
5694
|
-
getRoot: (params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
5815
|
+
getRoot: (params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
5695
5816
|
api: {
|
|
5696
5817
|
/**
|
|
5697
5818
|
* No description
|
|
@@ -5704,7 +5825,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5704
5825
|
* @response `200` `Account` Success
|
|
5705
5826
|
* @response `404` `ProblemDetails` Not Found
|
|
5706
5827
|
*/
|
|
5707
|
-
getMyAccount: (params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
|
|
5828
|
+
getMyAccount: (params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
|
|
5708
5829
|
/**
|
|
5709
5830
|
* No description
|
|
5710
5831
|
*
|
|
@@ -5717,7 +5838,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5717
5838
|
* @response `404` `ProblemDetails` Not Found
|
|
5718
5839
|
* @response `422` `ProblemDetails` Client Error
|
|
5719
5840
|
*/
|
|
5720
|
-
replaceMyAccount: (data: UpdateAccountRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
|
|
5841
|
+
replaceMyAccount: (data: UpdateAccountRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
|
|
5721
5842
|
/**
|
|
5722
5843
|
* No description
|
|
5723
5844
|
*
|
|
@@ -5728,7 +5849,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5728
5849
|
* @secure
|
|
5729
5850
|
* @response `200` `SiteConfiguration` Success
|
|
5730
5851
|
*/
|
|
5731
|
-
getSiteConfigurationByAccount: (params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
5852
|
+
getSiteConfigurationByAccount: (params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
5732
5853
|
/**
|
|
5733
5854
|
* No description
|
|
5734
5855
|
*
|
|
@@ -5740,7 +5861,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5740
5861
|
* @response `200` `SiteConfiguration` Success
|
|
5741
5862
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5742
5863
|
*/
|
|
5743
|
-
updateSiteConfigurationForAccount: (data: SiteConfiguration, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
5864
|
+
updateSiteConfigurationForAccount: (data: SiteConfiguration, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
5744
5865
|
/**
|
|
5745
5866
|
* No description
|
|
5746
5867
|
*
|
|
@@ -5751,7 +5872,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5751
5872
|
* @secure
|
|
5752
5873
|
* @response `200` `(Account)[]` Success
|
|
5753
5874
|
*/
|
|
5754
|
-
getAccounts: (params?: RequestParams) => Promise<AxiosResponse<Account[], any>>;
|
|
5875
|
+
getAccounts: (params?: RequestParams) => Promise<AxiosResponse<Account[], any, {}>>;
|
|
5755
5876
|
/**
|
|
5756
5877
|
* No description
|
|
5757
5878
|
*
|
|
@@ -5763,7 +5884,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5763
5884
|
* @response `201` `Account` Created
|
|
5764
5885
|
* @response `422` `ProblemDetails` Client Error
|
|
5765
5886
|
*/
|
|
5766
|
-
createAccount: (data: CreateAccountRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
|
|
5887
|
+
createAccount: (data: CreateAccountRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
|
|
5767
5888
|
/**
|
|
5768
5889
|
* No description
|
|
5769
5890
|
*
|
|
@@ -5775,7 +5896,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5775
5896
|
* @response `201` `Account` Created
|
|
5776
5897
|
* @response `422` `ProblemDetails` Client Error
|
|
5777
5898
|
*/
|
|
5778
|
-
getAccount: (id: string, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
|
|
5899
|
+
getAccount: (id: string, params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
|
|
5779
5900
|
/**
|
|
5780
5901
|
* No description
|
|
5781
5902
|
*
|
|
@@ -5791,7 +5912,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5791
5912
|
deleteAccount: (id: string, query?: {
|
|
5792
5913
|
/** @default false */
|
|
5793
5914
|
hardDelete?: boolean;
|
|
5794
|
-
}, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
|
|
5915
|
+
}, params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
|
|
5795
5916
|
/**
|
|
5796
5917
|
* No description
|
|
5797
5918
|
*
|
|
@@ -5804,7 +5925,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5804
5925
|
* @response `404` `ProblemDetails` Not Found
|
|
5805
5926
|
* @response `422` `ProblemDetails` Client Error
|
|
5806
5927
|
*/
|
|
5807
|
-
updateAccountBilling: (id: string, data: AccountBillingRequest, params?: RequestParams) => Promise<AxiosResponse<AccountBilling, any>>;
|
|
5928
|
+
updateAccountBilling: (id: string, data: AccountBillingRequest, params?: RequestParams) => Promise<AxiosResponse<AccountBilling, any, {}>>;
|
|
5808
5929
|
/**
|
|
5809
5930
|
* No description
|
|
5810
5931
|
*
|
|
@@ -5822,7 +5943,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5822
5943
|
pageNumber?: number;
|
|
5823
5944
|
sortBy?: string;
|
|
5824
5945
|
sortDirection?: string;
|
|
5825
|
-
}, params?: RequestParams) => Promise<AxiosResponse<AuditLogEntryPaginated, any>>;
|
|
5946
|
+
}, params?: RequestParams) => Promise<AxiosResponse<AuditLogEntryPaginated, any, {}>>;
|
|
5826
5947
|
/**
|
|
5827
5948
|
* No description
|
|
5828
5949
|
*
|
|
@@ -5833,7 +5954,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5833
5954
|
* @secure
|
|
5834
5955
|
* @response `200` `(AuditEntityType)[]` Success
|
|
5835
5956
|
*/
|
|
5836
|
-
getAuditLogEntityTypes: (params?: RequestParams) => Promise<AxiosResponse<AuditEntityType[], any>>;
|
|
5957
|
+
getAuditLogEntityTypes: (params?: RequestParams) => Promise<AxiosResponse<AuditEntityType[], any, {}>>;
|
|
5837
5958
|
/**
|
|
5838
5959
|
* No description
|
|
5839
5960
|
*
|
|
@@ -5845,7 +5966,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5845
5966
|
* @response `200` `AuditLogEntry` Success
|
|
5846
5967
|
* @response `404` `ProblemDetails` Not Found
|
|
5847
5968
|
*/
|
|
5848
|
-
getAuditLogById: (id: string, params?: RequestParams) => Promise<AxiosResponse<AuditLogEntry, any>>;
|
|
5969
|
+
getAuditLogById: (id: string, params?: RequestParams) => Promise<AxiosResponse<AuditLogEntry, any, {}>>;
|
|
5849
5970
|
/**
|
|
5850
5971
|
* No description
|
|
5851
5972
|
*
|
|
@@ -5858,7 +5979,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5858
5979
|
* @response `401` `ProblemDetails` Unauthorized
|
|
5859
5980
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5860
5981
|
*/
|
|
5861
|
-
getTokenFromRefreshToken: (data: RefreshTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any>>;
|
|
5982
|
+
getTokenFromRefreshToken: (data: RefreshTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any, {}>>;
|
|
5862
5983
|
/**
|
|
5863
5984
|
* No description
|
|
5864
5985
|
*
|
|
@@ -5870,7 +5991,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5870
5991
|
* @response `200` `ForcePasswordReset` Success
|
|
5871
5992
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5872
5993
|
*/
|
|
5873
|
-
getToken: (data: TokenRequest, params?: RequestParams) => Promise<AxiosResponse<ForcePasswordReset, any>>;
|
|
5994
|
+
getToken: (data: TokenRequest, params?: RequestParams) => Promise<AxiosResponse<ForcePasswordReset, any, {}>>;
|
|
5874
5995
|
/**
|
|
5875
5996
|
* No description
|
|
5876
5997
|
*
|
|
@@ -5882,7 +6003,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5882
6003
|
* @response `200` `ForcePasswordReset` Success
|
|
5883
6004
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5884
6005
|
*/
|
|
5885
|
-
getTokenFromChallengeCode: (data: TokenChallengeRequest, params?: RequestParams) => Promise<AxiosResponse<ForcePasswordReset, any>>;
|
|
6006
|
+
getTokenFromChallengeCode: (data: TokenChallengeRequest, params?: RequestParams) => Promise<AxiosResponse<ForcePasswordReset, any, {}>>;
|
|
5886
6007
|
/**
|
|
5887
6008
|
* No description
|
|
5888
6009
|
*
|
|
@@ -5894,7 +6015,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5894
6015
|
* @response `200` `Token` Success
|
|
5895
6016
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5896
6017
|
*/
|
|
5897
|
-
getSystemToken: (data: SystemTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any>>;
|
|
6018
|
+
getSystemToken: (data: SystemTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any, {}>>;
|
|
5898
6019
|
/**
|
|
5899
6020
|
* No description
|
|
5900
6021
|
*
|
|
@@ -5906,7 +6027,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5906
6027
|
* @response `200` `SSOToken` Success
|
|
5907
6028
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5908
6029
|
*/
|
|
5909
|
-
getSsoToken: (data: SSOTokenRequest, params?: RequestParams) => Promise<AxiosResponse<SSOToken, any>>;
|
|
6030
|
+
getSsoToken: (data: SSOTokenRequest, params?: RequestParams) => Promise<AxiosResponse<SSOToken, any, {}>>;
|
|
5910
6031
|
/**
|
|
5911
6032
|
* No description
|
|
5912
6033
|
*
|
|
@@ -5918,7 +6039,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5918
6039
|
* @response `204` `NoContentResult` No Content
|
|
5919
6040
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5920
6041
|
*/
|
|
5921
|
-
logOut: (params?: RequestParams) => Promise<AxiosResponse<NoContentResult, any>>;
|
|
6042
|
+
logOut: (params?: RequestParams) => Promise<AxiosResponse<NoContentResult, any, {}>>;
|
|
5922
6043
|
/**
|
|
5923
6044
|
* No description
|
|
5924
6045
|
*
|
|
@@ -5937,7 +6058,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5937
6058
|
pageNumber?: number;
|
|
5938
6059
|
sortBy?: string;
|
|
5939
6060
|
sortDirection?: string;
|
|
5940
|
-
}, params?: RequestParams) => Promise<AxiosResponse<GetBranchPaginated, any>>;
|
|
6061
|
+
}, params?: RequestParams) => Promise<AxiosResponse<GetBranchPaginated, any, {}>>;
|
|
5941
6062
|
/**
|
|
5942
6063
|
* No description
|
|
5943
6064
|
*
|
|
@@ -5949,7 +6070,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5949
6070
|
* @response `200` `GetBranch` Success
|
|
5950
6071
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5951
6072
|
*/
|
|
5952
|
-
createBranch: (data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any>>;
|
|
6073
|
+
createBranch: (data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any, {}>>;
|
|
5953
6074
|
/**
|
|
5954
6075
|
* No description
|
|
5955
6076
|
*
|
|
@@ -5967,7 +6088,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5967
6088
|
pageNumber?: number;
|
|
5968
6089
|
sortBy?: string;
|
|
5969
6090
|
sortDirection?: string;
|
|
5970
|
-
}, params?: RequestParams) => Promise<AxiosResponse<GetBranchPaginated, any>>;
|
|
6091
|
+
}, params?: RequestParams) => Promise<AxiosResponse<GetBranchPaginated, any, {}>>;
|
|
5971
6092
|
/**
|
|
5972
6093
|
* No description
|
|
5973
6094
|
*
|
|
@@ -5978,7 +6099,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5978
6099
|
* @secure
|
|
5979
6100
|
* @response `200` `GetBranch` Success
|
|
5980
6101
|
*/
|
|
5981
|
-
getBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any>>;
|
|
6102
|
+
getBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any, {}>>;
|
|
5982
6103
|
/**
|
|
5983
6104
|
* No description
|
|
5984
6105
|
*
|
|
@@ -5990,7 +6111,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5990
6111
|
* @response `200` `GetBranch` Success
|
|
5991
6112
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5992
6113
|
*/
|
|
5993
|
-
replaceBranch: (branchId: string, data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any>>;
|
|
6114
|
+
replaceBranch: (branchId: string, data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any, {}>>;
|
|
5994
6115
|
/**
|
|
5995
6116
|
* No description
|
|
5996
6117
|
*
|
|
@@ -6001,7 +6122,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6001
6122
|
* @secure
|
|
6002
6123
|
* @response `204` `void` No Content
|
|
6003
6124
|
*/
|
|
6004
|
-
deleteBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6125
|
+
deleteBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6005
6126
|
/**
|
|
6006
6127
|
* No description
|
|
6007
6128
|
*
|
|
@@ -6013,7 +6134,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6013
6134
|
* @response `204` `void` No Content
|
|
6014
6135
|
* @response `400` `ProblemDetails` Bad Request
|
|
6015
6136
|
*/
|
|
6016
|
-
restoreBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6137
|
+
restoreBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6017
6138
|
/**
|
|
6018
6139
|
* No description
|
|
6019
6140
|
*
|
|
@@ -6025,7 +6146,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6025
6146
|
* @response `200` `SiteConfiguration` Success
|
|
6026
6147
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6027
6148
|
*/
|
|
6028
|
-
createBranchSiteConfiguration: (branchId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
6149
|
+
createBranchSiteConfiguration: (branchId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
6029
6150
|
/**
|
|
6030
6151
|
* No description
|
|
6031
6152
|
*
|
|
@@ -6036,7 +6157,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6036
6157
|
* @secure
|
|
6037
6158
|
* @response `200` `SiteConfigurationWithInherited` Success
|
|
6038
6159
|
*/
|
|
6039
|
-
getBranchSiteConfiguration: (branchId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
|
|
6160
|
+
getBranchSiteConfiguration: (branchId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any, {}>>;
|
|
6040
6161
|
/**
|
|
6041
6162
|
* No description
|
|
6042
6163
|
*
|
|
@@ -6050,7 +6171,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6050
6171
|
*/
|
|
6051
6172
|
replaceBranchSiteConfiguration: (branchId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
|
|
6052
6173
|
applyToChildren?: boolean;
|
|
6053
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
6174
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
6054
6175
|
/**
|
|
6055
6176
|
* No description
|
|
6056
6177
|
*
|
|
@@ -6061,7 +6182,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6061
6182
|
* @secure
|
|
6062
6183
|
* @response `200` `(LoanOfficerPublic)[]` Success
|
|
6063
6184
|
*/
|
|
6064
|
-
getLoanOfficersByBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic[], any>>;
|
|
6185
|
+
getLoanOfficersByBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic[], any, {}>>;
|
|
6065
6186
|
/**
|
|
6066
6187
|
* No description
|
|
6067
6188
|
*
|
|
@@ -6074,7 +6195,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6074
6195
|
*/
|
|
6075
6196
|
getBusinessRules: (query?: {
|
|
6076
6197
|
showAll?: boolean;
|
|
6077
|
-
}, params?: RequestParams) => Promise<AxiosResponse<BusinessRule[], any>>;
|
|
6198
|
+
}, params?: RequestParams) => Promise<AxiosResponse<BusinessRule[], any, {}>>;
|
|
6078
6199
|
/**
|
|
6079
6200
|
* No description
|
|
6080
6201
|
*
|
|
@@ -6086,7 +6207,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6086
6207
|
* @response `200` `BusinessRule` Success
|
|
6087
6208
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6088
6209
|
*/
|
|
6089
|
-
createBusinessRule: (data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
|
|
6210
|
+
createBusinessRule: (data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any, {}>>;
|
|
6090
6211
|
/**
|
|
6091
6212
|
* No description
|
|
6092
6213
|
*
|
|
@@ -6097,7 +6218,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6097
6218
|
* @secure
|
|
6098
6219
|
* @response `200` `BusinessRule` Success
|
|
6099
6220
|
*/
|
|
6100
|
-
getBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
|
|
6221
|
+
getBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any, {}>>;
|
|
6101
6222
|
/**
|
|
6102
6223
|
* No description
|
|
6103
6224
|
*
|
|
@@ -6109,7 +6230,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6109
6230
|
* @response `200` `BusinessRule` Success
|
|
6110
6231
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6111
6232
|
*/
|
|
6112
|
-
replaceBusinessRule: (id: string, data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
|
|
6233
|
+
replaceBusinessRule: (id: string, data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any, {}>>;
|
|
6113
6234
|
/**
|
|
6114
6235
|
* No description
|
|
6115
6236
|
*
|
|
@@ -6120,7 +6241,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6120
6241
|
* @secure
|
|
6121
6242
|
* @response `204` `void` No Content
|
|
6122
6243
|
*/
|
|
6123
|
-
deleteBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6244
|
+
deleteBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6124
6245
|
/**
|
|
6125
6246
|
* No description
|
|
6126
6247
|
*
|
|
@@ -6131,7 +6252,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6131
6252
|
* @secure
|
|
6132
6253
|
* @response `200` `BusinessRule` Success
|
|
6133
6254
|
*/
|
|
6134
|
-
restoreBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
|
|
6255
|
+
restoreBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any, {}>>;
|
|
6135
6256
|
/**
|
|
6136
6257
|
* @description Returns closed loan counts per account within the specified date range, including POS vs non-POS breakdown and utilization ratios.
|
|
6137
6258
|
*
|
|
@@ -6142,7 +6263,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6142
6263
|
* @secure
|
|
6143
6264
|
* @response `200` `ClosedLoansReport` Success
|
|
6144
6265
|
*/
|
|
6145
|
-
getClosedLoansReport: (data: ClosedLoansReportRequest, params?: RequestParams) => Promise<AxiosResponse<ClosedLoansReport, any>>;
|
|
6266
|
+
getClosedLoansReport: (data: ClosedLoansReportRequest, params?: RequestParams) => Promise<AxiosResponse<ClosedLoansReport, any, {}>>;
|
|
6146
6267
|
/**
|
|
6147
6268
|
* No description
|
|
6148
6269
|
*
|
|
@@ -6153,7 +6274,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6153
6274
|
* @secure
|
|
6154
6275
|
* @response `200` `(ConsumerConnectStatus)[]` Success
|
|
6155
6276
|
*/
|
|
6156
|
-
getConsumerConnectStatus: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<ConsumerConnectStatus[], any>>;
|
|
6277
|
+
getConsumerConnectStatus: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<ConsumerConnectStatus[], any, {}>>;
|
|
6157
6278
|
/**
|
|
6158
6279
|
* No description
|
|
6159
6280
|
*
|
|
@@ -6164,7 +6285,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6164
6285
|
* @secure
|
|
6165
6286
|
* @response `200` `(ConsumerConnectRetry)[]` Success
|
|
6166
6287
|
*/
|
|
6167
|
-
retryConsumerConnectAssociation: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<ConsumerConnectRetry[], any>>;
|
|
6288
|
+
retryConsumerConnectAssociation: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<ConsumerConnectRetry[], any, {}>>;
|
|
6168
6289
|
/**
|
|
6169
6290
|
* No description
|
|
6170
6291
|
*
|
|
@@ -6183,7 +6304,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6183
6304
|
pageNumber?: number;
|
|
6184
6305
|
sortBy?: string;
|
|
6185
6306
|
sortDirection?: string;
|
|
6186
|
-
}, params?: RequestParams) => Promise<AxiosResponse<CorporatePaginated, any>>;
|
|
6307
|
+
}, params?: RequestParams) => Promise<AxiosResponse<CorporatePaginated, any, {}>>;
|
|
6187
6308
|
/**
|
|
6188
6309
|
* No description
|
|
6189
6310
|
*
|
|
@@ -6195,7 +6316,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6195
6316
|
* @response `200` `Corporate` Success
|
|
6196
6317
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6197
6318
|
*/
|
|
6198
|
-
createCorporate: (data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any>>;
|
|
6319
|
+
createCorporate: (data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any, {}>>;
|
|
6199
6320
|
/**
|
|
6200
6321
|
* No description
|
|
6201
6322
|
*
|
|
@@ -6213,7 +6334,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6213
6334
|
pageNumber?: number;
|
|
6214
6335
|
sortBy?: string;
|
|
6215
6336
|
sortDirection?: string;
|
|
6216
|
-
}, params?: RequestParams) => Promise<AxiosResponse<CorporatePaginated, any>>;
|
|
6337
|
+
}, params?: RequestParams) => Promise<AxiosResponse<CorporatePaginated, any, {}>>;
|
|
6217
6338
|
/**
|
|
6218
6339
|
* No description
|
|
6219
6340
|
*
|
|
@@ -6224,7 +6345,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6224
6345
|
* @secure
|
|
6225
6346
|
* @response `200` `Corporate` Success
|
|
6226
6347
|
*/
|
|
6227
|
-
getCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<Corporate, any>>;
|
|
6348
|
+
getCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<Corporate, any, {}>>;
|
|
6228
6349
|
/**
|
|
6229
6350
|
* No description
|
|
6230
6351
|
*
|
|
@@ -6236,7 +6357,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6236
6357
|
* @response `200` `Corporate` Success
|
|
6237
6358
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6238
6359
|
*/
|
|
6239
|
-
replaceCorporate: (id: string, data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any>>;
|
|
6360
|
+
replaceCorporate: (id: string, data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any, {}>>;
|
|
6240
6361
|
/**
|
|
6241
6362
|
* No description
|
|
6242
6363
|
*
|
|
@@ -6247,7 +6368,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6247
6368
|
* @secure
|
|
6248
6369
|
* @response `204` `void` No Content
|
|
6249
6370
|
*/
|
|
6250
|
-
deleteCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6371
|
+
deleteCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6251
6372
|
/**
|
|
6252
6373
|
* No description
|
|
6253
6374
|
*
|
|
@@ -6258,7 +6379,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6258
6379
|
* @secure
|
|
6259
6380
|
* @response `204` `void` No Content
|
|
6260
6381
|
*/
|
|
6261
|
-
restoreCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6382
|
+
restoreCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6262
6383
|
/**
|
|
6263
6384
|
* No description
|
|
6264
6385
|
*
|
|
@@ -6270,7 +6391,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6270
6391
|
* @response `200` `SiteConfiguration` Success
|
|
6271
6392
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6272
6393
|
*/
|
|
6273
|
-
createCorporateSiteConfiguration: (corporateId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
6394
|
+
createCorporateSiteConfiguration: (corporateId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
6274
6395
|
/**
|
|
6275
6396
|
* No description
|
|
6276
6397
|
*
|
|
@@ -6281,7 +6402,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6281
6402
|
* @secure
|
|
6282
6403
|
* @response `200` `SiteConfigurationWithInherited` Success
|
|
6283
6404
|
*/
|
|
6284
|
-
getCorporateSiteConfiguration: (corporateId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
|
|
6405
|
+
getCorporateSiteConfiguration: (corporateId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any, {}>>;
|
|
6285
6406
|
/**
|
|
6286
6407
|
* No description
|
|
6287
6408
|
*
|
|
@@ -6295,7 +6416,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6295
6416
|
*/
|
|
6296
6417
|
replaceCorporateSiteConfiguration: (corporateId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
|
|
6297
6418
|
applyToChildren?: boolean;
|
|
6298
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
6419
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
6299
6420
|
/**
|
|
6300
6421
|
* No description
|
|
6301
6422
|
*
|
|
@@ -6306,7 +6427,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6306
6427
|
* @secure
|
|
6307
6428
|
* @response `200` `(BranchReduced)[]` Success
|
|
6308
6429
|
*/
|
|
6309
|
-
getBranchesByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchReduced[], any>>;
|
|
6430
|
+
getBranchesByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchReduced[], any, {}>>;
|
|
6310
6431
|
/**
|
|
6311
6432
|
* No description
|
|
6312
6433
|
*
|
|
@@ -6317,7 +6438,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6317
6438
|
* @secure
|
|
6318
6439
|
* @response `200` `(LoanOfficerPublic)[]` Success
|
|
6319
6440
|
*/
|
|
6320
|
-
getLoanOfficersByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic[], any>>;
|
|
6441
|
+
getLoanOfficersByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic[], any, {}>>;
|
|
6321
6442
|
/**
|
|
6322
6443
|
* No description
|
|
6323
6444
|
*
|
|
@@ -6329,8 +6450,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6329
6450
|
* @response `200` `(CustomFieldDefinition)[]` Success
|
|
6330
6451
|
*/
|
|
6331
6452
|
getCustomFieldDefinitions: (query?: {
|
|
6332
|
-
entityType?:
|
|
6333
|
-
}, params?: RequestParams) => Promise<AxiosResponse<CustomFieldDefinition[], any>>;
|
|
6453
|
+
entityType?: GetCustomFieldDefinitionsParamsEntityTypeEnum;
|
|
6454
|
+
}, params?: RequestParams) => Promise<AxiosResponse<CustomFieldDefinition[], any, {}>>;
|
|
6334
6455
|
/**
|
|
6335
6456
|
* No description
|
|
6336
6457
|
*
|
|
@@ -6343,7 +6464,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6343
6464
|
* @response `409` `ProblemDetails` Conflict
|
|
6344
6465
|
* @response `422` `ProblemDetails` Client Error
|
|
6345
6466
|
*/
|
|
6346
|
-
createCustomFieldDefinition: (data: CreateCustomFieldDefinitionRequest, params?: RequestParams) => Promise<AxiosResponse<CustomFieldDefinition, any>>;
|
|
6467
|
+
createCustomFieldDefinition: (data: CreateCustomFieldDefinitionRequest, params?: RequestParams) => Promise<AxiosResponse<CustomFieldDefinition, any, {}>>;
|
|
6347
6468
|
/**
|
|
6348
6469
|
* No description
|
|
6349
6470
|
*
|
|
@@ -6355,7 +6476,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6355
6476
|
* @response `200` `CustomFieldDefinition` Success
|
|
6356
6477
|
* @response `404` `ProblemDetails` Not Found
|
|
6357
6478
|
*/
|
|
6358
|
-
getCustomFieldDefinitionById: (id: string, params?: RequestParams) => Promise<AxiosResponse<CustomFieldDefinition, any>>;
|
|
6479
|
+
getCustomFieldDefinitionById: (id: string, params?: RequestParams) => Promise<AxiosResponse<CustomFieldDefinition, any, {}>>;
|
|
6359
6480
|
/**
|
|
6360
6481
|
* No description
|
|
6361
6482
|
*
|
|
@@ -6370,7 +6491,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6370
6491
|
* @response `409` `ProblemDetails` Conflict
|
|
6371
6492
|
* @response `422` `ProblemDetails` Client Error
|
|
6372
6493
|
*/
|
|
6373
|
-
updateCustomFieldDefinition: (id: string, data: UpdateCustomFieldDefinitionRequest, params?: RequestParams) => Promise<AxiosResponse<CustomFieldDefinition, any>>;
|
|
6494
|
+
updateCustomFieldDefinition: (id: string, data: UpdateCustomFieldDefinitionRequest, params?: RequestParams) => Promise<AxiosResponse<CustomFieldDefinition, any, {}>>;
|
|
6374
6495
|
/**
|
|
6375
6496
|
* No description
|
|
6376
6497
|
*
|
|
@@ -6383,7 +6504,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6383
6504
|
* @response `404` `ProblemDetails` Not Found
|
|
6384
6505
|
* @response `409` `ProblemDetails` Conflict
|
|
6385
6506
|
*/
|
|
6386
|
-
deleteCustomFieldDefinition: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6507
|
+
deleteCustomFieldDefinition: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6387
6508
|
/**
|
|
6388
6509
|
* No description
|
|
6389
6510
|
*
|
|
@@ -6395,7 +6516,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6395
6516
|
* @response `204` `void` No Content
|
|
6396
6517
|
* @response `404` `ProblemDetails` Not Found
|
|
6397
6518
|
*/
|
|
6398
|
-
disableCustomFieldDefinition: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6519
|
+
disableCustomFieldDefinition: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6399
6520
|
/**
|
|
6400
6521
|
* No description
|
|
6401
6522
|
*
|
|
@@ -6407,7 +6528,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6407
6528
|
* @response `204` `void` No Content
|
|
6408
6529
|
* @response `404` `ProblemDetails` Not Found
|
|
6409
6530
|
*/
|
|
6410
|
-
enableCustomFieldDefinition: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6531
|
+
enableCustomFieldDefinition: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6411
6532
|
/**
|
|
6412
6533
|
* No description
|
|
6413
6534
|
*
|
|
@@ -6427,7 +6548,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6427
6548
|
pageNumber?: number;
|
|
6428
6549
|
sortBy?: string;
|
|
6429
6550
|
sortDirection?: string;
|
|
6430
|
-
}, params?: RequestParams) => Promise<AxiosResponse<DevicePaginated, any>>;
|
|
6551
|
+
}, params?: RequestParams) => Promise<AxiosResponse<DevicePaginated, any, {}>>;
|
|
6431
6552
|
/**
|
|
6432
6553
|
* No description
|
|
6433
6554
|
*
|
|
@@ -6438,7 +6559,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6438
6559
|
* @secure
|
|
6439
6560
|
* @response `200` `Device` Success
|
|
6440
6561
|
*/
|
|
6441
|
-
getDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<Device, any>>;
|
|
6562
|
+
getDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<Device, any, {}>>;
|
|
6442
6563
|
/**
|
|
6443
6564
|
* No description
|
|
6444
6565
|
*
|
|
@@ -6449,7 +6570,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6449
6570
|
* @secure
|
|
6450
6571
|
* @response `200` `Device` Success
|
|
6451
6572
|
*/
|
|
6452
|
-
updateDevice: (id: string, data: DeviceRequest, params?: RequestParams) => Promise<AxiosResponse<Device, any>>;
|
|
6573
|
+
updateDevice: (id: string, data: DeviceRequest, params?: RequestParams) => Promise<AxiosResponse<Device, any, {}>>;
|
|
6453
6574
|
/**
|
|
6454
6575
|
* No description
|
|
6455
6576
|
*
|
|
@@ -6460,7 +6581,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6460
6581
|
* @secure
|
|
6461
6582
|
* @response `200` `DeviceMDM` Success
|
|
6462
6583
|
*/
|
|
6463
|
-
getDeviceBySerialNumber: (sn: string, params?: RequestParams) => Promise<AxiosResponse<DeviceMDM, any>>;
|
|
6584
|
+
getDeviceBySerialNumber: (sn: string, params?: RequestParams) => Promise<AxiosResponse<DeviceMDM, any, {}>>;
|
|
6464
6585
|
/**
|
|
6465
6586
|
* No description
|
|
6466
6587
|
*
|
|
@@ -6471,7 +6592,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6471
6592
|
* @secure
|
|
6472
6593
|
* @response `200` `Action` Success
|
|
6473
6594
|
*/
|
|
6474
|
-
createDeviceActionBySerialNumber: (sn: string, actionName: string, params?: RequestParams) => Promise<AxiosResponse<Action, any>>;
|
|
6595
|
+
createDeviceActionBySerialNumber: (sn: string, actionName: string, params?: RequestParams) => Promise<AxiosResponse<Action, any, {}>>;
|
|
6475
6596
|
/**
|
|
6476
6597
|
* No description
|
|
6477
6598
|
*
|
|
@@ -6485,7 +6606,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6485
6606
|
getDocumentBuckets: (query?: {
|
|
6486
6607
|
/** @default false */
|
|
6487
6608
|
includeSystemBuckets?: boolean;
|
|
6488
|
-
}, params?: RequestParams) => Promise<AxiosResponse<string[], any>>;
|
|
6609
|
+
}, params?: RequestParams) => Promise<AxiosResponse<string[], any, {}>>;
|
|
6489
6610
|
/**
|
|
6490
6611
|
* No description
|
|
6491
6612
|
*
|
|
@@ -6498,7 +6619,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6498
6619
|
*/
|
|
6499
6620
|
getDocumentTemplates: (query?: {
|
|
6500
6621
|
showAll?: boolean;
|
|
6501
|
-
}, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase[], any>>;
|
|
6622
|
+
}, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase[], any, {}>>;
|
|
6502
6623
|
/**
|
|
6503
6624
|
* No description
|
|
6504
6625
|
*
|
|
@@ -6511,7 +6632,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6511
6632
|
* @response `404` `ProblemDetails` Not Found
|
|
6512
6633
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6513
6634
|
*/
|
|
6514
|
-
createDocumentTemplate: (data: CreateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any>>;
|
|
6635
|
+
createDocumentTemplate: (data: CreateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any, {}>>;
|
|
6515
6636
|
/**
|
|
6516
6637
|
* No description
|
|
6517
6638
|
*
|
|
@@ -6527,7 +6648,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6527
6648
|
showAll?: boolean;
|
|
6528
6649
|
/** @default true */
|
|
6529
6650
|
publishedOnly?: boolean;
|
|
6530
|
-
}, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase[], any>>;
|
|
6651
|
+
}, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase[], any, {}>>;
|
|
6531
6652
|
/**
|
|
6532
6653
|
* No description
|
|
6533
6654
|
*
|
|
@@ -6539,7 +6660,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6539
6660
|
* @response `200` `DocumentTemplate` Success
|
|
6540
6661
|
* @response `404` `ProblemDetails` Not Found
|
|
6541
6662
|
*/
|
|
6542
|
-
getDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplate, any>>;
|
|
6663
|
+
getDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplate, any, {}>>;
|
|
6543
6664
|
/**
|
|
6544
6665
|
* No description
|
|
6545
6666
|
*
|
|
@@ -6553,7 +6674,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6553
6674
|
* @response `404` `ProblemDetails` Not Found
|
|
6554
6675
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6555
6676
|
*/
|
|
6556
|
-
replaceDocumentTemplate: (id: string, data: UpdateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any>>;
|
|
6677
|
+
replaceDocumentTemplate: (id: string, data: UpdateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any, {}>>;
|
|
6557
6678
|
/**
|
|
6558
6679
|
* No description
|
|
6559
6680
|
*
|
|
@@ -6566,7 +6687,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6566
6687
|
* @response `401` `ProblemDetails` Unauthorized
|
|
6567
6688
|
* @response `404` `ProblemDetails` Not Found
|
|
6568
6689
|
*/
|
|
6569
|
-
deleteDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6690
|
+
deleteDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6570
6691
|
/**
|
|
6571
6692
|
* No description
|
|
6572
6693
|
*
|
|
@@ -6579,7 +6700,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6579
6700
|
* @response `401` `ProblemDetails` Unauthorized
|
|
6580
6701
|
* @response `404` `ProblemDetails` Not Found
|
|
6581
6702
|
*/
|
|
6582
|
-
restoreDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6703
|
+
restoreDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6583
6704
|
/**
|
|
6584
6705
|
* No description
|
|
6585
6706
|
*
|
|
@@ -6590,7 +6711,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6590
6711
|
* @secure
|
|
6591
6712
|
* @response `200` `(DocumentTemplateVersion)[]` Success
|
|
6592
6713
|
*/
|
|
6593
|
-
getDocumentTemplateVersions: (documentId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion[], any>>;
|
|
6714
|
+
getDocumentTemplateVersions: (documentId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion[], any, {}>>;
|
|
6594
6715
|
/**
|
|
6595
6716
|
* No description
|
|
6596
6717
|
*
|
|
@@ -6601,7 +6722,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6601
6722
|
* @secure
|
|
6602
6723
|
* @response `200` `DocumentTemplateVersion` Success
|
|
6603
6724
|
*/
|
|
6604
|
-
createDocumentTemplateVersion: (documentId: string, data: DocumentTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
|
|
6725
|
+
createDocumentTemplateVersion: (documentId: string, data: DocumentTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any, {}>>;
|
|
6605
6726
|
/**
|
|
6606
6727
|
* No description
|
|
6607
6728
|
*
|
|
@@ -6612,7 +6733,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6612
6733
|
* @secure
|
|
6613
6734
|
* @response `200` `DocumentTemplateVersion` Success
|
|
6614
6735
|
*/
|
|
6615
|
-
getDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
|
|
6736
|
+
getDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any, {}>>;
|
|
6616
6737
|
/**
|
|
6617
6738
|
* No description
|
|
6618
6739
|
*
|
|
@@ -6623,7 +6744,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6623
6744
|
* @secure
|
|
6624
6745
|
* @response `200` `DocumentTemplateVersion` Success
|
|
6625
6746
|
*/
|
|
6626
|
-
replaceDocumentTemplateVersion: (documentId: string, id: string, data: DocumentTemplateVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
|
|
6747
|
+
replaceDocumentTemplateVersion: (documentId: string, id: string, data: DocumentTemplateVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any, {}>>;
|
|
6627
6748
|
/**
|
|
6628
6749
|
* No description
|
|
6629
6750
|
*
|
|
@@ -6634,7 +6755,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6634
6755
|
* @secure
|
|
6635
6756
|
* @response `200` `DocumentTemplateVersion` Success
|
|
6636
6757
|
*/
|
|
6637
|
-
deleteDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
|
|
6758
|
+
deleteDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any, {}>>;
|
|
6638
6759
|
/**
|
|
6639
6760
|
* No description
|
|
6640
6761
|
*
|
|
@@ -6645,7 +6766,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6645
6766
|
* @response `200` `EncompassCustomFieldMapping` Success
|
|
6646
6767
|
* @response `404` `void` Not Found
|
|
6647
6768
|
*/
|
|
6648
|
-
getEncompassCustomFieldMapping: (definitionId: string, params?: RequestParams) => Promise<AxiosResponse<EncompassCustomFieldMapping, any>>;
|
|
6769
|
+
getEncompassCustomFieldMapping: (definitionId: string, params?: RequestParams) => Promise<AxiosResponse<EncompassCustomFieldMapping, any, {}>>;
|
|
6649
6770
|
/**
|
|
6650
6771
|
* No description
|
|
6651
6772
|
*
|
|
@@ -6659,7 +6780,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6659
6780
|
* @response `409` `void` Conflict
|
|
6660
6781
|
* @response `422` `ProblemDetails` Client Error
|
|
6661
6782
|
*/
|
|
6662
|
-
addEncompassCustomFieldMapping: (definitionId: string, data: EncompassCustomFieldMappingRequest, params?: RequestParams) => Promise<AxiosResponse<EncompassCustomFieldMapping, any>>;
|
|
6783
|
+
addEncompassCustomFieldMapping: (definitionId: string, data: EncompassCustomFieldMappingRequest, params?: RequestParams) => Promise<AxiosResponse<EncompassCustomFieldMapping, any, {}>>;
|
|
6663
6784
|
/**
|
|
6664
6785
|
* No description
|
|
6665
6786
|
*
|
|
@@ -6671,7 +6792,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6671
6792
|
* @response `404` `void` Not Found
|
|
6672
6793
|
* @response `409` `void` Conflict
|
|
6673
6794
|
*/
|
|
6674
|
-
deleteEncompassCustomFieldMapping: (definitionId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6795
|
+
deleteEncompassCustomFieldMapping: (definitionId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6675
6796
|
/**
|
|
6676
6797
|
* No description
|
|
6677
6798
|
*
|
|
@@ -6682,7 +6803,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6682
6803
|
* @response `204` `void` No Content
|
|
6683
6804
|
* @response `404` `void` Not Found
|
|
6684
6805
|
*/
|
|
6685
|
-
disableEncompassCustomFieldMapping: (definitionId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6806
|
+
disableEncompassCustomFieldMapping: (definitionId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6686
6807
|
/**
|
|
6687
6808
|
* No description
|
|
6688
6809
|
*
|
|
@@ -6693,7 +6814,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6693
6814
|
* @response `204` `void` No Content
|
|
6694
6815
|
* @response `404` `void` Not Found
|
|
6695
6816
|
*/
|
|
6696
|
-
enableEncompassCustomFieldMapping: (definitionId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6817
|
+
enableEncompassCustomFieldMapping: (definitionId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6697
6818
|
/**
|
|
6698
6819
|
* No description
|
|
6699
6820
|
*
|
|
@@ -6704,7 +6825,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6704
6825
|
* @response `200` `(EncompassFieldListItem)[]` Success
|
|
6705
6826
|
* @response `502` `ProblemDetails` Server Error
|
|
6706
6827
|
*/
|
|
6707
|
-
getEncompassFields: (params?: RequestParams) => Promise<AxiosResponse<EncompassFieldListItem[], any>>;
|
|
6828
|
+
getEncompassFields: (params?: RequestParams) => Promise<AxiosResponse<EncompassFieldListItem[], any, {}>>;
|
|
6708
6829
|
/**
|
|
6709
6830
|
* No description
|
|
6710
6831
|
*
|
|
@@ -6732,7 +6853,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6732
6853
|
pageSize?: number;
|
|
6733
6854
|
/** @format uuid */
|
|
6734
6855
|
loanId?: string;
|
|
6735
|
-
}, params?: RequestParams) => Promise<AxiosResponse<EncompassPackageList, any>>;
|
|
6856
|
+
}, params?: RequestParams) => Promise<AxiosResponse<EncompassPackageList, any, {}>>;
|
|
6736
6857
|
/**
|
|
6737
6858
|
* No description
|
|
6738
6859
|
*
|
|
@@ -6744,7 +6865,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6744
6865
|
* @response `401` `EncompassError` Unauthorized
|
|
6745
6866
|
* @response `500` `EncompassError` Server Error
|
|
6746
6867
|
*/
|
|
6747
|
-
getUserRecipients: (params?: RequestParams) => Promise<AxiosResponse<EncompassRecipientItem[], any>>;
|
|
6868
|
+
getUserRecipients: (params?: RequestParams) => Promise<AxiosResponse<EncompassRecipientItem[], any, {}>>;
|
|
6748
6869
|
/**
|
|
6749
6870
|
* No description
|
|
6750
6871
|
*
|
|
@@ -6759,7 +6880,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6759
6880
|
* @response `404` `EncompassError` Not Found
|
|
6760
6881
|
* @response `500` `EncompassError` Server Error
|
|
6761
6882
|
*/
|
|
6762
|
-
createEncompassSession: (data: CreateSessionRequest, params?: RequestParams) => Promise<AxiosResponse<CreateSession, any>>;
|
|
6883
|
+
createEncompassSession: (data: CreateSessionRequest, params?: RequestParams) => Promise<AxiosResponse<CreateSession, any, {}>>;
|
|
6763
6884
|
/**
|
|
6764
6885
|
* No description
|
|
6765
6886
|
*
|
|
@@ -6779,7 +6900,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6779
6900
|
sortDirection?: string;
|
|
6780
6901
|
/** @default false */
|
|
6781
6902
|
includeDeleted?: boolean;
|
|
6782
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FilePaginated, any>>;
|
|
6903
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FilePaginated, any, {}>>;
|
|
6783
6904
|
/**
|
|
6784
6905
|
* No description
|
|
6785
6906
|
*
|
|
@@ -6797,7 +6918,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6797
6918
|
file?: File;
|
|
6798
6919
|
isPublic?: boolean;
|
|
6799
6920
|
bucket?: string;
|
|
6800
|
-
}, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
|
|
6921
|
+
}, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
|
|
6801
6922
|
/**
|
|
6802
6923
|
* No description
|
|
6803
6924
|
*
|
|
@@ -6808,7 +6929,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6808
6929
|
* @secure
|
|
6809
6930
|
* @response `201` `File` Created
|
|
6810
6931
|
*/
|
|
6811
|
-
getFileById: (id: string, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
|
|
6932
|
+
getFileById: (id: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
|
|
6812
6933
|
/**
|
|
6813
6934
|
* No description
|
|
6814
6935
|
*
|
|
@@ -6820,7 +6941,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6820
6941
|
* @response `200` `string` Success
|
|
6821
6942
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6822
6943
|
*/
|
|
6823
|
-
replaceFile: (id: string, data: FileRequest, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
6944
|
+
replaceFile: (id: string, data: FileRequest, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
6824
6945
|
/**
|
|
6825
6946
|
* No description
|
|
6826
6947
|
*
|
|
@@ -6831,7 +6952,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6831
6952
|
* @secure
|
|
6832
6953
|
* @response `204` `void` No Content
|
|
6833
6954
|
*/
|
|
6834
|
-
deleteFile: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6955
|
+
deleteFile: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6835
6956
|
/**
|
|
6836
6957
|
* No description
|
|
6837
6958
|
*
|
|
@@ -6849,7 +6970,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6849
6970
|
pageNumber?: number;
|
|
6850
6971
|
sortBy?: string;
|
|
6851
6972
|
sortDirection?: string;
|
|
6852
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FilePaginated, any>>;
|
|
6973
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FilePaginated, any, {}>>;
|
|
6853
6974
|
/**
|
|
6854
6975
|
* No description
|
|
6855
6976
|
*
|
|
@@ -6862,7 +6983,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6862
6983
|
*/
|
|
6863
6984
|
getForms: (query?: {
|
|
6864
6985
|
showAll?: boolean;
|
|
6865
|
-
}, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms[], any>>;
|
|
6986
|
+
}, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms[], any, {}>>;
|
|
6866
6987
|
/**
|
|
6867
6988
|
* No description
|
|
6868
6989
|
*
|
|
@@ -6874,7 +6995,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6874
6995
|
* @response `201` `Form` Created
|
|
6875
6996
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6876
6997
|
*/
|
|
6877
|
-
createForm: (data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<Form, any>>;
|
|
6998
|
+
createForm: (data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<Form, any, {}>>;
|
|
6878
6999
|
/**
|
|
6879
7000
|
* No description
|
|
6880
7001
|
*
|
|
@@ -6885,7 +7006,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6885
7006
|
* @secure
|
|
6886
7007
|
* @response `200` `Form` Success
|
|
6887
7008
|
*/
|
|
6888
|
-
getForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<Form, any>>;
|
|
7009
|
+
getForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<Form, any, {}>>;
|
|
6889
7010
|
/**
|
|
6890
7011
|
* No description
|
|
6891
7012
|
*
|
|
@@ -6897,7 +7018,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6897
7018
|
* @response `200` `Form` Success
|
|
6898
7019
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6899
7020
|
*/
|
|
6900
|
-
replaceForm: (id: string, data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<Form, any>>;
|
|
7021
|
+
replaceForm: (id: string, data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<Form, any, {}>>;
|
|
6901
7022
|
/**
|
|
6902
7023
|
* No description
|
|
6903
7024
|
*
|
|
@@ -6908,7 +7029,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6908
7029
|
* @secure
|
|
6909
7030
|
* @response `204` `void` No Content
|
|
6910
7031
|
*/
|
|
6911
|
-
deleteForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7032
|
+
deleteForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6912
7033
|
/**
|
|
6913
7034
|
* No description
|
|
6914
7035
|
*
|
|
@@ -6919,7 +7040,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6919
7040
|
* @secure
|
|
6920
7041
|
* @response `200` `Form` Success
|
|
6921
7042
|
*/
|
|
6922
|
-
restoreForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<Form, any>>;
|
|
7043
|
+
restoreForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<Form, any, {}>>;
|
|
6923
7044
|
/**
|
|
6924
7045
|
* No description
|
|
6925
7046
|
*
|
|
@@ -6934,7 +7055,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6934
7055
|
/** @format binary */
|
|
6935
7056
|
file?: File;
|
|
6936
7057
|
name?: string;
|
|
6937
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionFile, any>>;
|
|
7058
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionFile, any, {}>>;
|
|
6938
7059
|
/**
|
|
6939
7060
|
* No description
|
|
6940
7061
|
*
|
|
@@ -6945,7 +7066,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6945
7066
|
* @secure
|
|
6946
7067
|
* @response `204` `void` No Content
|
|
6947
7068
|
*/
|
|
6948
|
-
deleteFormSubmissionFile: (formSubmissionFileId: string, formSubmissionId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7069
|
+
deleteFormSubmissionFile: (formSubmissionFileId: string, formSubmissionId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6949
7070
|
/**
|
|
6950
7071
|
* No description
|
|
6951
7072
|
*
|
|
@@ -6959,7 +7080,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6959
7080
|
downloadFormSubmissionFile: (formSubmissionFileId: string, formSubmissionId: string, query?: {
|
|
6960
7081
|
/** @format uuid */
|
|
6961
7082
|
siteConfigurationId?: string;
|
|
6962
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FileWithBytes, any>>;
|
|
7083
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FileWithBytes, any, {}>>;
|
|
6963
7084
|
/**
|
|
6964
7085
|
* No description
|
|
6965
7086
|
*
|
|
@@ -6977,7 +7098,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6977
7098
|
pageNumber?: number;
|
|
6978
7099
|
sortBy?: string;
|
|
6979
7100
|
sortDirection?: string;
|
|
6980
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionPaginated, any>>;
|
|
7101
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionPaginated, any, {}>>;
|
|
6981
7102
|
/**
|
|
6982
7103
|
* No description
|
|
6983
7104
|
*
|
|
@@ -6990,7 +7111,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6990
7111
|
*/
|
|
6991
7112
|
createFormSubmission: (data: FormSubmissionRequest, query?: {
|
|
6992
7113
|
formID?: string;
|
|
6993
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any>>;
|
|
7114
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any, {}>>;
|
|
6994
7115
|
/**
|
|
6995
7116
|
* No description
|
|
6996
7117
|
*
|
|
@@ -7001,7 +7122,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7001
7122
|
* @secure
|
|
7002
7123
|
* @response `200` `FormSubmission` Success
|
|
7003
7124
|
*/
|
|
7004
|
-
getFormSubmission: (id: string, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any>>;
|
|
7125
|
+
getFormSubmission: (id: string, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any, {}>>;
|
|
7005
7126
|
/**
|
|
7006
7127
|
* No description
|
|
7007
7128
|
*
|
|
@@ -7012,7 +7133,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7012
7133
|
* @secure
|
|
7013
7134
|
* @response `200` `FormSubmission` Success
|
|
7014
7135
|
*/
|
|
7015
|
-
replaceFormSubmission: (id: string, data: FormSubmissionRequest, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any>>;
|
|
7136
|
+
replaceFormSubmission: (id: string, data: FormSubmissionRequest, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any, {}>>;
|
|
7016
7137
|
/**
|
|
7017
7138
|
* No description
|
|
7018
7139
|
*
|
|
@@ -7023,7 +7144,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7023
7144
|
* @secure
|
|
7024
7145
|
* @response `204` `void` No Content
|
|
7025
7146
|
*/
|
|
7026
|
-
deleteFormSubmission: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7147
|
+
deleteFormSubmission: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7027
7148
|
/**
|
|
7028
7149
|
* No description
|
|
7029
7150
|
*
|
|
@@ -7041,7 +7162,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7041
7162
|
pageNumber?: number;
|
|
7042
7163
|
sortBy?: string;
|
|
7043
7164
|
sortDirection?: string;
|
|
7044
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionPaginated, any>>;
|
|
7165
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionPaginated, any, {}>>;
|
|
7045
7166
|
/**
|
|
7046
7167
|
* No description
|
|
7047
7168
|
*
|
|
@@ -7052,7 +7173,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7052
7173
|
* @secure
|
|
7053
7174
|
* @response `200` `(FormVersion)[]` Success
|
|
7054
7175
|
*/
|
|
7055
|
-
getFormVersions: (formId: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion[], any>>;
|
|
7176
|
+
getFormVersions: (formId: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion[], any, {}>>;
|
|
7056
7177
|
/**
|
|
7057
7178
|
* No description
|
|
7058
7179
|
*
|
|
@@ -7063,7 +7184,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7063
7184
|
* @secure
|
|
7064
7185
|
* @response `200` `FormVersion` Success
|
|
7065
7186
|
*/
|
|
7066
|
-
createFormVersion: (formId: string, data: FormVersionRequest, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
|
|
7187
|
+
createFormVersion: (formId: string, data: FormVersionRequest, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any, {}>>;
|
|
7067
7188
|
/**
|
|
7068
7189
|
* No description
|
|
7069
7190
|
*
|
|
@@ -7074,7 +7195,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7074
7195
|
* @secure
|
|
7075
7196
|
* @response `200` `FormVersion` Success
|
|
7076
7197
|
*/
|
|
7077
|
-
getFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
|
|
7198
|
+
getFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any, {}>>;
|
|
7078
7199
|
/**
|
|
7079
7200
|
* No description
|
|
7080
7201
|
*
|
|
@@ -7085,7 +7206,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7085
7206
|
* @secure
|
|
7086
7207
|
* @response `200` `FormVersion` Success
|
|
7087
7208
|
*/
|
|
7088
|
-
replaceFormVersion: (formId: string, id: string, data: FormVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
|
|
7209
|
+
replaceFormVersion: (formId: string, id: string, data: FormVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any, {}>>;
|
|
7089
7210
|
/**
|
|
7090
7211
|
* No description
|
|
7091
7212
|
*
|
|
@@ -7096,7 +7217,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7096
7217
|
* @secure
|
|
7097
7218
|
* @response `200` `FormVersion` Success
|
|
7098
7219
|
*/
|
|
7099
|
-
deleteFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
|
|
7220
|
+
deleteFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any, {}>>;
|
|
7100
7221
|
/**
|
|
7101
7222
|
* No description
|
|
7102
7223
|
*
|
|
@@ -7107,7 +7228,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7107
7228
|
* @secure
|
|
7108
7229
|
* @response `200` `Record<string,any>` Success
|
|
7109
7230
|
*/
|
|
7110
|
-
getLoanData: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Record<string, any>, any>>;
|
|
7231
|
+
getLoanData: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Record<string, any>, any, {}>>;
|
|
7111
7232
|
/**
|
|
7112
7233
|
* No description
|
|
7113
7234
|
*
|
|
@@ -7120,7 +7241,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7120
7241
|
* @response `200` `string` Success
|
|
7121
7242
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7122
7243
|
*/
|
|
7123
|
-
updateLoanConsentAndCustomFieldsObsolete: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
7244
|
+
updateLoanConsentAndCustomFieldsObsolete: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
7124
7245
|
/**
|
|
7125
7246
|
* No description
|
|
7126
7247
|
*
|
|
@@ -7131,7 +7252,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7131
7252
|
* @secure
|
|
7132
7253
|
* @response `200` `GetReport` Success
|
|
7133
7254
|
*/
|
|
7134
|
-
getLoansReport: (data: GetReportRequest, params?: RequestParams) => Promise<AxiosResponse<GetReport, any>>;
|
|
7255
|
+
getLoansReport: (data: GetReportRequest, params?: RequestParams) => Promise<AxiosResponse<GetReport, any, {}>>;
|
|
7135
7256
|
/**
|
|
7136
7257
|
* No description
|
|
7137
7258
|
*
|
|
@@ -7148,7 +7269,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7148
7269
|
createLoan: (data: any, query?: {
|
|
7149
7270
|
/** @default false */
|
|
7150
7271
|
isPatch?: boolean;
|
|
7151
|
-
}, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
7272
|
+
}, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
7152
7273
|
/**
|
|
7153
7274
|
* No description
|
|
7154
7275
|
*
|
|
@@ -7164,7 +7285,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7164
7285
|
createLoanInternal: (data: any, query?: {
|
|
7165
7286
|
/** @default false */
|
|
7166
7287
|
isPatch?: boolean;
|
|
7167
|
-
}, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
7288
|
+
}, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
7168
7289
|
/**
|
|
7169
7290
|
* No description
|
|
7170
7291
|
*
|
|
@@ -7176,7 +7297,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7176
7297
|
* @response `200` `string` Success
|
|
7177
7298
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7178
7299
|
*/
|
|
7179
|
-
updateLoanCustomFields: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
7300
|
+
updateLoanCustomFields: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
7180
7301
|
/**
|
|
7181
7302
|
* No description
|
|
7182
7303
|
*
|
|
@@ -7189,7 +7310,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7189
7310
|
* @response `202` `string` Accepted
|
|
7190
7311
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7191
7312
|
*/
|
|
7192
|
-
updateLoanConsent: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
7313
|
+
updateLoanConsent: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
7193
7314
|
/**
|
|
7194
7315
|
* No description
|
|
7195
7316
|
*
|
|
@@ -7200,7 +7321,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7200
7321
|
* @secure
|
|
7201
7322
|
* @response `200` `(DocumentData)[]` Success
|
|
7202
7323
|
*/
|
|
7203
|
-
getTaskDocumentsByLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentData[], any>>;
|
|
7324
|
+
getTaskDocumentsByLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentData[], any, {}>>;
|
|
7204
7325
|
/**
|
|
7205
7326
|
* No description
|
|
7206
7327
|
*
|
|
@@ -7214,7 +7335,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7214
7335
|
getLoanDocumentContent: (loanId: string, documentId: string, query?: {
|
|
7215
7336
|
/** @default "base64" */
|
|
7216
7337
|
contentType?: string;
|
|
7217
|
-
}, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7338
|
+
}, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7218
7339
|
/**
|
|
7219
7340
|
* No description
|
|
7220
7341
|
*
|
|
@@ -7225,7 +7346,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7225
7346
|
* @secure
|
|
7226
7347
|
* @response `204` `void` No Content
|
|
7227
7348
|
*/
|
|
7228
|
-
getLoanRecipients: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7349
|
+
getLoanRecipients: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7229
7350
|
/**
|
|
7230
7351
|
* No description
|
|
7231
7352
|
*
|
|
@@ -7236,7 +7357,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7236
7357
|
* @secure
|
|
7237
7358
|
* @response `200` `(PreliminaryCondition)[]` Success
|
|
7238
7359
|
*/
|
|
7239
|
-
getPreliminaryConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<PreliminaryCondition[], any>>;
|
|
7360
|
+
getPreliminaryConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<PreliminaryCondition[], any, {}>>;
|
|
7240
7361
|
/**
|
|
7241
7362
|
* No description
|
|
7242
7363
|
*
|
|
@@ -7247,7 +7368,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7247
7368
|
* @secure
|
|
7248
7369
|
* @response `200` `(UnderwritingCondition)[]` Success
|
|
7249
7370
|
*/
|
|
7250
|
-
getUnderwritingConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UnderwritingCondition[], any>>;
|
|
7371
|
+
getUnderwritingConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UnderwritingCondition[], any, {}>>;
|
|
7251
7372
|
/**
|
|
7252
7373
|
* No description
|
|
7253
7374
|
*
|
|
@@ -7258,7 +7379,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7258
7379
|
* @secure
|
|
7259
7380
|
* @response `200` `string` Success
|
|
7260
7381
|
*/
|
|
7261
|
-
getLoanEmbeddedSigningLink: (envelopeId: string, userName: string, email: string, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
7382
|
+
getLoanEmbeddedSigningLink: (envelopeId: string, userName: string, email: string, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
7262
7383
|
/**
|
|
7263
7384
|
* No description
|
|
7264
7385
|
*
|
|
@@ -7270,7 +7391,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7270
7391
|
* @secure
|
|
7271
7392
|
* @response `200` `DocumentDataRequest` Success
|
|
7272
7393
|
*/
|
|
7273
|
-
createLegacyLoanDocument: (data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any>>;
|
|
7394
|
+
createLegacyLoanDocument: (data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any, {}>>;
|
|
7274
7395
|
/**
|
|
7275
7396
|
* No description
|
|
7276
7397
|
*
|
|
@@ -7287,7 +7408,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7287
7408
|
createEditDraftForLoan: (loanId: string, query?: {
|
|
7288
7409
|
/** @default false */
|
|
7289
7410
|
isCoBorrower?: boolean;
|
|
7290
|
-
}, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
|
|
7411
|
+
}, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
|
|
7291
7412
|
/**
|
|
7292
7413
|
* No description
|
|
7293
7414
|
*
|
|
@@ -7303,7 +7424,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7303
7424
|
file?: File;
|
|
7304
7425
|
/** @format int32 */
|
|
7305
7426
|
weight?: number;
|
|
7306
|
-
}, params?: RequestParams) => Promise<AxiosResponse<ListingFile, any>>;
|
|
7427
|
+
}, params?: RequestParams) => Promise<AxiosResponse<ListingFile, any, {}>>;
|
|
7307
7428
|
/**
|
|
7308
7429
|
* No description
|
|
7309
7430
|
*
|
|
@@ -7314,7 +7435,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7314
7435
|
* @secure
|
|
7315
7436
|
* @response `200` `ListingFile` Success
|
|
7316
7437
|
*/
|
|
7317
|
-
updateListingFiles: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingFile, any>>;
|
|
7438
|
+
updateListingFiles: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingFile, any, {}>>;
|
|
7318
7439
|
/**
|
|
7319
7440
|
* No description
|
|
7320
7441
|
*
|
|
@@ -7325,7 +7446,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7325
7446
|
* @secure
|
|
7326
7447
|
* @response `204` `Listing` No Content
|
|
7327
7448
|
*/
|
|
7328
|
-
removeListingFile: (listingId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
|
|
7449
|
+
removeListingFile: (listingId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
|
|
7329
7450
|
/**
|
|
7330
7451
|
* No description
|
|
7331
7452
|
*
|
|
@@ -7343,7 +7464,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7343
7464
|
file?: File;
|
|
7344
7465
|
/** @format int32 */
|
|
7345
7466
|
weight?: number;
|
|
7346
|
-
}, params?: RequestParams) => Promise<AxiosResponse<ListingPhoto, any>>;
|
|
7467
|
+
}, params?: RequestParams) => Promise<AxiosResponse<ListingPhoto, any, {}>>;
|
|
7347
7468
|
/**
|
|
7348
7469
|
* No description
|
|
7349
7470
|
*
|
|
@@ -7354,7 +7475,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7354
7475
|
* @secure
|
|
7355
7476
|
* @response `200` `(ListingPhoto)[]` Success
|
|
7356
7477
|
*/
|
|
7357
|
-
updateListingPhotos: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingPhoto[], any>>;
|
|
7478
|
+
updateListingPhotos: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingPhoto[], any, {}>>;
|
|
7358
7479
|
/**
|
|
7359
7480
|
* No description
|
|
7360
7481
|
*
|
|
@@ -7365,7 +7486,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7365
7486
|
* @secure
|
|
7366
7487
|
* @response `204` `Listing` No Content
|
|
7367
7488
|
*/
|
|
7368
|
-
removeListingPhoto: (listingId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
|
|
7489
|
+
removeListingPhoto: (listingId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
|
|
7369
7490
|
/**
|
|
7370
7491
|
* No description
|
|
7371
7492
|
*
|
|
@@ -7383,7 +7504,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7383
7504
|
pageNumber?: number;
|
|
7384
7505
|
sortBy?: string;
|
|
7385
7506
|
sortDirection?: string;
|
|
7386
|
-
}, params?: RequestParams) => Promise<AxiosResponse<ListingPaginated, any>>;
|
|
7507
|
+
}, params?: RequestParams) => Promise<AxiosResponse<ListingPaginated, any, {}>>;
|
|
7387
7508
|
/**
|
|
7388
7509
|
* No description
|
|
7389
7510
|
*
|
|
@@ -7394,7 +7515,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7394
7515
|
* @secure
|
|
7395
7516
|
* @response `201` `Listing` Created
|
|
7396
7517
|
*/
|
|
7397
|
-
createListing: (data: ListingRequest, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
|
|
7518
|
+
createListing: (data: ListingRequest, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
|
|
7398
7519
|
/**
|
|
7399
7520
|
* No description
|
|
7400
7521
|
*
|
|
@@ -7405,7 +7526,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7405
7526
|
* @secure
|
|
7406
7527
|
* @response `200` `Listing` Success
|
|
7407
7528
|
*/
|
|
7408
|
-
getListingBySlug: (slug: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
|
|
7529
|
+
getListingBySlug: (slug: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
|
|
7409
7530
|
/**
|
|
7410
7531
|
* No description
|
|
7411
7532
|
*
|
|
@@ -7416,7 +7537,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7416
7537
|
* @secure
|
|
7417
7538
|
* @response `200` `Listing` Success
|
|
7418
7539
|
*/
|
|
7419
|
-
getListing: (id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
|
|
7540
|
+
getListing: (id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
|
|
7420
7541
|
/**
|
|
7421
7542
|
* No description
|
|
7422
7543
|
*
|
|
@@ -7427,7 +7548,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7427
7548
|
* @secure
|
|
7428
7549
|
* @response `200` `Listing` Success
|
|
7429
7550
|
*/
|
|
7430
|
-
replaceListing: (id: string, data: ListingRequest, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
|
|
7551
|
+
replaceListing: (id: string, data: ListingRequest, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
|
|
7431
7552
|
/**
|
|
7432
7553
|
* No description
|
|
7433
7554
|
*
|
|
@@ -7438,7 +7559,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7438
7559
|
* @secure
|
|
7439
7560
|
* @response `204` `void` No Content
|
|
7440
7561
|
*/
|
|
7441
|
-
deleteListing: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7562
|
+
deleteListing: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7442
7563
|
/**
|
|
7443
7564
|
* No description
|
|
7444
7565
|
*
|
|
@@ -7456,7 +7577,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7456
7577
|
pageNumber?: number;
|
|
7457
7578
|
sortBy?: string;
|
|
7458
7579
|
sortDirection?: string;
|
|
7459
|
-
}, params?: RequestParams) => Promise<AxiosResponse<ListingPaginated, any>>;
|
|
7580
|
+
}, params?: RequestParams) => Promise<AxiosResponse<ListingPaginated, any, {}>>;
|
|
7460
7581
|
/**
|
|
7461
7582
|
* No description
|
|
7462
7583
|
*
|
|
@@ -7470,7 +7591,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7470
7591
|
updateListingBackgroundImage: (id: string, data: {
|
|
7471
7592
|
/** @format binary */
|
|
7472
7593
|
file?: File;
|
|
7473
|
-
}, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
|
|
7594
|
+
}, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
|
|
7474
7595
|
/**
|
|
7475
7596
|
* No description
|
|
7476
7597
|
*
|
|
@@ -7481,7 +7602,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7481
7602
|
* @secure
|
|
7482
7603
|
* @response `204` `void` No Content
|
|
7483
7604
|
*/
|
|
7484
|
-
deleteListingBackgroundImage: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7605
|
+
deleteListingBackgroundImage: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7485
7606
|
/**
|
|
7486
7607
|
* No description
|
|
7487
7608
|
*
|
|
@@ -7492,7 +7613,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7492
7613
|
* @secure
|
|
7493
7614
|
* @response `200` `File` Success
|
|
7494
7615
|
*/
|
|
7495
|
-
getListingOpenHouseFlyer: (id: string, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
|
|
7616
|
+
getListingOpenHouseFlyer: (id: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
|
|
7496
7617
|
/**
|
|
7497
7618
|
* No description
|
|
7498
7619
|
*
|
|
@@ -7503,7 +7624,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7503
7624
|
* @secure
|
|
7504
7625
|
* @response `200` `RunLOCalculation` Success
|
|
7505
7626
|
*/
|
|
7506
|
-
getLoanCalculator: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any>>;
|
|
7627
|
+
getLoanCalculator: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any, {}>>;
|
|
7507
7628
|
/**
|
|
7508
7629
|
* No description
|
|
7509
7630
|
*
|
|
@@ -7516,7 +7637,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7516
7637
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7517
7638
|
* @response `423` `UnprocessableEntity` Client Error
|
|
7518
7639
|
*/
|
|
7519
|
-
runLoanCalculator: (loanId: string, data: RunLOCalculationRequest, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any>>;
|
|
7640
|
+
runLoanCalculator: (loanId: string, data: RunLOCalculationRequest, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any, {}>>;
|
|
7520
7641
|
/**
|
|
7521
7642
|
* No description
|
|
7522
7643
|
*
|
|
@@ -7527,7 +7648,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7527
7648
|
* @secure
|
|
7528
7649
|
* @response `200` `LoanComparison` Success
|
|
7529
7650
|
*/
|
|
7530
|
-
getLoanComparisons: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<LoanComparison, any>>;
|
|
7651
|
+
getLoanComparisons: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<LoanComparison, any, {}>>;
|
|
7531
7652
|
/**
|
|
7532
7653
|
* No description
|
|
7533
7654
|
*
|
|
@@ -7540,7 +7661,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7540
7661
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7541
7662
|
* @response `423` `UnprocessableEntity` Client Error
|
|
7542
7663
|
*/
|
|
7543
|
-
createLoanComparison: (loanId: string, index: number, data: LoanComparisonScenario, params?: RequestParams) => Promise<AxiosResponse<LoanComparisonScenario, any>>;
|
|
7664
|
+
createLoanComparison: (loanId: string, index: number, data: LoanComparisonScenario, params?: RequestParams) => Promise<AxiosResponse<LoanComparisonScenario, any, {}>>;
|
|
7544
7665
|
/**
|
|
7545
7666
|
* No description
|
|
7546
7667
|
*
|
|
@@ -7551,7 +7672,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7551
7672
|
* @secure
|
|
7552
7673
|
* @response `204` `void` No Content
|
|
7553
7674
|
*/
|
|
7554
|
-
deleteLoanComparison: (loanId: string, index: number, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7675
|
+
deleteLoanComparison: (loanId: string, index: number, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7555
7676
|
/**
|
|
7556
7677
|
* No description
|
|
7557
7678
|
*
|
|
@@ -7563,7 +7684,20 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7563
7684
|
* @response `204` `void` No Content
|
|
7564
7685
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7565
7686
|
*/
|
|
7566
|
-
createLoanComparisonPdf: (loanId: string, data: PostLoanComparisonPdfRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7687
|
+
createLoanComparisonPdf: (loanId: string, data: PostLoanComparisonPdfRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7688
|
+
/**
|
|
7689
|
+
* No description
|
|
7690
|
+
*
|
|
7691
|
+
* @tags LoanConsents
|
|
7692
|
+
* @name ResyncLoanConsents
|
|
7693
|
+
* @summary Resync loan consents to LOS
|
|
7694
|
+
* @request POST:/api/loans/{loanId}/consents/resync
|
|
7695
|
+
* @secure
|
|
7696
|
+
* @response `204` `void` No Content
|
|
7697
|
+
* @response `404` `ProblemDetails` Not Found
|
|
7698
|
+
* @response `422` `ProblemDetails` Client Error
|
|
7699
|
+
*/
|
|
7700
|
+
resyncLoanConsents: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7567
7701
|
/**
|
|
7568
7702
|
* No description
|
|
7569
7703
|
*
|
|
@@ -7574,7 +7708,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7574
7708
|
* @secure
|
|
7575
7709
|
* @response `200` `(CustomFieldValue)[]` Success
|
|
7576
7710
|
*/
|
|
7577
|
-
getLoanCustomFieldValues: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<CustomFieldValue[], any>>;
|
|
7711
|
+
getLoanCustomFieldValues: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<CustomFieldValue[], any, {}>>;
|
|
7578
7712
|
/**
|
|
7579
7713
|
* No description
|
|
7580
7714
|
*
|
|
@@ -7587,7 +7721,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7587
7721
|
* @response `400` `ProblemDetails` Bad Request
|
|
7588
7722
|
* @response `422` `ProblemDetails` Client Error
|
|
7589
7723
|
*/
|
|
7590
|
-
bulkSetLoanCustomFieldValues: (loanId: string, data: SetCustomFieldValueRequest[], params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7724
|
+
bulkSetLoanCustomFieldValues: (loanId: string, data: SetCustomFieldValueRequest[], params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7591
7725
|
/**
|
|
7592
7726
|
* No description
|
|
7593
7727
|
*
|
|
@@ -7601,7 +7735,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7601
7735
|
* @response `404` `ProblemDetails` Not Found
|
|
7602
7736
|
* @response `422` `ProblemDetails` Client Error
|
|
7603
7737
|
*/
|
|
7604
|
-
setLoanCustomFieldValue: (loanId: string, definitionId: string, data: SetSingleCustomFieldValueRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7738
|
+
setLoanCustomFieldValue: (loanId: string, definitionId: string, data: SetSingleCustomFieldValueRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7605
7739
|
/**
|
|
7606
7740
|
* No description
|
|
7607
7741
|
*
|
|
@@ -7613,7 +7747,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7613
7747
|
* @response `204` `void` No Content
|
|
7614
7748
|
* @response `404` `ProblemDetails` Not Found
|
|
7615
7749
|
*/
|
|
7616
|
-
deleteLoanCustomFieldValue: (loanId: string, definitionId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7750
|
+
deleteLoanCustomFieldValue: (loanId: string, definitionId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7617
7751
|
/**
|
|
7618
7752
|
* No description
|
|
7619
7753
|
*
|
|
@@ -7624,7 +7758,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7624
7758
|
* @secure
|
|
7625
7759
|
* @response `200` `(string)[]` Success
|
|
7626
7760
|
*/
|
|
7627
|
-
getLoanDocumentBuckets: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<string[], any>>;
|
|
7761
|
+
getLoanDocumentBuckets: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<string[], any, {}>>;
|
|
7628
7762
|
/**
|
|
7629
7763
|
* No description
|
|
7630
7764
|
*
|
|
@@ -7635,7 +7769,109 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7635
7769
|
* @secure
|
|
7636
7770
|
* @response `201` `(string)[]` Created
|
|
7637
7771
|
*/
|
|
7638
|
-
createLoanDocumentBuckets: (loanId: string, data: string[], params?: RequestParams) => Promise<AxiosResponse<string[], any>>;
|
|
7772
|
+
createLoanDocumentBuckets: (loanId: string, data: string[], params?: RequestParams) => Promise<AxiosResponse<string[], any, {}>>;
|
|
7773
|
+
/**
|
|
7774
|
+
* No description
|
|
7775
|
+
*
|
|
7776
|
+
* @tags LoanDocumentFolders
|
|
7777
|
+
* @name GetAllLoanDocumentFolders
|
|
7778
|
+
* @summary Get all loan document folders for the current account
|
|
7779
|
+
* @request GET:/api/loan-document-folders
|
|
7780
|
+
* @secure
|
|
7781
|
+
* @response `200` `(LoanDocumentFolder)[]` Success
|
|
7782
|
+
*/
|
|
7783
|
+
getAllLoanDocumentFolders: (params?: RequestParams) => Promise<AxiosResponse<LoanDocumentFolder[], any, {}>>;
|
|
7784
|
+
/**
|
|
7785
|
+
* No description
|
|
7786
|
+
*
|
|
7787
|
+
* @tags LoanDocumentFolders
|
|
7788
|
+
* @name CreateLoanDocumentFolder
|
|
7789
|
+
* @summary Create a loan document folder
|
|
7790
|
+
* @request POST:/api/loan-document-folders
|
|
7791
|
+
* @secure
|
|
7792
|
+
* @response `201` `LoanDocumentFolder` Created
|
|
7793
|
+
* @response `409` `ProblemDetails` Conflict
|
|
7794
|
+
* @response `422` `ProblemDetails` Client Error
|
|
7795
|
+
*/
|
|
7796
|
+
createLoanDocumentFolder: (data: CreateLoanDocumentFolderRequest, params?: RequestParams) => Promise<AxiosResponse<LoanDocumentFolder, any, {}>>;
|
|
7797
|
+
/**
|
|
7798
|
+
* No description
|
|
7799
|
+
*
|
|
7800
|
+
* @tags LoanDocumentFolders
|
|
7801
|
+
* @name GetLoanDocumentFolderById
|
|
7802
|
+
* @summary Get a loan document folder by ID
|
|
7803
|
+
* @request GET:/api/loan-document-folders/{id}
|
|
7804
|
+
* @secure
|
|
7805
|
+
* @response `200` `LoanDocumentFolder` Success
|
|
7806
|
+
* @response `404` `ProblemDetails` Not Found
|
|
7807
|
+
*/
|
|
7808
|
+
getLoanDocumentFolderById: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanDocumentFolder, any, {}>>;
|
|
7809
|
+
/**
|
|
7810
|
+
* No description
|
|
7811
|
+
*
|
|
7812
|
+
* @tags LoanDocumentFolders
|
|
7813
|
+
* @name UpdateLoanDocumentFolder
|
|
7814
|
+
* @summary Update a loan document folder. Blocked when folder has ever been referenced, except for permission edits on the system-default Unassigned folder.
|
|
7815
|
+
* @request PUT:/api/loan-document-folders/{id}
|
|
7816
|
+
* @secure
|
|
7817
|
+
* @response `200` `LoanDocumentFolder` Success
|
|
7818
|
+
* @response `400` `ProblemDetails` Bad Request
|
|
7819
|
+
* @response `404` `ProblemDetails` Not Found
|
|
7820
|
+
* @response `409` `ProblemDetails` Conflict
|
|
7821
|
+
* @response `422` `ProblemDetails` Client Error
|
|
7822
|
+
*/
|
|
7823
|
+
updateLoanDocumentFolder: (id: string, data: UpdateLoanDocumentFolderRequest, params?: RequestParams) => Promise<AxiosResponse<LoanDocumentFolder, any, {}>>;
|
|
7824
|
+
/**
|
|
7825
|
+
* No description
|
|
7826
|
+
*
|
|
7827
|
+
* @tags LoanDocumentFolders
|
|
7828
|
+
* @name DeleteLoanDocumentFolder
|
|
7829
|
+
* @summary Delete a loan document folder. Allowed only when the folder has never been referenced and is not the system-default Unassigned folder.
|
|
7830
|
+
* @request DELETE:/api/loan-document-folders/{id}
|
|
7831
|
+
* @secure
|
|
7832
|
+
* @response `204` `void` No Content
|
|
7833
|
+
* @response `400` `ProblemDetails` Bad Request
|
|
7834
|
+
* @response `404` `ProblemDetails` Not Found
|
|
7835
|
+
* @response `409` `ProblemDetails` Conflict
|
|
7836
|
+
*/
|
|
7837
|
+
deleteLoanDocumentFolder: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7838
|
+
/**
|
|
7839
|
+
* No description
|
|
7840
|
+
*
|
|
7841
|
+
* @tags LoanDocumentFolders
|
|
7842
|
+
* @name DeactivateLoanDocumentFolder
|
|
7843
|
+
* @summary Deactivate a loan document folder. Rejected for the system-default Unassigned folder.
|
|
7844
|
+
* @request POST:/api/loan-document-folders/{id}/deactivate
|
|
7845
|
+
* @secure
|
|
7846
|
+
* @response `204` `void` No Content
|
|
7847
|
+
* @response `400` `ProblemDetails` Bad Request
|
|
7848
|
+
* @response `404` `ProblemDetails` Not Found
|
|
7849
|
+
*/
|
|
7850
|
+
deactivateLoanDocumentFolder: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7851
|
+
/**
|
|
7852
|
+
* No description
|
|
7853
|
+
*
|
|
7854
|
+
* @tags LoanDocumentFolders
|
|
7855
|
+
* @name ReactivateLoanDocumentFolder
|
|
7856
|
+
* @summary Reactivate a loan document folder.
|
|
7857
|
+
* @request POST:/api/loan-document-folders/{id}/reactivate
|
|
7858
|
+
* @secure
|
|
7859
|
+
* @response `204` `void` No Content
|
|
7860
|
+
* @response `404` `ProblemDetails` Not Found
|
|
7861
|
+
*/
|
|
7862
|
+
reactivateLoanDocumentFolder: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7863
|
+
/**
|
|
7864
|
+
* No description
|
|
7865
|
+
*
|
|
7866
|
+
* @tags LoanDocumentFolders
|
|
7867
|
+
* @name GetLoanDocumentFolderUsage
|
|
7868
|
+
* @summary Get folder usage. Returns HasEverBeenReferenced including soft-deleted documents and tasks.
|
|
7869
|
+
* @request GET:/api/loan-document-folders/{id}/usage
|
|
7870
|
+
* @secure
|
|
7871
|
+
* @response `200` `LoanDocumentFolderUsage` Success
|
|
7872
|
+
* @response `404` `ProblemDetails` Not Found
|
|
7873
|
+
*/
|
|
7874
|
+
getLoanDocumentFolderUsage: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanDocumentFolderUsage, any, {}>>;
|
|
7639
7875
|
/**
|
|
7640
7876
|
* No description
|
|
7641
7877
|
*
|
|
@@ -7650,7 +7886,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7650
7886
|
getLoanDocument: (loanId: string, documentId: string, query?: {
|
|
7651
7887
|
/** @default false */
|
|
7652
7888
|
preview?: boolean;
|
|
7653
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any>>;
|
|
7889
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any, {}>>;
|
|
7654
7890
|
/**
|
|
7655
7891
|
* No description
|
|
7656
7892
|
*
|
|
@@ -7662,7 +7898,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7662
7898
|
* @response `200` `Record<string,string>` Success
|
|
7663
7899
|
* @response `400` `ProblemDetails` Bad Request
|
|
7664
7900
|
*/
|
|
7665
|
-
getLoanDocumentPreviews: (loanId: string, data: LoanDocumentPreviewsRequest, params?: RequestParams) => Promise<AxiosResponse<Record<string, string>, any>>;
|
|
7901
|
+
getLoanDocumentPreviews: (loanId: string, data: LoanDocumentPreviewsRequest, params?: RequestParams) => Promise<AxiosResponse<Record<string, string>, any, {}>>;
|
|
7666
7902
|
/**
|
|
7667
7903
|
* No description
|
|
7668
7904
|
*
|
|
@@ -7680,7 +7916,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7680
7916
|
pageNumber?: number;
|
|
7681
7917
|
sortBy?: string;
|
|
7682
7918
|
sortDirection?: string;
|
|
7683
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanDocumentSearchPaginated, any>>;
|
|
7919
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanDocumentSearchPaginated, any, {}>>;
|
|
7684
7920
|
/**
|
|
7685
7921
|
* @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).
|
|
7686
7922
|
*
|
|
@@ -7694,7 +7930,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7694
7930
|
getLoanDocumentFolders: (loanId: string, data: DocumentFoldersRequest, query?: {
|
|
7695
7931
|
/** @default false */
|
|
7696
7932
|
folderNamesOnly?: boolean;
|
|
7697
|
-
}, params?: RequestParams) => Promise<AxiosResponse<DocumentFolder[], any>>;
|
|
7933
|
+
}, params?: RequestParams) => Promise<AxiosResponse<DocumentFolder[], any, {}>>;
|
|
7698
7934
|
/**
|
|
7699
7935
|
* No description
|
|
7700
7936
|
*
|
|
@@ -7706,7 +7942,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7706
7942
|
* @response `200` `string` Success
|
|
7707
7943
|
* @response `404` `ProblemDetails` Not Found
|
|
7708
7944
|
*/
|
|
7709
|
-
downloadLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
7945
|
+
downloadLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
7710
7946
|
/**
|
|
7711
7947
|
* No description
|
|
7712
7948
|
*
|
|
@@ -7724,7 +7960,9 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7724
7960
|
/** @format binary */
|
|
7725
7961
|
file?: File;
|
|
7726
7962
|
bucket?: string;
|
|
7727
|
-
|
|
7963
|
+
/** @format uuid */
|
|
7964
|
+
folderID?: string;
|
|
7965
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any, {}>>;
|
|
7728
7966
|
/**
|
|
7729
7967
|
* No description
|
|
7730
7968
|
*
|
|
@@ -7737,7 +7975,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7737
7975
|
* @response `404` `ProblemDetails` Not Found
|
|
7738
7976
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7739
7977
|
*/
|
|
7740
|
-
retryFailedLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any>>;
|
|
7978
|
+
retryFailedLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any, {}>>;
|
|
7741
7979
|
/**
|
|
7742
7980
|
* No description
|
|
7743
7981
|
*
|
|
@@ -7748,7 +7986,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7748
7986
|
* @secure
|
|
7749
7987
|
* @response `200` `DocumentDataRequest` Success
|
|
7750
7988
|
*/
|
|
7751
|
-
generateLoanDocument: (loanId: string, data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any>>;
|
|
7989
|
+
generateLoanDocument: (loanId: string, data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any, {}>>;
|
|
7752
7990
|
/**
|
|
7753
7991
|
* No description
|
|
7754
7992
|
*
|
|
@@ -7761,7 +7999,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7761
7999
|
* @response `400` `ProblemDetails` Bad Request
|
|
7762
8000
|
* @response `404` `ProblemDetails` Not Found
|
|
7763
8001
|
*/
|
|
7764
|
-
sendLoanDocuments: (loanId: string, data: SendLoanDocumentsRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8002
|
+
sendLoanDocuments: (loanId: string, data: SendLoanDocumentsRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7765
8003
|
/**
|
|
7766
8004
|
* @description Fetches all documents from Encompass that don't exist locally and stores them in S3
|
|
7767
8005
|
*
|
|
@@ -7773,7 +8011,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7773
8011
|
* @response `200` `DocumentSync` Success
|
|
7774
8012
|
* @response `404` `ProblemDetails` Not Found
|
|
7775
8013
|
*/
|
|
7776
|
-
syncLoanDocumentsFromLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentSync, any>>;
|
|
8014
|
+
syncLoanDocumentsFromLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentSync, any, {}>>;
|
|
7777
8015
|
/**
|
|
7778
8016
|
* @description Re-attempts to push a failed document to LOS
|
|
7779
8017
|
*
|
|
@@ -7786,7 +8024,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7786
8024
|
* @response `404` `ProblemDetails` Not Found
|
|
7787
8025
|
* @response `423` `ProblemDetails` Client Error
|
|
7788
8026
|
*/
|
|
7789
|
-
retrySyncLoanDocumentToLos: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8027
|
+
retrySyncLoanDocumentToLos: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7790
8028
|
/**
|
|
7791
8029
|
* No description
|
|
7792
8030
|
*
|
|
@@ -7797,7 +8035,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7797
8035
|
* @secure
|
|
7798
8036
|
* @response `201` `Draft` Created
|
|
7799
8037
|
*/
|
|
7800
|
-
createLoanDraft: (data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
|
|
8038
|
+
createLoanDraft: (data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
|
|
7801
8039
|
/**
|
|
7802
8040
|
* No description
|
|
7803
8041
|
*
|
|
@@ -7808,7 +8046,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7808
8046
|
* @secure
|
|
7809
8047
|
* @response `200` `(DraftContent)[]` Success
|
|
7810
8048
|
*/
|
|
7811
|
-
getLoanDrafts: (params?: RequestParams) => Promise<AxiosResponse<DraftContent[], any>>;
|
|
8049
|
+
getLoanDrafts: (params?: RequestParams) => Promise<AxiosResponse<DraftContent[], any, {}>>;
|
|
7812
8050
|
/**
|
|
7813
8051
|
* No description
|
|
7814
8052
|
*
|
|
@@ -7819,7 +8057,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7819
8057
|
* @secure
|
|
7820
8058
|
* @response `200` `DraftContent` Success
|
|
7821
8059
|
*/
|
|
7822
|
-
getLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<DraftContent, any>>;
|
|
8060
|
+
getLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<DraftContent, any, {}>>;
|
|
7823
8061
|
/**
|
|
7824
8062
|
* No description
|
|
7825
8063
|
*
|
|
@@ -7830,7 +8068,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7830
8068
|
* @secure
|
|
7831
8069
|
* @response `200` `Draft` Success
|
|
7832
8070
|
*/
|
|
7833
|
-
replaceLoanDraft: (draftId: string, data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
|
|
8071
|
+
replaceLoanDraft: (draftId: string, data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
|
|
7834
8072
|
/**
|
|
7835
8073
|
* No description
|
|
7836
8074
|
*
|
|
@@ -7841,7 +8079,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7841
8079
|
* @secure
|
|
7842
8080
|
* @response `204` `void` No Content
|
|
7843
8081
|
*/
|
|
7844
|
-
deleteLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8082
|
+
deleteLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7845
8083
|
/**
|
|
7846
8084
|
* No description
|
|
7847
8085
|
*
|
|
@@ -7859,7 +8097,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7859
8097
|
pageNumber?: number;
|
|
7860
8098
|
sortBy?: string;
|
|
7861
8099
|
sortDirection?: string;
|
|
7862
|
-
}, params?: RequestParams) => Promise<AxiosResponse<DraftContentPaginated, any>>;
|
|
8100
|
+
}, params?: RequestParams) => Promise<AxiosResponse<DraftContentPaginated, any, {}>>;
|
|
7863
8101
|
/**
|
|
7864
8102
|
* No description
|
|
7865
8103
|
*
|
|
@@ -7870,7 +8108,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7870
8108
|
* @secure
|
|
7871
8109
|
* @response `200` `Draft` Success
|
|
7872
8110
|
*/
|
|
7873
|
-
reassignLoanOfficer: (draftId: string, data: DraftLoanOfficerReassignRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
|
|
8111
|
+
reassignLoanOfficer: (draftId: string, data: DraftLoanOfficerReassignRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
|
|
7874
8112
|
/**
|
|
7875
8113
|
* No description
|
|
7876
8114
|
*
|
|
@@ -7881,7 +8119,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7881
8119
|
* @secure
|
|
7882
8120
|
* @response `200` `Draft` Success
|
|
7883
8121
|
*/
|
|
7884
|
-
restoreLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
|
|
8122
|
+
restoreLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
|
|
7885
8123
|
/**
|
|
7886
8124
|
* No description
|
|
7887
8125
|
*
|
|
@@ -7901,7 +8139,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7901
8139
|
pageNumber?: number;
|
|
7902
8140
|
sortBy?: string;
|
|
7903
8141
|
sortDirection?: string;
|
|
7904
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanImportPaginated, any>>;
|
|
8142
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanImportPaginated, any, {}>>;
|
|
7905
8143
|
/**
|
|
7906
8144
|
* No description
|
|
7907
8145
|
*
|
|
@@ -7912,7 +8150,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7912
8150
|
* @secure
|
|
7913
8151
|
* @response `201` `LoanImport` Created
|
|
7914
8152
|
*/
|
|
7915
|
-
createLoanImport: (data: CreateLoanImportRequest, params?: RequestParams) => Promise<AxiosResponse<LoanImport, any>>;
|
|
8153
|
+
createLoanImport: (data: CreateLoanImportRequest, params?: RequestParams) => Promise<AxiosResponse<LoanImport, any, {}>>;
|
|
7916
8154
|
/**
|
|
7917
8155
|
* No description
|
|
7918
8156
|
*
|
|
@@ -7923,7 +8161,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7923
8161
|
* @secure
|
|
7924
8162
|
* @response `200` `LoanImport` Success
|
|
7925
8163
|
*/
|
|
7926
|
-
getLoanImport: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanImport, any>>;
|
|
8164
|
+
getLoanImport: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanImport, any, {}>>;
|
|
7927
8165
|
/**
|
|
7928
8166
|
* No description
|
|
7929
8167
|
*
|
|
@@ -7941,7 +8179,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7941
8179
|
pageNumber?: number;
|
|
7942
8180
|
sortBy?: string;
|
|
7943
8181
|
sortDirection?: string;
|
|
7944
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanImportLogPaginated, any>>;
|
|
8182
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanImportLogPaginated, any, {}>>;
|
|
7945
8183
|
/**
|
|
7946
8184
|
* No description
|
|
7947
8185
|
*
|
|
@@ -7953,7 +8191,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7953
8191
|
* @response `200` `(Invite)[]` Success
|
|
7954
8192
|
* @response `404` `ProblemDetails` Not Found
|
|
7955
8193
|
*/
|
|
7956
|
-
getLoanInvites: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Invite[], any>>;
|
|
8194
|
+
getLoanInvites: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Invite[], any, {}>>;
|
|
7957
8195
|
/**
|
|
7958
8196
|
* No description
|
|
7959
8197
|
*
|
|
@@ -7965,7 +8203,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7965
8203
|
* @response `200` `(Invite)[]` Success
|
|
7966
8204
|
* @response `404` `ProblemDetails` Not Found
|
|
7967
8205
|
*/
|
|
7968
|
-
inviteLoanContacts: (loanId: string, data: string[], params?: RequestParams) => Promise<AxiosResponse<Invite[], any>>;
|
|
8206
|
+
inviteLoanContacts: (loanId: string, data: string[], params?: RequestParams) => Promise<AxiosResponse<Invite[], any, {}>>;
|
|
7969
8207
|
/**
|
|
7970
8208
|
* No description
|
|
7971
8209
|
*
|
|
@@ -7983,7 +8221,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7983
8221
|
pageNumber?: number;
|
|
7984
8222
|
sortBy?: string;
|
|
7985
8223
|
sortDirection?: string;
|
|
7986
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanLogPaginated, any>>;
|
|
8224
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanLogPaginated, any, {}>>;
|
|
7987
8225
|
/**
|
|
7988
8226
|
* No description
|
|
7989
8227
|
*
|
|
@@ -7995,7 +8233,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7995
8233
|
* @response `200` `LoanLogDetail` Success
|
|
7996
8234
|
* @response `404` `ProblemDetails` Not Found
|
|
7997
8235
|
*/
|
|
7998
|
-
getLoanLogById: (loanId: string, loanLogId: string, params?: RequestParams) => Promise<AxiosResponse<LoanLogDetail, any>>;
|
|
8236
|
+
getLoanLogById: (loanId: string, loanLogId: string, params?: RequestParams) => Promise<AxiosResponse<LoanLogDetail, any, {}>>;
|
|
7999
8237
|
/**
|
|
8000
8238
|
* No description
|
|
8001
8239
|
*
|
|
@@ -8014,7 +8252,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8014
8252
|
pageNumber?: number;
|
|
8015
8253
|
sortBy?: string;
|
|
8016
8254
|
sortDirection?: string;
|
|
8017
|
-
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any>>;
|
|
8255
|
+
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any, {}>>;
|
|
8018
8256
|
/**
|
|
8019
8257
|
* No description
|
|
8020
8258
|
*
|
|
@@ -8032,7 +8270,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8032
8270
|
pageNumber?: number;
|
|
8033
8271
|
sortBy?: string;
|
|
8034
8272
|
sortDirection?: string;
|
|
8035
|
-
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any>>;
|
|
8273
|
+
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any, {}>>;
|
|
8036
8274
|
/**
|
|
8037
8275
|
* No description
|
|
8038
8276
|
*
|
|
@@ -8043,7 +8281,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8043
8281
|
* @secure
|
|
8044
8282
|
* @response `200` `BranchUser` Success
|
|
8045
8283
|
*/
|
|
8046
|
-
getLoanOfficer: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any>>;
|
|
8284
|
+
getLoanOfficer: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any, {}>>;
|
|
8047
8285
|
/**
|
|
8048
8286
|
* No description
|
|
8049
8287
|
*
|
|
@@ -8055,7 +8293,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8055
8293
|
* @response `200` `SiteConfiguration` Success
|
|
8056
8294
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8057
8295
|
*/
|
|
8058
|
-
createLoanOfficerSiteConfiguration: (loanOfficerId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
8296
|
+
createLoanOfficerSiteConfiguration: (loanOfficerId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
8059
8297
|
/**
|
|
8060
8298
|
* No description
|
|
8061
8299
|
*
|
|
@@ -8066,7 +8304,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8066
8304
|
* @secure
|
|
8067
8305
|
* @response `200` `SiteConfigurationWithInherited` Success
|
|
8068
8306
|
*/
|
|
8069
|
-
getLoanOfficerSiteConfiguration: (loanOfficerId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
|
|
8307
|
+
getLoanOfficerSiteConfiguration: (loanOfficerId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any, {}>>;
|
|
8070
8308
|
/**
|
|
8071
8309
|
* No description
|
|
8072
8310
|
*
|
|
@@ -8080,7 +8318,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8080
8318
|
*/
|
|
8081
8319
|
replaceLoanOfficerSiteConfiguration: (loanOfficerId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
|
|
8082
8320
|
applyToChildren?: boolean;
|
|
8083
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
8321
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
8084
8322
|
/**
|
|
8085
8323
|
* No description
|
|
8086
8324
|
*
|
|
@@ -8098,7 +8336,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8098
8336
|
pageNumber?: number;
|
|
8099
8337
|
sortBy?: string;
|
|
8100
8338
|
sortDirection?: string;
|
|
8101
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanQueuePaginated, any>>;
|
|
8339
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanQueuePaginated, any, {}>>;
|
|
8102
8340
|
/**
|
|
8103
8341
|
* No description
|
|
8104
8342
|
*
|
|
@@ -8110,7 +8348,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8110
8348
|
* @response `200` `any` Success
|
|
8111
8349
|
* @response `404` `ProblemDetails` Not Found
|
|
8112
8350
|
*/
|
|
8113
|
-
getLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<any, any>>;
|
|
8351
|
+
getLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
8114
8352
|
/**
|
|
8115
8353
|
* No description
|
|
8116
8354
|
*
|
|
@@ -8122,7 +8360,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8122
8360
|
* @response `200` `LoanQueueWithData` Success
|
|
8123
8361
|
* @response `404` `ProblemDetails` Not Found
|
|
8124
8362
|
*/
|
|
8125
|
-
replaceLoanQueue: (loanQueueId: string, data: UpdateLoanQueueRequest, params?: RequestParams) => Promise<AxiosResponse<LoanQueueWithData, any>>;
|
|
8363
|
+
replaceLoanQueue: (loanQueueId: string, data: UpdateLoanQueueRequest, params?: RequestParams) => Promise<AxiosResponse<LoanQueueWithData, any, {}>>;
|
|
8126
8364
|
/**
|
|
8127
8365
|
* No description
|
|
8128
8366
|
*
|
|
@@ -8134,7 +8372,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8134
8372
|
* @response `204` `void` No Content
|
|
8135
8373
|
* @response `404` `ProblemDetails` Not Found
|
|
8136
8374
|
*/
|
|
8137
|
-
deleteLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8375
|
+
deleteLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8138
8376
|
/**
|
|
8139
8377
|
* No description
|
|
8140
8378
|
*
|
|
@@ -8146,7 +8384,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8146
8384
|
* @response `204` `void` No Content
|
|
8147
8385
|
* @response `404` `ProblemDetails` Not Found
|
|
8148
8386
|
*/
|
|
8149
|
-
retryLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8387
|
+
retryLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8150
8388
|
/**
|
|
8151
8389
|
* No description
|
|
8152
8390
|
*
|
|
@@ -8158,7 +8396,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8158
8396
|
* @response `200` `Loan` Success
|
|
8159
8397
|
* @response `404` `ProblemDetails` Not Found
|
|
8160
8398
|
*/
|
|
8161
|
-
getLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any>>;
|
|
8399
|
+
getLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any, {}>>;
|
|
8162
8400
|
/**
|
|
8163
8401
|
* No description
|
|
8164
8402
|
*
|
|
@@ -8169,7 +8407,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8169
8407
|
* @secure
|
|
8170
8408
|
* @response `200` `GetApplications` Success
|
|
8171
8409
|
*/
|
|
8172
|
-
getLoans: (params?: RequestParams) => Promise<AxiosResponse<GetApplications, any>>;
|
|
8410
|
+
getLoans: (params?: RequestParams) => Promise<AxiosResponse<GetApplications, any, {}>>;
|
|
8173
8411
|
/**
|
|
8174
8412
|
* No description
|
|
8175
8413
|
*
|
|
@@ -8183,7 +8421,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8183
8421
|
* @response `401` `ProblemDetails` Unauthorized
|
|
8184
8422
|
* @response `403` `ProblemDetails` Forbidden
|
|
8185
8423
|
*/
|
|
8186
|
-
createLoanv3: (data: LoanApplicationRequest, params?: RequestParams) => Promise<AxiosResponse<LoanApplication, any>>;
|
|
8424
|
+
createLoanv3: (data: LoanApplicationRequest, params?: RequestParams) => Promise<AxiosResponse<LoanApplication, any, {}>>;
|
|
8187
8425
|
/**
|
|
8188
8426
|
* No description
|
|
8189
8427
|
*
|
|
@@ -8201,7 +8439,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8201
8439
|
pageNumber?: number;
|
|
8202
8440
|
sortBy?: string;
|
|
8203
8441
|
sortDirection?: string;
|
|
8204
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanListPaginated, any>>;
|
|
8442
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanListPaginated, any, {}>>;
|
|
8205
8443
|
/**
|
|
8206
8444
|
* No description
|
|
8207
8445
|
*
|
|
@@ -8217,7 +8455,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8217
8455
|
* @response `404` `ProblemDetails` Not Found
|
|
8218
8456
|
* @response `409` `any` Conflict
|
|
8219
8457
|
*/
|
|
8220
|
-
updateLoan: (loanId: string, data: any, params?: RequestParams) => Promise<AxiosResponse<Loan, any>>;
|
|
8458
|
+
updateLoan: (loanId: string, data: any, params?: RequestParams) => Promise<AxiosResponse<Loan, any, {}>>;
|
|
8221
8459
|
/**
|
|
8222
8460
|
* No description
|
|
8223
8461
|
*
|
|
@@ -8230,7 +8468,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8230
8468
|
* @response `400` `ProblemDetails` Bad Request
|
|
8231
8469
|
* @response `404` `ProblemDetails` Not Found
|
|
8232
8470
|
*/
|
|
8233
|
-
completeBorrowerApplication: (loanId: string, borrowerId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8471
|
+
completeBorrowerApplication: (loanId: string, borrowerId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8234
8472
|
/**
|
|
8235
8473
|
* No description
|
|
8236
8474
|
*
|
|
@@ -8241,7 +8479,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8241
8479
|
* @secure
|
|
8242
8480
|
* @response `200` `Loan` Success
|
|
8243
8481
|
*/
|
|
8244
|
-
importLoanFromLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any>>;
|
|
8482
|
+
importLoanFromLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any, {}>>;
|
|
8245
8483
|
/**
|
|
8246
8484
|
* No description
|
|
8247
8485
|
*
|
|
@@ -8253,7 +8491,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8253
8491
|
* @response `202` `void` Accepted
|
|
8254
8492
|
* @response `404` `ProblemDetails` Not Found
|
|
8255
8493
|
*/
|
|
8256
|
-
syncLoanToLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8494
|
+
syncLoanToLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8257
8495
|
/**
|
|
8258
8496
|
* No description
|
|
8259
8497
|
*
|
|
@@ -8266,7 +8504,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8266
8504
|
* @response `400` `ProblemDetails` Bad Request
|
|
8267
8505
|
* @response `404` `ProblemDetails` Not Found
|
|
8268
8506
|
*/
|
|
8269
|
-
triggerAso: (loanId: string, data: TriggerAsoRequest, params?: RequestParams) => Promise<AxiosResponse<AutomatedService, any>>;
|
|
8507
|
+
triggerAso: (loanId: string, data: TriggerAsoRequest, params?: RequestParams) => Promise<AxiosResponse<AutomatedService, any, {}>>;
|
|
8270
8508
|
/**
|
|
8271
8509
|
* No description
|
|
8272
8510
|
*
|
|
@@ -8285,7 +8523,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8285
8523
|
pageNumber?: number;
|
|
8286
8524
|
sortBy?: string;
|
|
8287
8525
|
sortDirection?: string;
|
|
8288
|
-
}, params?: RequestParams) => Promise<AxiosResponse<TaskCommentPaginated, any>>;
|
|
8526
|
+
}, params?: RequestParams) => Promise<AxiosResponse<TaskCommentPaginated, any, {}>>;
|
|
8289
8527
|
/**
|
|
8290
8528
|
* No description
|
|
8291
8529
|
*
|
|
@@ -8297,7 +8535,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8297
8535
|
* @response `200` `TaskComment` Success
|
|
8298
8536
|
* @response `404` `ProblemDetails` Not Found
|
|
8299
8537
|
*/
|
|
8300
|
-
getLoanTaskComment: (id: string, loanId: string, userLoanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any>>;
|
|
8538
|
+
getLoanTaskComment: (id: string, loanId: string, userLoanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any, {}>>;
|
|
8301
8539
|
/**
|
|
8302
8540
|
* No description
|
|
8303
8541
|
*
|
|
@@ -8309,7 +8547,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8309
8547
|
* @response `201` `TaskComment` Created
|
|
8310
8548
|
* @response `404` `ProblemDetails` Not Found
|
|
8311
8549
|
*/
|
|
8312
|
-
createLoanTaskComment: (loanId: string, userLoanTaskId: string, data: TaskCommentRequest, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any>>;
|
|
8550
|
+
createLoanTaskComment: (loanId: string, userLoanTaskId: string, data: TaskCommentRequest, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any, {}>>;
|
|
8313
8551
|
/**
|
|
8314
8552
|
* No description
|
|
8315
8553
|
*
|
|
@@ -8321,7 +8559,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8321
8559
|
* @response `200` `TaskComment` Success
|
|
8322
8560
|
* @response `404` `ProblemDetails` Not Found
|
|
8323
8561
|
*/
|
|
8324
|
-
replaceLoanTaskComment: (loanId: string, userLoanTaskId: string, commentId: string, data: TaskCommentRequest, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any>>;
|
|
8562
|
+
replaceLoanTaskComment: (loanId: string, userLoanTaskId: string, commentId: string, data: TaskCommentRequest, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any, {}>>;
|
|
8325
8563
|
/**
|
|
8326
8564
|
* No description
|
|
8327
8565
|
*
|
|
@@ -8333,7 +8571,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8333
8571
|
* @response `204` `void` No Content
|
|
8334
8572
|
* @response `404` `ProblemDetails` Not Found
|
|
8335
8573
|
*/
|
|
8336
|
-
deleteLoanTaskComment: (loanId: string, userLoanTaskId: string, commentId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8574
|
+
deleteLoanTaskComment: (loanId: string, userLoanTaskId: string, commentId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8337
8575
|
/**
|
|
8338
8576
|
* No description
|
|
8339
8577
|
*
|
|
@@ -8351,7 +8589,9 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8351
8589
|
/** @format binary */
|
|
8352
8590
|
file?: File;
|
|
8353
8591
|
bucket?: string;
|
|
8354
|
-
|
|
8592
|
+
/** @format uuid */
|
|
8593
|
+
folderID?: string;
|
|
8594
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
|
|
8355
8595
|
/**
|
|
8356
8596
|
* No description
|
|
8357
8597
|
*
|
|
@@ -8363,7 +8603,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8363
8603
|
* @response `204` `UserLoanTask` No Content
|
|
8364
8604
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8365
8605
|
*/
|
|
8366
|
-
createLoanTaskDocumentBucket: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
|
|
8606
|
+
createLoanTaskDocumentBucket: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
|
|
8367
8607
|
/**
|
|
8368
8608
|
* No description
|
|
8369
8609
|
*
|
|
@@ -8375,7 +8615,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8375
8615
|
* @response `204` `void` No Content
|
|
8376
8616
|
* @response `404` `ProblemDetails` Not Found
|
|
8377
8617
|
*/
|
|
8378
|
-
sendOutstandingLoanTaskNotification: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8618
|
+
sendOutstandingLoanTaskNotification: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8379
8619
|
/**
|
|
8380
8620
|
* No description
|
|
8381
8621
|
*
|
|
@@ -8388,7 +8628,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8388
8628
|
* @response `400` `ProblemDetails` Bad Request
|
|
8389
8629
|
* @response `404` `ProblemDetails` Not Found
|
|
8390
8630
|
*/
|
|
8391
|
-
sendLoanTaskReminder: (loanId: string, data: SendLoanTaskReminderRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8631
|
+
sendLoanTaskReminder: (loanId: string, data: SendLoanTaskReminderRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8392
8632
|
/**
|
|
8393
8633
|
* @description Search tasks across all loans
|
|
8394
8634
|
*
|
|
@@ -8406,7 +8646,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8406
8646
|
pageNumber?: number;
|
|
8407
8647
|
sortBy?: string;
|
|
8408
8648
|
sortDirection?: string;
|
|
8409
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UserLoanTaskPaginated, any>>;
|
|
8649
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UserLoanTaskPaginated, any, {}>>;
|
|
8410
8650
|
/**
|
|
8411
8651
|
* @description Returns task counts grouped by status for loans accessible to the current user based on their role
|
|
8412
8652
|
*
|
|
@@ -8418,7 +8658,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8418
8658
|
* @response `200` `(LoanTaskStatusSummary)[]` Success
|
|
8419
8659
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8420
8660
|
*/
|
|
8421
|
-
searchLoanTasksSummary: (data: LoanTaskSearchRequest, params?: RequestParams) => Promise<AxiosResponse<LoanTaskStatusSummary[], any>>;
|
|
8661
|
+
searchLoanTasksSummary: (data: LoanTaskSearchRequest, params?: RequestParams) => Promise<AxiosResponse<LoanTaskStatusSummary[], any, {}>>;
|
|
8422
8662
|
/**
|
|
8423
8663
|
* No description
|
|
8424
8664
|
*
|
|
@@ -8430,7 +8670,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8430
8670
|
* @response `200` `(UserLoanTask)[]` Success
|
|
8431
8671
|
* @response `404` `ProblemDetails` Not Found
|
|
8432
8672
|
*/
|
|
8433
|
-
getLoanTasks: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any>>;
|
|
8673
|
+
getLoanTasks: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any, {}>>;
|
|
8434
8674
|
/**
|
|
8435
8675
|
* No description
|
|
8436
8676
|
*
|
|
@@ -8442,7 +8682,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8442
8682
|
* @response `200` `UserLoanTask` Success
|
|
8443
8683
|
* @response `404` `ProblemDetails` Not Found
|
|
8444
8684
|
*/
|
|
8445
|
-
getLoanTask: (id: string, loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
|
|
8685
|
+
getLoanTask: (id: string, loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
|
|
8446
8686
|
/**
|
|
8447
8687
|
* @description Get the difference between the current loan tasks and the tasks generated by business rules
|
|
8448
8688
|
*
|
|
@@ -8454,7 +8694,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8454
8694
|
* @response `200` `(UserLoanTask)[]` Success
|
|
8455
8695
|
* @response `404` `ProblemDetails` Not Found
|
|
8456
8696
|
*/
|
|
8457
|
-
getLoanTaskDifference: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any>>;
|
|
8697
|
+
getLoanTaskDifference: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any, {}>>;
|
|
8458
8698
|
/**
|
|
8459
8699
|
* No description
|
|
8460
8700
|
*
|
|
@@ -8466,7 +8706,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8466
8706
|
* @response `201` `UserLoanTask` Created
|
|
8467
8707
|
* @response `404` `ProblemDetails` Not Found
|
|
8468
8708
|
*/
|
|
8469
|
-
createLoanTask: (loanId: string, taskId: string, data: UserLoanTaskRequest, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
|
|
8709
|
+
createLoanTask: (loanId: string, taskId: string, data: UserLoanTaskRequest, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
|
|
8470
8710
|
/**
|
|
8471
8711
|
* No description
|
|
8472
8712
|
*
|
|
@@ -8478,7 +8718,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8478
8718
|
* @response `201` `(UserLoanTask)[]` Created
|
|
8479
8719
|
* @response `404` `ProblemDetails` Not Found
|
|
8480
8720
|
*/
|
|
8481
|
-
importLoanTask: (loanId: string, data: ImportUserLoanTaskRequest[], params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any>>;
|
|
8721
|
+
importLoanTask: (loanId: string, data: ImportUserLoanTaskRequest[], params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any, {}>>;
|
|
8482
8722
|
/**
|
|
8483
8723
|
* No description
|
|
8484
8724
|
*
|
|
@@ -8490,7 +8730,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8490
8730
|
* @response `200` `UserLoanTask` Success
|
|
8491
8731
|
* @response `404` `ProblemDetails` Not Found
|
|
8492
8732
|
*/
|
|
8493
|
-
replaceLoanTask: (loanId: string, userLoanTaskId: string, data: UserLoanTaskUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
|
|
8733
|
+
replaceLoanTask: (loanId: string, userLoanTaskId: string, data: UserLoanTaskUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
|
|
8494
8734
|
/**
|
|
8495
8735
|
* No description
|
|
8496
8736
|
*
|
|
@@ -8502,7 +8742,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8502
8742
|
* @response `204` `void` No Content
|
|
8503
8743
|
* @response `404` `ProblemDetails` Not Found
|
|
8504
8744
|
*/
|
|
8505
|
-
deleteLoanTask: (loanId: string, userLoanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8745
|
+
deleteLoanTask: (loanId: string, userLoanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8506
8746
|
/**
|
|
8507
8747
|
* No description
|
|
8508
8748
|
*
|
|
@@ -8515,7 +8755,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8515
8755
|
* @response `404` `ProblemDetails` Not Found
|
|
8516
8756
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8517
8757
|
*/
|
|
8518
|
-
createLoanTaskVerification: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
|
|
8758
|
+
createLoanTaskVerification: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
|
|
8519
8759
|
/**
|
|
8520
8760
|
* No description
|
|
8521
8761
|
*
|
|
@@ -8527,7 +8767,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8527
8767
|
* @response `200` `(UserLoanConsent)[]` Success
|
|
8528
8768
|
* @response `403` `ProblemDetails` Forbidden
|
|
8529
8769
|
*/
|
|
8530
|
-
getLoanUserConsents: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanConsent[], any>>;
|
|
8770
|
+
getLoanUserConsents: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanConsent[], any, {}>>;
|
|
8531
8771
|
/**
|
|
8532
8772
|
* No description
|
|
8533
8773
|
*
|
|
@@ -8538,7 +8778,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8538
8778
|
* @secure
|
|
8539
8779
|
* @response `200` `LoanUser` Success
|
|
8540
8780
|
*/
|
|
8541
|
-
getLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any>>;
|
|
8781
|
+
getLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any, {}>>;
|
|
8542
8782
|
/**
|
|
8543
8783
|
* No description
|
|
8544
8784
|
*
|
|
@@ -8549,7 +8789,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8549
8789
|
* @secure
|
|
8550
8790
|
* @response `201` `LoanUser` Created
|
|
8551
8791
|
*/
|
|
8552
|
-
addLoanUser: (loanId: string, userId: string, data: CreateUserLoan, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any>>;
|
|
8792
|
+
addLoanUser: (loanId: string, userId: string, data: CreateUserLoan, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any, {}>>;
|
|
8553
8793
|
/**
|
|
8554
8794
|
* No description
|
|
8555
8795
|
*
|
|
@@ -8560,7 +8800,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8560
8800
|
* @secure
|
|
8561
8801
|
* @response `204` `LoanUser` No Content
|
|
8562
8802
|
*/
|
|
8563
|
-
removeLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any>>;
|
|
8803
|
+
removeLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any, {}>>;
|
|
8564
8804
|
/**
|
|
8565
8805
|
* No description
|
|
8566
8806
|
*
|
|
@@ -8571,7 +8811,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8571
8811
|
* @secure
|
|
8572
8812
|
* @response `204` `void` No Content
|
|
8573
8813
|
*/
|
|
8574
|
-
sendLoanUserInviteReminderNotification: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8814
|
+
sendLoanUserInviteReminderNotification: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8575
8815
|
/**
|
|
8576
8816
|
* No description
|
|
8577
8817
|
*
|
|
@@ -8589,7 +8829,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8589
8829
|
pageNumber?: number;
|
|
8590
8830
|
sortBy?: string;
|
|
8591
8831
|
sortDirection?: string;
|
|
8592
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LosOperationTrackingPaginated, any>>;
|
|
8832
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LosOperationTrackingPaginated, any, {}>>;
|
|
8593
8833
|
/**
|
|
8594
8834
|
* No description
|
|
8595
8835
|
*
|
|
@@ -8600,7 +8840,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8600
8840
|
* @secure
|
|
8601
8841
|
* @response `200` `(MilestoneConfiguration)[]` Success
|
|
8602
8842
|
*/
|
|
8603
|
-
getMilestones: (params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration[], any>>;
|
|
8843
|
+
getMilestones: (params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration[], any, {}>>;
|
|
8604
8844
|
/**
|
|
8605
8845
|
* No description
|
|
8606
8846
|
*
|
|
@@ -8612,7 +8852,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8612
8852
|
* @response `201` `MilestoneConfiguration` Created
|
|
8613
8853
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8614
8854
|
*/
|
|
8615
|
-
createMilestone: (data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any>>;
|
|
8855
|
+
createMilestone: (data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any, {}>>;
|
|
8616
8856
|
/**
|
|
8617
8857
|
* No description
|
|
8618
8858
|
*
|
|
@@ -8624,7 +8864,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8624
8864
|
* @response `200` `MilestoneConfiguration` Success
|
|
8625
8865
|
* @response `404` `Error` Not Found
|
|
8626
8866
|
*/
|
|
8627
|
-
getMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any>>;
|
|
8867
|
+
getMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any, {}>>;
|
|
8628
8868
|
/**
|
|
8629
8869
|
* No description
|
|
8630
8870
|
*
|
|
@@ -8637,7 +8877,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8637
8877
|
* @response `404` `Error` Not Found
|
|
8638
8878
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8639
8879
|
*/
|
|
8640
|
-
replaceMilestone: (id: string, data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any>>;
|
|
8880
|
+
replaceMilestone: (id: string, data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any, {}>>;
|
|
8641
8881
|
/**
|
|
8642
8882
|
* No description
|
|
8643
8883
|
*
|
|
@@ -8649,7 +8889,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8649
8889
|
* @response `204` `void` No Content
|
|
8650
8890
|
* @response `404` `Error` Not Found
|
|
8651
8891
|
*/
|
|
8652
|
-
deleteMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8892
|
+
deleteMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8653
8893
|
/**
|
|
8654
8894
|
* No description
|
|
8655
8895
|
*
|
|
@@ -8661,7 +8901,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8661
8901
|
* @response `200` `MonthlyPaymentCalculator` Success
|
|
8662
8902
|
* @response `422` `ProblemDetails` Client Error
|
|
8663
8903
|
*/
|
|
8664
|
-
calculateMortgageMonthlyPayment: (data: MonthlyPaymentCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<MonthlyPaymentCalculator, any>>;
|
|
8904
|
+
calculateMortgageMonthlyPayment: (data: MonthlyPaymentCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<MonthlyPaymentCalculator, any, {}>>;
|
|
8665
8905
|
/**
|
|
8666
8906
|
* No description
|
|
8667
8907
|
*
|
|
@@ -8673,7 +8913,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8673
8913
|
* @response `200` `AffordabilityCalculator` Success
|
|
8674
8914
|
* @response `422` `ProblemDetails` Client Error
|
|
8675
8915
|
*/
|
|
8676
|
-
calculateMortgageAffordability: (data: AffordabilityCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<AffordabilityCalculator, any>>;
|
|
8916
|
+
calculateMortgageAffordability: (data: AffordabilityCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<AffordabilityCalculator, any, {}>>;
|
|
8677
8917
|
/**
|
|
8678
8918
|
* No description
|
|
8679
8919
|
*
|
|
@@ -8685,7 +8925,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8685
8925
|
* @response `200` `LoanComparisonCalculator` Success
|
|
8686
8926
|
* @response `422` `ProblemDetails` Client Error
|
|
8687
8927
|
*/
|
|
8688
|
-
calculateMortgageLoanComparison: (data: LoanComparisonCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<LoanComparisonCalculator, any>>;
|
|
8928
|
+
calculateMortgageLoanComparison: (data: LoanComparisonCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<LoanComparisonCalculator, any, {}>>;
|
|
8689
8929
|
/**
|
|
8690
8930
|
* No description
|
|
8691
8931
|
*
|
|
@@ -8697,7 +8937,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8697
8937
|
* @response `200` `RefinanceCalculator` Success
|
|
8698
8938
|
* @response `422` `ProblemDetails` Client Error
|
|
8699
8939
|
*/
|
|
8700
|
-
calculateMortgageRefinance: (data: RefinanceCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<RefinanceCalculator, any>>;
|
|
8940
|
+
calculateMortgageRefinance: (data: RefinanceCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<RefinanceCalculator, any, {}>>;
|
|
8701
8941
|
/**
|
|
8702
8942
|
* No description
|
|
8703
8943
|
*
|
|
@@ -8709,7 +8949,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8709
8949
|
* @response `200` `void` Success
|
|
8710
8950
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8711
8951
|
*/
|
|
8712
|
-
sendNotificationForLoan: (data: SendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8952
|
+
sendNotificationForLoan: (data: SendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8713
8953
|
/**
|
|
8714
8954
|
* No description
|
|
8715
8955
|
*
|
|
@@ -8721,7 +8961,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8721
8961
|
* @response `200` `void` Success
|
|
8722
8962
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8723
8963
|
*/
|
|
8724
|
-
sendTestNotificationForLoan: (data: TestSendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8964
|
+
sendTestNotificationForLoan: (data: TestSendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8725
8965
|
/**
|
|
8726
8966
|
* No description
|
|
8727
8967
|
*
|
|
@@ -8734,7 +8974,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8734
8974
|
*/
|
|
8735
8975
|
getNotificationTemplates: (query?: {
|
|
8736
8976
|
showAll?: boolean;
|
|
8737
|
-
}, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateBase[], any>>;
|
|
8977
|
+
}, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateBase[], any, {}>>;
|
|
8738
8978
|
/**
|
|
8739
8979
|
* No description
|
|
8740
8980
|
*
|
|
@@ -8746,7 +8986,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8746
8986
|
* @response `201` `NotificationTemplate` Created
|
|
8747
8987
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8748
8988
|
*/
|
|
8749
|
-
createNotificationTemplate: (data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
|
|
8989
|
+
createNotificationTemplate: (data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any, {}>>;
|
|
8750
8990
|
/**
|
|
8751
8991
|
* No description
|
|
8752
8992
|
*
|
|
@@ -8764,7 +9004,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8764
9004
|
pageNumber?: number;
|
|
8765
9005
|
sortBy?: string;
|
|
8766
9006
|
sortDirection?: string;
|
|
8767
|
-
}, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateBasePaginated, any>>;
|
|
9007
|
+
}, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateBasePaginated, any, {}>>;
|
|
8768
9008
|
/**
|
|
8769
9009
|
* No description
|
|
8770
9010
|
*
|
|
@@ -8775,7 +9015,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8775
9015
|
* @secure
|
|
8776
9016
|
* @response `200` `NotificationTemplate` Success
|
|
8777
9017
|
*/
|
|
8778
|
-
getNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
|
|
9018
|
+
getNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any, {}>>;
|
|
8779
9019
|
/**
|
|
8780
9020
|
* No description
|
|
8781
9021
|
*
|
|
@@ -8787,7 +9027,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8787
9027
|
* @response `200` `NotificationTemplate` Success
|
|
8788
9028
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8789
9029
|
*/
|
|
8790
|
-
replaceNotificationTemplate: (id: string, data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
|
|
9030
|
+
replaceNotificationTemplate: (id: string, data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any, {}>>;
|
|
8791
9031
|
/**
|
|
8792
9032
|
* No description
|
|
8793
9033
|
*
|
|
@@ -8798,7 +9038,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8798
9038
|
* @secure
|
|
8799
9039
|
* @response `204` `void` No Content
|
|
8800
9040
|
*/
|
|
8801
|
-
deleteNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9041
|
+
deleteNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8802
9042
|
/**
|
|
8803
9043
|
* No description
|
|
8804
9044
|
*
|
|
@@ -8809,7 +9049,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8809
9049
|
* @secure
|
|
8810
9050
|
* @response `200` `NotificationTemplate` Success
|
|
8811
9051
|
*/
|
|
8812
|
-
restoreNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
|
|
9052
|
+
restoreNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any, {}>>;
|
|
8813
9053
|
/**
|
|
8814
9054
|
* No description
|
|
8815
9055
|
*
|
|
@@ -8820,7 +9060,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8820
9060
|
* @secure
|
|
8821
9061
|
* @response `200` `(NotificationTemplateVersion)[]` Success
|
|
8822
9062
|
*/
|
|
8823
|
-
getNotificationTemplateVersions: (notificationId: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion[], any>>;
|
|
9063
|
+
getNotificationTemplateVersions: (notificationId: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion[], any, {}>>;
|
|
8824
9064
|
/**
|
|
8825
9065
|
* No description
|
|
8826
9066
|
*
|
|
@@ -8831,7 +9071,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8831
9071
|
* @secure
|
|
8832
9072
|
* @response `200` `NotificationTemplateVersion` Success
|
|
8833
9073
|
*/
|
|
8834
|
-
createNotificationTemplateVersion: (notificationId: string, data: NotificationTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
|
|
9074
|
+
createNotificationTemplateVersion: (notificationId: string, data: NotificationTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any, {}>>;
|
|
8835
9075
|
/**
|
|
8836
9076
|
* No description
|
|
8837
9077
|
*
|
|
@@ -8842,7 +9082,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8842
9082
|
* @secure
|
|
8843
9083
|
* @response `200` `NotificationTemplateVersion` Success
|
|
8844
9084
|
*/
|
|
8845
|
-
getNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
|
|
9085
|
+
getNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any, {}>>;
|
|
8846
9086
|
/**
|
|
8847
9087
|
* No description
|
|
8848
9088
|
*
|
|
@@ -8853,7 +9093,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8853
9093
|
* @secure
|
|
8854
9094
|
* @response `200` `NotificationTemplateVersion` Success
|
|
8855
9095
|
*/
|
|
8856
|
-
replaceNotificationTemplateVersion: (notificationId: string, id: string, data: NotificationTemplateVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
|
|
9096
|
+
replaceNotificationTemplateVersion: (notificationId: string, id: string, data: NotificationTemplateVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any, {}>>;
|
|
8857
9097
|
/**
|
|
8858
9098
|
* No description
|
|
8859
9099
|
*
|
|
@@ -8864,7 +9104,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8864
9104
|
* @secure
|
|
8865
9105
|
* @response `200` `NotificationTemplateVersion` Success
|
|
8866
9106
|
*/
|
|
8867
|
-
deleteNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
|
|
9107
|
+
deleteNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any, {}>>;
|
|
8868
9108
|
/**
|
|
8869
9109
|
* No description
|
|
8870
9110
|
*
|
|
@@ -8878,14 +9118,14 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8878
9118
|
getPartners: (query?: {
|
|
8879
9119
|
showAll?: boolean;
|
|
8880
9120
|
/** @default "Realtor" */
|
|
8881
|
-
role?:
|
|
9121
|
+
role?: GetPartnersParamsRoleEnum;
|
|
8882
9122
|
/** @format int32 */
|
|
8883
9123
|
pageSize?: number;
|
|
8884
9124
|
/** @format int32 */
|
|
8885
9125
|
pageNumber?: number;
|
|
8886
9126
|
sortBy?: string;
|
|
8887
9127
|
sortDirection?: string;
|
|
8888
|
-
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any>>;
|
|
9128
|
+
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any, {}>>;
|
|
8889
9129
|
/**
|
|
8890
9130
|
* No description
|
|
8891
9131
|
*
|
|
@@ -8903,7 +9143,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8903
9143
|
pageNumber?: number;
|
|
8904
9144
|
sortBy?: string;
|
|
8905
9145
|
sortDirection?: string;
|
|
8906
|
-
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any>>;
|
|
9146
|
+
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any, {}>>;
|
|
8907
9147
|
/**
|
|
8908
9148
|
* No description
|
|
8909
9149
|
*
|
|
@@ -8914,7 +9154,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8914
9154
|
* @secure
|
|
8915
9155
|
* @response `200` `BranchUser` Success
|
|
8916
9156
|
*/
|
|
8917
|
-
getPartner: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any>>;
|
|
9157
|
+
getPartner: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any, {}>>;
|
|
8918
9158
|
/**
|
|
8919
9159
|
* No description
|
|
8920
9160
|
*
|
|
@@ -8926,7 +9166,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8926
9166
|
* @response `200` `SiteConfiguration` Success
|
|
8927
9167
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8928
9168
|
*/
|
|
8929
|
-
createPartnerSiteConfiguration: (realtorId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
9169
|
+
createPartnerSiteConfiguration: (realtorId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
8930
9170
|
/**
|
|
8931
9171
|
* No description
|
|
8932
9172
|
*
|
|
@@ -8937,7 +9177,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8937
9177
|
* @secure
|
|
8938
9178
|
* @response `200` `SiteConfigurationWithInherited` Success
|
|
8939
9179
|
*/
|
|
8940
|
-
getPartnerSiteConfiguration: (realtorId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
|
|
9180
|
+
getPartnerSiteConfiguration: (realtorId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any, {}>>;
|
|
8941
9181
|
/**
|
|
8942
9182
|
* No description
|
|
8943
9183
|
*
|
|
@@ -8951,7 +9191,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8951
9191
|
*/
|
|
8952
9192
|
replacePartnerSiteConfiguration: (realtorId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
|
|
8953
9193
|
applyToChildren?: boolean;
|
|
8954
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
9194
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
8955
9195
|
/**
|
|
8956
9196
|
* No description
|
|
8957
9197
|
*
|
|
@@ -8962,7 +9202,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8962
9202
|
* @secure
|
|
8963
9203
|
* @response `200` `SiteConfiguration` Success
|
|
8964
9204
|
*/
|
|
8965
|
-
getSiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
9205
|
+
getSiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
8966
9206
|
/**
|
|
8967
9207
|
* No description
|
|
8968
9208
|
*
|
|
@@ -8975,7 +9215,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8975
9215
|
* @response `200` `SiteConfigurationByUrl` Success
|
|
8976
9216
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8977
9217
|
*/
|
|
8978
|
-
searchSiteConfigurationByUrl: (data: GetSiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationByUrl, any>>;
|
|
9218
|
+
searchSiteConfigurationByUrl: (data: GetSiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationByUrl, any, {}>>;
|
|
8979
9219
|
/**
|
|
8980
9220
|
* No description
|
|
8981
9221
|
*
|
|
@@ -8989,7 +9229,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8989
9229
|
*/
|
|
8990
9230
|
getSiteConfigurationByUrl: (query?: {
|
|
8991
9231
|
url?: string;
|
|
8992
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationByUrl, any>>;
|
|
9232
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationByUrl, any, {}>>;
|
|
8993
9233
|
/**
|
|
8994
9234
|
* No description
|
|
8995
9235
|
*
|
|
@@ -9002,7 +9242,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9002
9242
|
* @response `200` `SiteConfiguration` Success
|
|
9003
9243
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9004
9244
|
*/
|
|
9005
|
-
searchSiteConfigurationByLoanOfficerUser: (data: GetSiteConfigurationByLOUserIDRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
9245
|
+
searchSiteConfigurationByLoanOfficerUser: (data: GetSiteConfigurationByLOUserIDRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
9006
9246
|
/**
|
|
9007
9247
|
* No description
|
|
9008
9248
|
*
|
|
@@ -9014,7 +9254,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9014
9254
|
* @response `200` `SiteConfiguration` Success
|
|
9015
9255
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9016
9256
|
*/
|
|
9017
|
-
getSiteConfigurationByLoanOfficerUser: (loUserId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
9257
|
+
getSiteConfigurationByLoanOfficerUser: (loUserId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
9018
9258
|
/**
|
|
9019
9259
|
* No description
|
|
9020
9260
|
*
|
|
@@ -9033,7 +9273,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9033
9273
|
pageNumber?: number;
|
|
9034
9274
|
sortBy?: string;
|
|
9035
9275
|
sortDirection?: string;
|
|
9036
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationSummaryPaginated, any>>;
|
|
9276
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationSummaryPaginated, any, {}>>;
|
|
9037
9277
|
/**
|
|
9038
9278
|
* No description
|
|
9039
9279
|
*
|
|
@@ -9044,7 +9284,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9044
9284
|
* @secure
|
|
9045
9285
|
* @response `200` `(AdminAccessGetForms)[]` Success
|
|
9046
9286
|
*/
|
|
9047
|
-
getFormsBySiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms[], any>>;
|
|
9287
|
+
getFormsBySiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms[], any, {}>>;
|
|
9048
9288
|
/**
|
|
9049
9289
|
* No description
|
|
9050
9290
|
*
|
|
@@ -9056,7 +9296,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9056
9296
|
* @response `200` `File` Success
|
|
9057
9297
|
* @response `404` `ProblemDetails` Not Found
|
|
9058
9298
|
*/
|
|
9059
|
-
getSamlMetadata: (sSoIntegration:
|
|
9299
|
+
getSamlMetadata: (sSoIntegration: GetSamlMetadataParamsEnum, ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
|
|
9060
9300
|
/**
|
|
9061
9301
|
* No description
|
|
9062
9302
|
*
|
|
@@ -9067,7 +9307,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9067
9307
|
* @secure
|
|
9068
9308
|
* @response `200` `File` Success
|
|
9069
9309
|
*/
|
|
9070
|
-
createOrReplaceSamlMetadata: (sSoIntegration:
|
|
9310
|
+
createOrReplaceSamlMetadata: (sSoIntegration: CreateOrReplaceSamlMetadataParamsEnum, ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
|
|
9071
9311
|
/**
|
|
9072
9312
|
* No description
|
|
9073
9313
|
*
|
|
@@ -9078,7 +9318,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9078
9318
|
* @secure
|
|
9079
9319
|
* @response `200` `(SiteConfigurationForm)[]` Success
|
|
9080
9320
|
*/
|
|
9081
|
-
getWorkflowSiteConfigurations: (workflowId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm[], any>>;
|
|
9321
|
+
getWorkflowSiteConfigurations: (workflowId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm[], any, {}>>;
|
|
9082
9322
|
/**
|
|
9083
9323
|
* No description
|
|
9084
9324
|
*
|
|
@@ -9090,7 +9330,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9090
9330
|
* @response `200` `SiteConfigurationForm` Success
|
|
9091
9331
|
* @response `404` `ProblemDetails` Not Found
|
|
9092
9332
|
*/
|
|
9093
|
-
getWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any>>;
|
|
9333
|
+
getWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any, {}>>;
|
|
9094
9334
|
/**
|
|
9095
9335
|
* No description
|
|
9096
9336
|
*
|
|
@@ -9103,7 +9343,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9103
9343
|
* @response `409` `ProblemDetails` Conflict
|
|
9104
9344
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9105
9345
|
*/
|
|
9106
|
-
createWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any>>;
|
|
9346
|
+
createWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any, {}>>;
|
|
9107
9347
|
/**
|
|
9108
9348
|
* No description
|
|
9109
9349
|
*
|
|
@@ -9114,7 +9354,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9114
9354
|
* @secure
|
|
9115
9355
|
* @response `204` `void` No Content
|
|
9116
9356
|
*/
|
|
9117
|
-
deleteWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9357
|
+
deleteWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9118
9358
|
/**
|
|
9119
9359
|
* No description
|
|
9120
9360
|
*
|
|
@@ -9125,7 +9365,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9125
9365
|
* @secure
|
|
9126
9366
|
* @response `200` `GetForm` Success
|
|
9127
9367
|
*/
|
|
9128
|
-
getFormBySiteConfigurationSlug: (data: GetSiteFormRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any>>;
|
|
9368
|
+
getFormBySiteConfigurationSlug: (data: GetSiteFormRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any, {}>>;
|
|
9129
9369
|
/**
|
|
9130
9370
|
* No description
|
|
9131
9371
|
*
|
|
@@ -9139,7 +9379,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9139
9379
|
getSurveysByUsers: (query?: {
|
|
9140
9380
|
/** @format int32 */
|
|
9141
9381
|
limit?: number;
|
|
9142
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SocialSurveyRecord[], any>>;
|
|
9382
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SocialSurveyRecord[], any, {}>>;
|
|
9143
9383
|
/**
|
|
9144
9384
|
* No description
|
|
9145
9385
|
*
|
|
@@ -9151,7 +9391,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9151
9391
|
* @response `200` `(SocialSurveyRecord)[]` Success
|
|
9152
9392
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9153
9393
|
*/
|
|
9154
|
-
getSurveysByUser: (data: SurveyEmailRequest, params?: RequestParams) => Promise<AxiosResponse<SocialSurveyRecord[], any>>;
|
|
9394
|
+
getSurveysByUser: (data: SurveyEmailRequest, params?: RequestParams) => Promise<AxiosResponse<SocialSurveyRecord[], any, {}>>;
|
|
9155
9395
|
/**
|
|
9156
9396
|
* No description
|
|
9157
9397
|
*
|
|
@@ -9170,7 +9410,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9170
9410
|
pageNumber?: number;
|
|
9171
9411
|
sortBy?: string;
|
|
9172
9412
|
sortDirection?: string;
|
|
9173
|
-
}, params?: RequestParams) => Promise<AxiosResponse<Task, any>>;
|
|
9413
|
+
}, params?: RequestParams) => Promise<AxiosResponse<Task, any, {}>>;
|
|
9174
9414
|
/**
|
|
9175
9415
|
* No description
|
|
9176
9416
|
*
|
|
@@ -9181,7 +9421,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9181
9421
|
* @secure
|
|
9182
9422
|
* @response `201` `Task` Created
|
|
9183
9423
|
*/
|
|
9184
|
-
createTask: (data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<Task, any>>;
|
|
9424
|
+
createTask: (data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<Task, any, {}>>;
|
|
9185
9425
|
/**
|
|
9186
9426
|
* No description
|
|
9187
9427
|
*
|
|
@@ -9193,7 +9433,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9193
9433
|
* @response `200` `Task` Success
|
|
9194
9434
|
* @response `404` `ProblemDetails` Not Found
|
|
9195
9435
|
*/
|
|
9196
|
-
getTask: (id: string, params?: RequestParams) => Promise<AxiosResponse<Task, any>>;
|
|
9436
|
+
getTask: (id: string, params?: RequestParams) => Promise<AxiosResponse<Task, any, {}>>;
|
|
9197
9437
|
/**
|
|
9198
9438
|
* No description
|
|
9199
9439
|
*
|
|
@@ -9205,7 +9445,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9205
9445
|
* @response `200` `void` Success
|
|
9206
9446
|
* @response `404` `ProblemDetails` Not Found
|
|
9207
9447
|
*/
|
|
9208
|
-
replaceTask: (id: string, data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9448
|
+
replaceTask: (id: string, data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9209
9449
|
/**
|
|
9210
9450
|
* No description
|
|
9211
9451
|
*
|
|
@@ -9217,7 +9457,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9217
9457
|
* @response `204` `void` No Content
|
|
9218
9458
|
* @response `404` `ProblemDetails` Not Found
|
|
9219
9459
|
*/
|
|
9220
|
-
deleteTask: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9460
|
+
deleteTask: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9221
9461
|
/**
|
|
9222
9462
|
* No description
|
|
9223
9463
|
*
|
|
@@ -9235,7 +9475,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9235
9475
|
pageNumber?: number;
|
|
9236
9476
|
sortBy?: string;
|
|
9237
9477
|
sortDirection?: string;
|
|
9238
|
-
}, params?: RequestParams) => Promise<AxiosResponse<TaskPaginated, any>>;
|
|
9478
|
+
}, params?: RequestParams) => Promise<AxiosResponse<TaskPaginated, any, {}>>;
|
|
9239
9479
|
/**
|
|
9240
9480
|
* No description
|
|
9241
9481
|
*
|
|
@@ -9245,7 +9485,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9245
9485
|
* @secure
|
|
9246
9486
|
* @response `200` `void` Success
|
|
9247
9487
|
*/
|
|
9248
|
-
integrationsLosLoansCreate: (data: LosLoanCreationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9488
|
+
integrationsLosLoansCreate: (data: LosLoanCreationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9249
9489
|
/**
|
|
9250
9490
|
* No description
|
|
9251
9491
|
*
|
|
@@ -9262,7 +9502,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9262
9502
|
pageNumber: number;
|
|
9263
9503
|
sortBy?: string;
|
|
9264
9504
|
sortDirection?: string;
|
|
9265
|
-
}, data: EncompassLogSearchCriteria, params?: RequestParams) => Promise<AxiosResponse<EncompassRequestLogPaginated, any>>;
|
|
9505
|
+
}, data: EncompassLogSearchCriteria, params?: RequestParams) => Promise<AxiosResponse<EncompassRequestLogPaginated, any, {}>>;
|
|
9266
9506
|
/**
|
|
9267
9507
|
* No description
|
|
9268
9508
|
*
|
|
@@ -9273,7 +9513,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9273
9513
|
* @response `200` `EncompassCredentialsDetail` Success
|
|
9274
9514
|
* @response `204` `void` No Content
|
|
9275
9515
|
*/
|
|
9276
|
-
getEncompassCredentials: (params?: RequestParams) => Promise<AxiosResponse<EncompassCredentialsDetail, any>>;
|
|
9516
|
+
getEncompassCredentials: (params?: RequestParams) => Promise<AxiosResponse<EncompassCredentialsDetail, any, {}>>;
|
|
9277
9517
|
/**
|
|
9278
9518
|
* No description
|
|
9279
9519
|
*
|
|
@@ -9283,7 +9523,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9283
9523
|
* @secure
|
|
9284
9524
|
* @response `201` `LosCredentials` Created
|
|
9285
9525
|
*/
|
|
9286
|
-
createEncompassCredentials: (data: EncompassCredentialsRequest, params?: RequestParams) => Promise<AxiosResponse<LosCredentials, any>>;
|
|
9526
|
+
createEncompassCredentials: (data: EncompassCredentialsRequest, params?: RequestParams) => Promise<AxiosResponse<LosCredentials, any, {}>>;
|
|
9287
9527
|
/**
|
|
9288
9528
|
* No description
|
|
9289
9529
|
*
|
|
@@ -9293,7 +9533,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9293
9533
|
* @secure
|
|
9294
9534
|
* @response `200` `EncompassCredentialsDetail` Success
|
|
9295
9535
|
*/
|
|
9296
|
-
updateEncompassCredentials: (data: EncompassCredentialsRequest, params?: RequestParams) => Promise<AxiosResponse<EncompassCredentialsDetail, any>>;
|
|
9536
|
+
updateEncompassCredentials: (data: EncompassCredentialsRequest, params?: RequestParams) => Promise<AxiosResponse<EncompassCredentialsDetail, any, {}>>;
|
|
9297
9537
|
/**
|
|
9298
9538
|
* No description
|
|
9299
9539
|
*
|
|
@@ -9303,7 +9543,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9303
9543
|
* @secure
|
|
9304
9544
|
* @response `200` `(LosWebhook)[]` Success
|
|
9305
9545
|
*/
|
|
9306
|
-
getEncompassWebhooks: (params?: RequestParams) => Promise<AxiosResponse<LosWebhook[], any>>;
|
|
9546
|
+
getEncompassWebhooks: (params?: RequestParams) => Promise<AxiosResponse<LosWebhook[], any, {}>>;
|
|
9307
9547
|
/**
|
|
9308
9548
|
* No description
|
|
9309
9549
|
*
|
|
@@ -9313,7 +9553,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9313
9553
|
* @secure
|
|
9314
9554
|
* @response `201` `LosWebhook` Created
|
|
9315
9555
|
*/
|
|
9316
|
-
createEncompassWebhook: (data: CreateWebhookRequest, params?: RequestParams) => Promise<AxiosResponse<LosWebhook, any>>;
|
|
9556
|
+
createEncompassWebhook: (data: CreateWebhookRequest, params?: RequestParams) => Promise<AxiosResponse<LosWebhook, any, {}>>;
|
|
9317
9557
|
/**
|
|
9318
9558
|
* No description
|
|
9319
9559
|
*
|
|
@@ -9323,7 +9563,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9323
9563
|
* @secure
|
|
9324
9564
|
* @response `204` `void` No Content
|
|
9325
9565
|
*/
|
|
9326
|
-
deleteEncompassWebhook: (webhookId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9566
|
+
deleteEncompassWebhook: (webhookId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9327
9567
|
/**
|
|
9328
9568
|
* No description
|
|
9329
9569
|
*
|
|
@@ -9340,7 +9580,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9340
9580
|
pageNumber: number;
|
|
9341
9581
|
sortBy?: string;
|
|
9342
9582
|
sortDirection?: string;
|
|
9343
|
-
}, data: LosSyncSearchCriteria, params?: RequestParams) => Promise<AxiosResponse<LosSyncPaginated, any>>;
|
|
9583
|
+
}, data: LosSyncSearchCriteria, params?: RequestParams) => Promise<AxiosResponse<LosSyncPaginated, any, {}>>;
|
|
9344
9584
|
/**
|
|
9345
9585
|
* No description
|
|
9346
9586
|
*
|
|
@@ -9352,7 +9592,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9352
9592
|
* @response `200` `UsageReport` Success
|
|
9353
9593
|
* @response `404` `ProblemDetails` Not Found
|
|
9354
9594
|
*/
|
|
9355
|
-
getUsageReportById: (id: string, params?: RequestParams) => Promise<AxiosResponse<UsageReport, any>>;
|
|
9595
|
+
getUsageReportById: (id: string, params?: RequestParams) => Promise<AxiosResponse<UsageReport, any, {}>>;
|
|
9356
9596
|
/**
|
|
9357
9597
|
* No description
|
|
9358
9598
|
*
|
|
@@ -9369,7 +9609,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9369
9609
|
month?: number;
|
|
9370
9610
|
/** @format int32 */
|
|
9371
9611
|
year?: number;
|
|
9372
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UsageReport[], any>>;
|
|
9612
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UsageReport[], any, {}>>;
|
|
9373
9613
|
/**
|
|
9374
9614
|
* No description
|
|
9375
9615
|
*
|
|
@@ -9386,7 +9626,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9386
9626
|
month?: number;
|
|
9387
9627
|
/** @format int32 */
|
|
9388
9628
|
year?: number;
|
|
9389
|
-
}, params?: RequestParams) => Promise<AxiosResponse<any, any>>;
|
|
9629
|
+
}, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
9390
9630
|
/**
|
|
9391
9631
|
* No description
|
|
9392
9632
|
*
|
|
@@ -9397,7 +9637,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9397
9637
|
* @secure
|
|
9398
9638
|
* @response `200` `UsageReportDashboard` Success
|
|
9399
9639
|
*/
|
|
9400
|
-
getUsageReportDashboard: (params?: RequestParams) => Promise<AxiosResponse<UsageReportDashboard, any>>;
|
|
9640
|
+
getUsageReportDashboard: (params?: RequestParams) => Promise<AxiosResponse<UsageReportDashboard, any, {}>>;
|
|
9401
9641
|
/**
|
|
9402
9642
|
* No description
|
|
9403
9643
|
*
|
|
@@ -9409,7 +9649,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9409
9649
|
* @response `200` `UsageReportExecution` Success
|
|
9410
9650
|
* @response `404` `ProblemDetails` Not Found
|
|
9411
9651
|
*/
|
|
9412
|
-
getUsageReportExecution: (correlationId: string, params?: RequestParams) => Promise<AxiosResponse<UsageReportExecution, any>>;
|
|
9652
|
+
getUsageReportExecution: (correlationId: string, params?: RequestParams) => Promise<AxiosResponse<UsageReportExecution, any, {}>>;
|
|
9413
9653
|
/**
|
|
9414
9654
|
* No description
|
|
9415
9655
|
*
|
|
@@ -9426,7 +9666,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9426
9666
|
month?: number;
|
|
9427
9667
|
/** @format int32 */
|
|
9428
9668
|
year?: number;
|
|
9429
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UsageReportExecution[], any>>;
|
|
9669
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UsageReportExecution[], any, {}>>;
|
|
9430
9670
|
/**
|
|
9431
9671
|
* No description
|
|
9432
9672
|
*
|
|
@@ -9438,7 +9678,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9438
9678
|
* @response `201` `UserDevice` Created
|
|
9439
9679
|
* @response `400` `ProblemDetails` Bad Request
|
|
9440
9680
|
*/
|
|
9441
|
-
createUserDevice: (data: CreateUserDeviceRequest, params?: RequestParams) => Promise<AxiosResponse<UserDevice, any>>;
|
|
9681
|
+
createUserDevice: (data: CreateUserDeviceRequest, params?: RequestParams) => Promise<AxiosResponse<UserDevice, any, {}>>;
|
|
9442
9682
|
/**
|
|
9443
9683
|
* No description
|
|
9444
9684
|
*
|
|
@@ -9450,7 +9690,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9450
9690
|
* @response `204` `void` No Content
|
|
9451
9691
|
* @response `404` `ProblemDetails` Not Found
|
|
9452
9692
|
*/
|
|
9453
|
-
deleteUserDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9693
|
+
deleteUserDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9454
9694
|
/**
|
|
9455
9695
|
* No description
|
|
9456
9696
|
*
|
|
@@ -9468,7 +9708,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9468
9708
|
pageNumber?: number;
|
|
9469
9709
|
sortBy?: string;
|
|
9470
9710
|
sortDirection?: string;
|
|
9471
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UserDraftPaginated, any>>;
|
|
9711
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UserDraftPaginated, any, {}>>;
|
|
9472
9712
|
/**
|
|
9473
9713
|
* No description
|
|
9474
9714
|
*
|
|
@@ -9479,7 +9719,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9479
9719
|
* @secure
|
|
9480
9720
|
* @response `200` `UserDraft` Success
|
|
9481
9721
|
*/
|
|
9482
|
-
getDraftUser: (draftId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<UserDraft, any>>;
|
|
9722
|
+
getDraftUser: (draftId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<UserDraft, any, {}>>;
|
|
9483
9723
|
/**
|
|
9484
9724
|
* No description
|
|
9485
9725
|
*
|
|
@@ -9490,7 +9730,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9490
9730
|
* @secure
|
|
9491
9731
|
* @response `200` `UserDraft` Success
|
|
9492
9732
|
*/
|
|
9493
|
-
addDraftUsers: (draftId: string, userId: string, data: CreateUserDraft, params?: RequestParams) => Promise<AxiosResponse<UserDraft, any>>;
|
|
9733
|
+
addDraftUsers: (draftId: string, userId: string, data: CreateUserDraft, params?: RequestParams) => Promise<AxiosResponse<UserDraft, any, {}>>;
|
|
9494
9734
|
/**
|
|
9495
9735
|
* No description
|
|
9496
9736
|
*
|
|
@@ -9501,7 +9741,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9501
9741
|
* @secure
|
|
9502
9742
|
* @response `204` `void` No Content
|
|
9503
9743
|
*/
|
|
9504
|
-
deleteDraftUser: (draftId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9744
|
+
deleteDraftUser: (draftId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9505
9745
|
/**
|
|
9506
9746
|
* No description
|
|
9507
9747
|
*
|
|
@@ -9512,7 +9752,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9512
9752
|
* @secure
|
|
9513
9753
|
* @response `200` `(UserGroupAccessScope)[]` Success
|
|
9514
9754
|
*/
|
|
9515
|
-
getUserGroupAccessScopes: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope[], any>>;
|
|
9755
|
+
getUserGroupAccessScopes: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope[], any, {}>>;
|
|
9516
9756
|
/**
|
|
9517
9757
|
* No description
|
|
9518
9758
|
*
|
|
@@ -9523,7 +9763,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9523
9763
|
* @secure
|
|
9524
9764
|
* @response `200` `UserGroupAccessScope` Success
|
|
9525
9765
|
*/
|
|
9526
|
-
createUserGroupAccessScope: (groupId: string, data: CreateAccessScopeRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope, any>>;
|
|
9766
|
+
createUserGroupAccessScope: (groupId: string, data: CreateAccessScopeRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope, any, {}>>;
|
|
9527
9767
|
/**
|
|
9528
9768
|
* No description
|
|
9529
9769
|
*
|
|
@@ -9534,7 +9774,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9534
9774
|
* @secure
|
|
9535
9775
|
* @response `204` `void` No Content
|
|
9536
9776
|
*/
|
|
9537
|
-
deleteUserGroupAccessScope: (groupId: string, scopeId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9777
|
+
deleteUserGroupAccessScope: (groupId: string, scopeId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9538
9778
|
/**
|
|
9539
9779
|
* No description
|
|
9540
9780
|
*
|
|
@@ -9545,7 +9785,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9545
9785
|
* @secure
|
|
9546
9786
|
* @response `200` `(UserGroupMember)[]` Success
|
|
9547
9787
|
*/
|
|
9548
|
-
getUserGroupMembers: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupMember[], any>>;
|
|
9788
|
+
getUserGroupMembers: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupMember[], any, {}>>;
|
|
9549
9789
|
/**
|
|
9550
9790
|
* No description
|
|
9551
9791
|
*
|
|
@@ -9559,7 +9799,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9559
9799
|
createUserGroupMember: (groupId: string, data: CreateGroupMemberRequest, query?: {
|
|
9560
9800
|
/** @format uuid */
|
|
9561
9801
|
userId?: string;
|
|
9562
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UserGroupMember, any>>;
|
|
9802
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UserGroupMember, any, {}>>;
|
|
9563
9803
|
/**
|
|
9564
9804
|
* No description
|
|
9565
9805
|
*
|
|
@@ -9570,7 +9810,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9570
9810
|
* @secure
|
|
9571
9811
|
* @response `204` `void` No Content
|
|
9572
9812
|
*/
|
|
9573
|
-
deleteUserGroupMember: (groupId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9813
|
+
deleteUserGroupMember: (groupId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9574
9814
|
/**
|
|
9575
9815
|
* No description
|
|
9576
9816
|
*
|
|
@@ -9589,7 +9829,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9589
9829
|
pageNumber?: number;
|
|
9590
9830
|
sortBy?: string;
|
|
9591
9831
|
sortDirection?: string;
|
|
9592
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UserGroupPaginated, any>>;
|
|
9832
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UserGroupPaginated, any, {}>>;
|
|
9593
9833
|
/**
|
|
9594
9834
|
* No description
|
|
9595
9835
|
*
|
|
@@ -9600,7 +9840,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9600
9840
|
* @secure
|
|
9601
9841
|
* @response `200` `UserGroup` Success
|
|
9602
9842
|
*/
|
|
9603
|
-
getUserGroup: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any>>;
|
|
9843
|
+
getUserGroup: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any, {}>>;
|
|
9604
9844
|
/**
|
|
9605
9845
|
* No description
|
|
9606
9846
|
*
|
|
@@ -9611,7 +9851,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9611
9851
|
* @secure
|
|
9612
9852
|
* @response `200` `UserGroup` Success
|
|
9613
9853
|
*/
|
|
9614
|
-
updateUserGroup: (groupId: string, data: UpdateUserGroupRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any>>;
|
|
9854
|
+
updateUserGroup: (groupId: string, data: UpdateUserGroupRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any, {}>>;
|
|
9615
9855
|
/**
|
|
9616
9856
|
* No description
|
|
9617
9857
|
*
|
|
@@ -9622,7 +9862,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9622
9862
|
* @secure
|
|
9623
9863
|
* @response `204` `void` No Content
|
|
9624
9864
|
*/
|
|
9625
|
-
deleteUserGroup: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9865
|
+
deleteUserGroup: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9626
9866
|
/**
|
|
9627
9867
|
* No description
|
|
9628
9868
|
*
|
|
@@ -9633,7 +9873,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9633
9873
|
* @secure
|
|
9634
9874
|
* @response `201` `UserGroup` Created
|
|
9635
9875
|
*/
|
|
9636
|
-
createUserGroup: (data: CreateUserGroupRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any>>;
|
|
9876
|
+
createUserGroup: (data: CreateUserGroupRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any, {}>>;
|
|
9637
9877
|
/**
|
|
9638
9878
|
* No description
|
|
9639
9879
|
*
|
|
@@ -9646,7 +9886,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9646
9886
|
* @response `404` `Error` Not Found
|
|
9647
9887
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9648
9888
|
*/
|
|
9649
|
-
requestImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9889
|
+
requestImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9650
9890
|
/**
|
|
9651
9891
|
* No description
|
|
9652
9892
|
*
|
|
@@ -9659,7 +9899,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9659
9899
|
* @response `404` `Error` Not Found
|
|
9660
9900
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9661
9901
|
*/
|
|
9662
|
-
allowImpersonation: (data: AllowImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9902
|
+
allowImpersonation: (data: AllowImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9663
9903
|
/**
|
|
9664
9904
|
* No description
|
|
9665
9905
|
*
|
|
@@ -9672,7 +9912,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9672
9912
|
* @response `404` `Error` Not Found
|
|
9673
9913
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9674
9914
|
*/
|
|
9675
|
-
allowImpersonationWithGuid: (allowToken: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9915
|
+
allowImpersonationWithGuid: (allowToken: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9676
9916
|
/**
|
|
9677
9917
|
* No description
|
|
9678
9918
|
*
|
|
@@ -9684,7 +9924,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9684
9924
|
* @response `204` `void` No Content
|
|
9685
9925
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9686
9926
|
*/
|
|
9687
|
-
beginImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9927
|
+
beginImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9688
9928
|
/**
|
|
9689
9929
|
* No description
|
|
9690
9930
|
*
|
|
@@ -9696,7 +9936,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9696
9936
|
* @response `204` `void` No Content
|
|
9697
9937
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9698
9938
|
*/
|
|
9699
|
-
stopImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9939
|
+
stopImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9700
9940
|
/**
|
|
9701
9941
|
* No description
|
|
9702
9942
|
*
|
|
@@ -9709,7 +9949,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9709
9949
|
* @response `404` `Error` Not Found
|
|
9710
9950
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9711
9951
|
*/
|
|
9712
|
-
forceImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9952
|
+
forceImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9713
9953
|
/**
|
|
9714
9954
|
* No description
|
|
9715
9955
|
*
|
|
@@ -9721,7 +9961,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9721
9961
|
* @response `204` `void` No Content
|
|
9722
9962
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9723
9963
|
*/
|
|
9724
|
-
extendImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9964
|
+
extendImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9725
9965
|
/**
|
|
9726
9966
|
* No description
|
|
9727
9967
|
*
|
|
@@ -9733,7 +9973,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9733
9973
|
* @response `204` `void` No Content
|
|
9734
9974
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9735
9975
|
*/
|
|
9736
|
-
inviteUser: (data: CreateInviteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9976
|
+
inviteUser: (data: CreateInviteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9737
9977
|
/**
|
|
9738
9978
|
* No description
|
|
9739
9979
|
*
|
|
@@ -9746,7 +9986,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9746
9986
|
* @response `401` `UnprocessableEntity` Unauthorized
|
|
9747
9987
|
* @response `404` `UnprocessableEntity` Not Found
|
|
9748
9988
|
*/
|
|
9749
|
-
resendInviteNotification: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9989
|
+
resendInviteNotification: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9750
9990
|
/**
|
|
9751
9991
|
* No description
|
|
9752
9992
|
*
|
|
@@ -9758,7 +9998,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9758
9998
|
* @response `200` `Invite` Success
|
|
9759
9999
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9760
10000
|
*/
|
|
9761
|
-
verifyUserInvite: (token: string, params?: RequestParams) => Promise<AxiosResponse<Invite, any>>;
|
|
10001
|
+
verifyUserInvite: (token: string, params?: RequestParams) => Promise<AxiosResponse<Invite, any, {}>>;
|
|
9762
10002
|
/**
|
|
9763
10003
|
* No description
|
|
9764
10004
|
*
|
|
@@ -9769,7 +10009,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9769
10009
|
* @secure
|
|
9770
10010
|
* @response `200` `(UserRelation)[]` Success
|
|
9771
10011
|
*/
|
|
9772
|
-
getUserRelations: (userId: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation[], any>>;
|
|
10012
|
+
getUserRelations: (userId: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation[], any, {}>>;
|
|
9773
10013
|
/**
|
|
9774
10014
|
* No description
|
|
9775
10015
|
*
|
|
@@ -9780,7 +10020,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9780
10020
|
* @secure
|
|
9781
10021
|
* @response `204` `void` No Content
|
|
9782
10022
|
*/
|
|
9783
|
-
createUserRelation: (userId: string, data: CreateUserRelationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
10023
|
+
createUserRelation: (userId: string, data: CreateUserRelationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9784
10024
|
/**
|
|
9785
10025
|
* No description
|
|
9786
10026
|
*
|
|
@@ -9791,7 +10031,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9791
10031
|
* @secure
|
|
9792
10032
|
* @response `200` `UserRelation` Success
|
|
9793
10033
|
*/
|
|
9794
|
-
getUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation, any>>;
|
|
10034
|
+
getUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation, any, {}>>;
|
|
9795
10035
|
/**
|
|
9796
10036
|
* No description
|
|
9797
10037
|
*
|
|
@@ -9802,7 +10042,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9802
10042
|
* @secure
|
|
9803
10043
|
* @response `204` `void` No Content
|
|
9804
10044
|
*/
|
|
9805
|
-
deleteUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
10045
|
+
deleteUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9806
10046
|
/**
|
|
9807
10047
|
* No description
|
|
9808
10048
|
*
|
|
@@ -9820,7 +10060,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9820
10060
|
pageNumber?: number;
|
|
9821
10061
|
sortBy?: string;
|
|
9822
10062
|
sortDirection?: string;
|
|
9823
|
-
}, params?: RequestParams) => Promise<AxiosResponse<User[], any>>;
|
|
10063
|
+
}, params?: RequestParams) => Promise<AxiosResponse<User[], any, {}>>;
|
|
9824
10064
|
/**
|
|
9825
10065
|
* No description
|
|
9826
10066
|
*
|
|
@@ -9832,7 +10072,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9832
10072
|
* @response `200` `DetailedUser` Success
|
|
9833
10073
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9834
10074
|
*/
|
|
9835
|
-
createUser: (data: CreateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
|
|
10075
|
+
createUser: (data: CreateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any, {}>>;
|
|
9836
10076
|
/**
|
|
9837
10077
|
* No description
|
|
9838
10078
|
*
|
|
@@ -9850,7 +10090,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9850
10090
|
pageNumber?: number;
|
|
9851
10091
|
sortBy?: string;
|
|
9852
10092
|
sortDirection?: string;
|
|
9853
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UserPaginated, any>>;
|
|
10093
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UserPaginated, any, {}>>;
|
|
9854
10094
|
/**
|
|
9855
10095
|
* No description
|
|
9856
10096
|
*
|
|
@@ -9861,7 +10101,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9861
10101
|
* @secure
|
|
9862
10102
|
* @response `200` `AdminAccessUser` Success
|
|
9863
10103
|
*/
|
|
9864
|
-
getUserByEmail: (data: GetUserByEmailRequest, params?: RequestParams) => Promise<AxiosResponse<AdminAccessUser, any>>;
|
|
10104
|
+
getUserByEmail: (data: GetUserByEmailRequest, params?: RequestParams) => Promise<AxiosResponse<AdminAccessUser, any, {}>>;
|
|
9865
10105
|
/**
|
|
9866
10106
|
* No description
|
|
9867
10107
|
*
|
|
@@ -9873,7 +10113,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9873
10113
|
* @response `200` `User` Success
|
|
9874
10114
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9875
10115
|
*/
|
|
9876
|
-
signUp: (data: RegisterUserRequest, params?: RequestParams) => Promise<AxiosResponse<User, any>>;
|
|
10116
|
+
signUp: (data: RegisterUserRequest, params?: RequestParams) => Promise<AxiosResponse<User, any, {}>>;
|
|
9877
10117
|
/**
|
|
9878
10118
|
* No description
|
|
9879
10119
|
*
|
|
@@ -9885,7 +10125,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9885
10125
|
* @response `200` `DetailedUser` Success
|
|
9886
10126
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9887
10127
|
*/
|
|
9888
|
-
replaceUser: (id: string, data: UpdateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
|
|
10128
|
+
replaceUser: (id: string, data: UpdateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any, {}>>;
|
|
9889
10129
|
/**
|
|
9890
10130
|
* No description
|
|
9891
10131
|
*
|
|
@@ -9899,7 +10139,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9899
10139
|
deleteUser: (id: string, query?: {
|
|
9900
10140
|
/** @default false */
|
|
9901
10141
|
permanent?: boolean;
|
|
9902
|
-
}, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
10142
|
+
}, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9903
10143
|
/**
|
|
9904
10144
|
* No description
|
|
9905
10145
|
*
|
|
@@ -9910,7 +10150,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9910
10150
|
* @secure
|
|
9911
10151
|
* @response `204` `void` No Content
|
|
9912
10152
|
*/
|
|
9913
|
-
restoreUser: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
10153
|
+
restoreUser: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9914
10154
|
/**
|
|
9915
10155
|
* No description
|
|
9916
10156
|
*
|
|
@@ -9922,7 +10162,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9922
10162
|
* @response `204` `void` No Content
|
|
9923
10163
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9924
10164
|
*/
|
|
9925
|
-
changePassword: (data: ChangePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
10165
|
+
changePassword: (data: ChangePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9926
10166
|
/**
|
|
9927
10167
|
* No description
|
|
9928
10168
|
*
|
|
@@ -9934,7 +10174,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9934
10174
|
* @response `204` `void` No Content
|
|
9935
10175
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9936
10176
|
*/
|
|
9937
|
-
verifyPassword: (data: VerifyPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
10177
|
+
verifyPassword: (data: VerifyPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9938
10178
|
/**
|
|
9939
10179
|
* No description
|
|
9940
10180
|
*
|
|
@@ -9946,7 +10186,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9946
10186
|
* @response `204` `void` No Content
|
|
9947
10187
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9948
10188
|
*/
|
|
9949
|
-
overridePassword: (id: string, data: OverridePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
10189
|
+
overridePassword: (id: string, data: OverridePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9950
10190
|
/**
|
|
9951
10191
|
* No description
|
|
9952
10192
|
*
|
|
@@ -9958,7 +10198,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9958
10198
|
* @response `204` `void` No Content
|
|
9959
10199
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9960
10200
|
*/
|
|
9961
|
-
forgotPassword: (data: SendForgotPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
10201
|
+
forgotPassword: (data: SendForgotPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9962
10202
|
/**
|
|
9963
10203
|
* No description
|
|
9964
10204
|
*
|
|
@@ -9970,7 +10210,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9970
10210
|
* @response `204` `void` No Content
|
|
9971
10211
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9972
10212
|
*/
|
|
9973
|
-
sendMobilePhoneVerificationCode: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
10213
|
+
sendMobilePhoneVerificationCode: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9974
10214
|
/**
|
|
9975
10215
|
* No description
|
|
9976
10216
|
*
|
|
@@ -9982,7 +10222,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9982
10222
|
* @response `204` `void` No Content
|
|
9983
10223
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9984
10224
|
*/
|
|
9985
|
-
verifyUserMobilePhone: (data: UserMobilePhoneVerificationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
10225
|
+
verifyUserMobilePhone: (data: UserMobilePhoneVerificationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9986
10226
|
/**
|
|
9987
10227
|
* No description
|
|
9988
10228
|
*
|
|
@@ -9994,7 +10234,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9994
10234
|
* @response `200` `ImpersonatedDetailedUser` Success
|
|
9995
10235
|
* @response `401` `ProblemDetails` Unauthorized
|
|
9996
10236
|
*/
|
|
9997
|
-
getMe: (params?: RequestParams) => Promise<AxiosResponse<ImpersonatedDetailedUser, any>>;
|
|
10237
|
+
getMe: (params?: RequestParams) => Promise<AxiosResponse<ImpersonatedDetailedUser, any, {}>>;
|
|
9998
10238
|
/**
|
|
9999
10239
|
* No description
|
|
10000
10240
|
*
|
|
@@ -10005,7 +10245,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10005
10245
|
* @secure
|
|
10006
10246
|
* @response `200` `DetailedUser` Success
|
|
10007
10247
|
*/
|
|
10008
|
-
replaceMe: (data: UpdateMeRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
|
|
10248
|
+
replaceMe: (data: UpdateMeRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any, {}>>;
|
|
10009
10249
|
/**
|
|
10010
10250
|
* @description Update the phone number If changed will send a verification code to the new number
|
|
10011
10251
|
*
|
|
@@ -10016,7 +10256,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10016
10256
|
* @secure
|
|
10017
10257
|
* @response `204` `DetailedUser` No Content
|
|
10018
10258
|
*/
|
|
10019
|
-
updateMyPhone: (data: UpdateMobilePhoneRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
|
|
10259
|
+
updateMyPhone: (data: UpdateMobilePhoneRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any, {}>>;
|
|
10020
10260
|
/**
|
|
10021
10261
|
* No description
|
|
10022
10262
|
*
|
|
@@ -10027,7 +10267,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10027
10267
|
* @secure
|
|
10028
10268
|
* @response `200` `(UserRelationship)[]` Success
|
|
10029
10269
|
*/
|
|
10030
|
-
getMyRelationships: (params?: RequestParams) => Promise<AxiosResponse<UserRelationship[], any>>;
|
|
10270
|
+
getMyRelationships: (params?: RequestParams) => Promise<AxiosResponse<UserRelationship[], any, {}>>;
|
|
10031
10271
|
/**
|
|
10032
10272
|
* No description
|
|
10033
10273
|
*
|
|
@@ -10038,7 +10278,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10038
10278
|
* @secure
|
|
10039
10279
|
* @response `200` `(UserRelationshipProspect)[]` Success
|
|
10040
10280
|
*/
|
|
10041
|
-
getMyRelationshipProspects: (params?: RequestParams) => Promise<AxiosResponse<UserRelationshipProspect[], any>>;
|
|
10281
|
+
getMyRelationshipProspects: (params?: RequestParams) => Promise<AxiosResponse<UserRelationshipProspect[], any, {}>>;
|
|
10042
10282
|
/**
|
|
10043
10283
|
* No description
|
|
10044
10284
|
*
|
|
@@ -10049,7 +10289,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10049
10289
|
* @secure
|
|
10050
10290
|
* @response `204` `void` No Content
|
|
10051
10291
|
*/
|
|
10052
|
-
deleteRelationshipProspect: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
10292
|
+
deleteRelationshipProspect: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
10053
10293
|
/**
|
|
10054
10294
|
* No description
|
|
10055
10295
|
*
|
|
@@ -10060,7 +10300,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10060
10300
|
* @secure
|
|
10061
10301
|
* @response `204` `void` No Content
|
|
10062
10302
|
*/
|
|
10063
|
-
deleteMe: (data: UserAccountDeletionRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
10303
|
+
deleteMe: (data: UserAccountDeletionRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
10064
10304
|
/**
|
|
10065
10305
|
* No description
|
|
10066
10306
|
*
|
|
@@ -10071,7 +10311,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10071
10311
|
* @secure
|
|
10072
10312
|
* @response `200` `GetForm` Success
|
|
10073
10313
|
*/
|
|
10074
|
-
getWorkflow: (data: GetWorkflowRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any>>;
|
|
10314
|
+
getWorkflow: (data: GetWorkflowRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any, {}>>;
|
|
10075
10315
|
};
|
|
10076
10316
|
sso: {
|
|
10077
10317
|
/**
|
|
@@ -10083,6 +10323,6 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10083
10323
|
* @secure
|
|
10084
10324
|
* @response `200` `void` Success
|
|
10085
10325
|
*/
|
|
10086
|
-
logoutList: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
10326
|
+
logoutList: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
10087
10327
|
};
|
|
10088
10328
|
}
|