@matech/thebigpos-sdk 2.40.0-rc.1 → 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 -17
- package/dist/index.d.ts +492 -421
- package/dist/index.js +5 -7
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +562 -338
package/dist/index.d.ts
CHANGED
|
@@ -41,13 +41,13 @@ export type LoanHispanicEthnicity = "Mexican" | "PuertoRican" | "Cuban" | "Other
|
|
|
41
41
|
export type LoanGiftSource = "CommunityNonProfit" | "Employer" | "FederalAgency" | "LocalAgency" | "Relative" | "ReligiousNonProfit" | "StateAgency" | "UnmarriedPartner" | "Lender" | "Other";
|
|
42
42
|
export type LoanGiftAssetType = "Cash" | "Asset" | "Equity";
|
|
43
43
|
export type LoanGenderType = "Male" | "Female";
|
|
44
|
+
export type LoanDocumentFolderPermissionLevel = "None" | "Read" | "Write" | "Manage";
|
|
44
45
|
export type LoanCitizenship = "USCitizen" | "PermanentResidentAlien" | "NonPermanentResidentAlien";
|
|
45
46
|
export type LoanBankruptcyType = "Chapter7" | "Chapter11" | "Chapter12" | "Chapter13";
|
|
46
47
|
export type LoanAsianRace = "AsianIndian" | "Chinese" | "Filipino" | "Japanese" | "Korean" | "Vietnamese" | "Other";
|
|
47
48
|
export type LoanAccountAssetType = "Checking" | "Savings" | "MoneyMarket" | "CertificateOfDeposit" | "MutualFund" | "Stocks" | "Bonds" | "Retirement" | "BridgeLoanProceeds" | "IndividualDevelopmentAccount" | "TrustAccount" | "CashValueOfLifeInsurance" | "Other";
|
|
48
49
|
export type LoanAccessScopeType = "User" | "Branch";
|
|
49
50
|
export type LOSStatus = "Unknown" | "Pending" | "Retrying" | "Successful" | "Failed" | "FailedPermanently" | "Uploaded" | "PendingSync";
|
|
50
|
-
export type FolderPermissionLevel = "None" | "Read" | "Write" | "Manage";
|
|
51
51
|
export type FilterType = "DateGreaterThanOrEqualTo" | "DateGreaterThan" | "DateLessThan" | "DateLessThanOrEqualTo" | "DateEquals" | "DateDoesntEqual" | "DateNonEmpty" | "DateEmpty" | "StringContains" | "StringEquals" | "StringNotEmpty" | "StringNotEquals" | "StringNotContains";
|
|
52
52
|
export type Environment = "Development" | "Staging" | "UAT" | "Production";
|
|
53
53
|
export type EntityType = "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Realtor";
|
|
@@ -115,7 +115,7 @@ export interface AccountBilling {
|
|
|
115
115
|
contractedRate: number;
|
|
116
116
|
}
|
|
117
117
|
export interface AccountBillingRequest {
|
|
118
|
-
billingType:
|
|
118
|
+
billingType: AccountBillingRequestBillingTypeEnum;
|
|
119
119
|
/**
|
|
120
120
|
* @format double
|
|
121
121
|
* @min 0
|
|
@@ -435,7 +435,7 @@ export interface AuditLogEntry {
|
|
|
435
435
|
/** @format uuid */
|
|
436
436
|
id: string;
|
|
437
437
|
entityType: string;
|
|
438
|
-
changeType:
|
|
438
|
+
changeType: AuditLogEntryChangeTypeEnum;
|
|
439
439
|
/** @format uuid */
|
|
440
440
|
entityId: string;
|
|
441
441
|
performedBy?: AuditLogUser | null;
|
|
@@ -719,7 +719,7 @@ export interface CorporateSearchCriteria {
|
|
|
719
719
|
isActive?: boolean | null;
|
|
720
720
|
}
|
|
721
721
|
export interface CreateAccessScopeRequest {
|
|
722
|
-
scopeType:
|
|
722
|
+
scopeType: CreateAccessScopeRequestScopeTypeEnum;
|
|
723
723
|
/** @format uuid */
|
|
724
724
|
userId?: string | null;
|
|
725
725
|
/** @format uuid */
|
|
@@ -742,7 +742,7 @@ export interface CreateAccountRequest {
|
|
|
742
742
|
*/
|
|
743
743
|
nlmsid: number;
|
|
744
744
|
settings: AccountSettingsRequest;
|
|
745
|
-
environment:
|
|
745
|
+
environment: CreateAccountRequestEnvironmentEnum;
|
|
746
746
|
losIntegration: LOSIntegration;
|
|
747
747
|
billingSettings: AccountBillingRequest;
|
|
748
748
|
}
|
|
@@ -778,8 +778,8 @@ export interface CreateCustomFieldDefinitionRequest {
|
|
|
778
778
|
name: string;
|
|
779
779
|
defaultValue?: string | null;
|
|
780
780
|
regexPattern?: string | null;
|
|
781
|
-
dataType:
|
|
782
|
-
entityType:
|
|
781
|
+
dataType: CreateCustomFieldDefinitionRequestDataTypeEnum;
|
|
782
|
+
entityType: CreateCustomFieldDefinitionRequestEntityTypeEnum;
|
|
783
783
|
options?: CustomFieldOptionRequest[] | null;
|
|
784
784
|
permissions?: CustomFieldPermissionRequest[] | null;
|
|
785
785
|
}
|
|
@@ -799,7 +799,7 @@ export interface CreateDocumentTemplateRequest {
|
|
|
799
799
|
export interface CreateGroupMemberRequest {
|
|
800
800
|
/** @format uuid */
|
|
801
801
|
userId: string;
|
|
802
|
-
loanRole:
|
|
802
|
+
loanRole: CreateGroupMemberRequestLoanRoleEnum;
|
|
803
803
|
}
|
|
804
804
|
export interface CreateInviteRequest {
|
|
805
805
|
/** @minLength 1 */
|
|
@@ -810,7 +810,7 @@ export interface CreateInviteRequest {
|
|
|
810
810
|
emailAddress: string;
|
|
811
811
|
phoneNumber?: string | null;
|
|
812
812
|
/** @deprecated */
|
|
813
|
-
relationship:
|
|
813
|
+
relationship: CreateInviteRequestRelationshipEnum;
|
|
814
814
|
loanID: string;
|
|
815
815
|
route?: string | null;
|
|
816
816
|
/** @format uuid */
|
|
@@ -840,7 +840,7 @@ export interface CreateLoanImportRequest {
|
|
|
840
840
|
* @minLength 1
|
|
841
841
|
*/
|
|
842
842
|
startDate: string;
|
|
843
|
-
importMode:
|
|
843
|
+
importMode: CreateLoanImportRequestImportModeEnum;
|
|
844
844
|
}
|
|
845
845
|
export interface CreateSession {
|
|
846
846
|
sessionId: string;
|
|
@@ -858,7 +858,7 @@ export interface CreateUserDeviceRequest {
|
|
|
858
858
|
token: string;
|
|
859
859
|
}
|
|
860
860
|
export interface CreateUserDraft {
|
|
861
|
-
loanRole:
|
|
861
|
+
loanRole: CreateUserDraftLoanRoleEnum;
|
|
862
862
|
}
|
|
863
863
|
export interface CreateUserGroupRequest {
|
|
864
864
|
/**
|
|
@@ -939,8 +939,8 @@ export interface CustomFieldDefinition {
|
|
|
939
939
|
name: string;
|
|
940
940
|
defaultValue?: string | null;
|
|
941
941
|
regexPattern?: string | null;
|
|
942
|
-
dataType:
|
|
943
|
-
entityType:
|
|
942
|
+
dataType: CustomFieldDefinitionDataTypeEnum;
|
|
943
|
+
entityType: CustomFieldDefinitionEntityTypeEnum;
|
|
944
944
|
options: CustomFieldOption[];
|
|
945
945
|
permissions: CustomFieldPermission[];
|
|
946
946
|
encompassMapping?: EncompassMapping | null;
|
|
@@ -954,7 +954,7 @@ export interface CustomFieldEntry {
|
|
|
954
954
|
displayOrder: number;
|
|
955
955
|
name: string;
|
|
956
956
|
value: string;
|
|
957
|
-
dataType:
|
|
957
|
+
dataType: CustomFieldEntryDataTypeEnum;
|
|
958
958
|
}
|
|
959
959
|
export interface CustomFieldOption {
|
|
960
960
|
/** @format uuid */
|
|
@@ -971,12 +971,12 @@ export interface CustomFieldOptionRequest {
|
|
|
971
971
|
export interface CustomFieldPermission {
|
|
972
972
|
/** @format uuid */
|
|
973
973
|
id: string;
|
|
974
|
-
role:
|
|
975
|
-
accessLevel:
|
|
974
|
+
role: CustomFieldPermissionRoleEnum;
|
|
975
|
+
accessLevel: CustomFieldPermissionAccessLevelEnum;
|
|
976
976
|
}
|
|
977
977
|
export interface CustomFieldPermissionRequest {
|
|
978
|
-
role:
|
|
979
|
-
accessLevel:
|
|
978
|
+
role: CustomFieldPermissionRequestRoleEnum;
|
|
979
|
+
accessLevel: CustomFieldPermissionRequestAccessLevelEnum;
|
|
980
980
|
}
|
|
981
981
|
export interface CustomFieldValue {
|
|
982
982
|
/** @format uuid */
|
|
@@ -987,7 +987,7 @@ export interface CustomFieldValue {
|
|
|
987
987
|
customFieldDefinitionID: string;
|
|
988
988
|
value: string;
|
|
989
989
|
definitionName: string;
|
|
990
|
-
dataType:
|
|
990
|
+
dataType: CustomFieldValueDataTypeEnum;
|
|
991
991
|
}
|
|
992
992
|
export interface CustomLoanData {
|
|
993
993
|
eConsentInformation?: EConsentInformation | null;
|
|
@@ -1231,7 +1231,7 @@ export interface Draft {
|
|
|
1231
1231
|
siteConfiguration: SiteConfigurationReduced;
|
|
1232
1232
|
/** @format uuid */
|
|
1233
1233
|
loanID?: string | null;
|
|
1234
|
-
type:
|
|
1234
|
+
type: DraftTypeEnum;
|
|
1235
1235
|
isCoBorrower: boolean;
|
|
1236
1236
|
}
|
|
1237
1237
|
export interface DraftContent {
|
|
@@ -1249,7 +1249,7 @@ export interface DraftContent {
|
|
|
1249
1249
|
siteConfiguration: SiteConfigurationReduced;
|
|
1250
1250
|
/** @format uuid */
|
|
1251
1251
|
loanID?: string | null;
|
|
1252
|
-
type:
|
|
1252
|
+
type: DraftContentTypeEnum;
|
|
1253
1253
|
isCoBorrower: boolean;
|
|
1254
1254
|
applicationPayload: any;
|
|
1255
1255
|
}
|
|
@@ -1340,7 +1340,7 @@ export interface EncompassCredentialsDetail {
|
|
|
1340
1340
|
defaultLoanOfficerUserName?: string | null;
|
|
1341
1341
|
clearStateIfUnlicensed: boolean;
|
|
1342
1342
|
baseUrl?: string | null;
|
|
1343
|
-
signingMethod:
|
|
1343
|
+
signingMethod: EncompassCredentialsDetailSigningMethodEnum;
|
|
1344
1344
|
subscriptionId?: string | null;
|
|
1345
1345
|
environment?: string | null;
|
|
1346
1346
|
}
|
|
@@ -1355,7 +1355,7 @@ export interface EncompassCredentialsRequest {
|
|
|
1355
1355
|
defaultLoanOfficerUserName?: string | null;
|
|
1356
1356
|
clearStateIfUnlicensed: boolean;
|
|
1357
1357
|
baseUrl?: string | null;
|
|
1358
|
-
signingMethod:
|
|
1358
|
+
signingMethod: EncompassCredentialsRequestSigningMethodEnum;
|
|
1359
1359
|
subscriptionId?: string | null;
|
|
1360
1360
|
environment?: string | null;
|
|
1361
1361
|
clientID?: string | null;
|
|
@@ -1440,8 +1440,8 @@ export interface EncompassRequestLog {
|
|
|
1440
1440
|
losId?: string | null;
|
|
1441
1441
|
/** @format uuid */
|
|
1442
1442
|
accountId: string;
|
|
1443
|
-
operationType:
|
|
1444
|
-
outcome:
|
|
1443
|
+
operationType: EncompassRequestLogOperationTypeEnum;
|
|
1444
|
+
outcome: EncompassRequestLogOutcomeEnum;
|
|
1445
1445
|
message: string;
|
|
1446
1446
|
endpoint?: string | null;
|
|
1447
1447
|
httpMethod?: string | null;
|
|
@@ -1658,7 +1658,7 @@ export interface FusionFieldDisplay {
|
|
|
1658
1658
|
fieldValue: string;
|
|
1659
1659
|
}
|
|
1660
1660
|
export interface FusionReportFilter {
|
|
1661
|
-
filterType:
|
|
1661
|
+
filterType: FusionReportFilterFilterTypeEnum;
|
|
1662
1662
|
targetField: string;
|
|
1663
1663
|
targetValue: string;
|
|
1664
1664
|
}
|
|
@@ -1772,7 +1772,7 @@ export interface GuidPatchOperation {
|
|
|
1772
1772
|
from?: string | null;
|
|
1773
1773
|
}
|
|
1774
1774
|
export interface IPAddress {
|
|
1775
|
-
addressFamily:
|
|
1775
|
+
addressFamily: IpAddressAddressFamilyEnum;
|
|
1776
1776
|
/** @format int64 */
|
|
1777
1777
|
scopeId: number;
|
|
1778
1778
|
isIPv6Multicast: boolean;
|
|
@@ -2026,7 +2026,7 @@ export interface Loan {
|
|
|
2026
2026
|
userLoans: UserLoan[];
|
|
2027
2027
|
contacts: LoanContact[];
|
|
2028
2028
|
customFields: CustomFieldEntry[];
|
|
2029
|
-
signingMethod:
|
|
2029
|
+
signingMethod: LoanSigningMethodEnum;
|
|
2030
2030
|
}
|
|
2031
2031
|
export interface LoanApplication {
|
|
2032
2032
|
/** @format uuid */
|
|
@@ -2082,7 +2082,7 @@ export interface LoanBorrower {
|
|
|
2082
2082
|
citizenship?: LoanCitizenship | null;
|
|
2083
2083
|
maritalStatus?: LoanMaritalStatus | null;
|
|
2084
2084
|
languagePreference?: LoanLanguagePreference | null;
|
|
2085
|
-
applicationStatus:
|
|
2085
|
+
applicationStatus: LoanBorrowerApplicationStatusEnum;
|
|
2086
2086
|
/** @format int32 */
|
|
2087
2087
|
numberOfDependents?: number | null;
|
|
2088
2088
|
isPrimaryBorrower: boolean;
|
|
@@ -2939,7 +2939,7 @@ export interface LoanContact {
|
|
|
2939
2939
|
email?: string | null;
|
|
2940
2940
|
phone?: string | null;
|
|
2941
2941
|
companyName?: string | null;
|
|
2942
|
-
role:
|
|
2942
|
+
role: LoanContactRoleEnum;
|
|
2943
2943
|
}
|
|
2944
2944
|
export interface LoanContactList {
|
|
2945
2945
|
email: string;
|
|
@@ -2988,12 +2988,12 @@ export interface LoanDocumentFolderPermission {
|
|
|
2988
2988
|
id: string;
|
|
2989
2989
|
/** @format uuid */
|
|
2990
2990
|
loanDocumentFolderID: string;
|
|
2991
|
-
role:
|
|
2992
|
-
level:
|
|
2991
|
+
role: LoanDocumentFolderPermissionRoleEnum;
|
|
2992
|
+
level: LoanDocumentFolderPermissionLevelEnum;
|
|
2993
2993
|
}
|
|
2994
2994
|
export interface LoanDocumentFolderPermissionRequest {
|
|
2995
|
-
role:
|
|
2996
|
-
level:
|
|
2995
|
+
role: LoanDocumentFolderPermissionRequestRoleEnum;
|
|
2996
|
+
level: LoanDocumentFolderPermissionRequestLevelEnum;
|
|
2997
2997
|
}
|
|
2998
2998
|
export interface LoanDocumentFolderUsage {
|
|
2999
2999
|
/** @format uuid */
|
|
@@ -3101,13 +3101,13 @@ export interface LoanImport {
|
|
|
3101
3101
|
/** @format int32 */
|
|
3102
3102
|
importedCount: number;
|
|
3103
3103
|
statusMessage?: string | null;
|
|
3104
|
-
status:
|
|
3105
|
-
importMode:
|
|
3104
|
+
status: LoanImportStatusEnum;
|
|
3105
|
+
importMode: LoanImportImportModeEnum;
|
|
3106
3106
|
/** @format date-time */
|
|
3107
3107
|
createdAt?: string | null;
|
|
3108
3108
|
}
|
|
3109
3109
|
export interface LoanImportLog {
|
|
3110
|
-
level:
|
|
3110
|
+
level: LoanImportLogLevelEnum;
|
|
3111
3111
|
message: string;
|
|
3112
3112
|
/** @format date-time */
|
|
3113
3113
|
createdAt: string;
|
|
@@ -3162,8 +3162,8 @@ export interface LoanListPaginated {
|
|
|
3162
3162
|
export interface LoanLog {
|
|
3163
3163
|
/** @format uuid */
|
|
3164
3164
|
id: string;
|
|
3165
|
-
level:
|
|
3166
|
-
type:
|
|
3165
|
+
level: LoanLogLevelEnum;
|
|
3166
|
+
type: LoanLogTypeEnum;
|
|
3167
3167
|
message: string;
|
|
3168
3168
|
/** @format date-time */
|
|
3169
3169
|
createdAt: string;
|
|
@@ -3171,8 +3171,8 @@ export interface LoanLog {
|
|
|
3171
3171
|
export interface LoanLogDetail {
|
|
3172
3172
|
/** @format uuid */
|
|
3173
3173
|
id: string;
|
|
3174
|
-
level:
|
|
3175
|
-
type:
|
|
3174
|
+
level: LoanLogDetailLevelEnum;
|
|
3175
|
+
type: LoanLogDetailTypeEnum;
|
|
3176
3176
|
message: string;
|
|
3177
3177
|
/** @format date-time */
|
|
3178
3178
|
createdAt: string;
|
|
@@ -3438,7 +3438,7 @@ export interface LoanTaskSearchRequest {
|
|
|
3438
3438
|
loanStatus?: LoanTaskActivityFilter | null;
|
|
3439
3439
|
}
|
|
3440
3440
|
export interface LoanTaskStatusSummary {
|
|
3441
|
-
status:
|
|
3441
|
+
status: LoanTaskStatusSummaryStatusEnum;
|
|
3442
3442
|
/** @format int32 */
|
|
3443
3443
|
count: number;
|
|
3444
3444
|
}
|
|
@@ -3450,7 +3450,7 @@ export interface LoanUser {
|
|
|
3450
3450
|
email: string;
|
|
3451
3451
|
phone?: string | null;
|
|
3452
3452
|
role: string;
|
|
3453
|
-
loanRole:
|
|
3453
|
+
loanRole: LoanUserLoanRoleEnum;
|
|
3454
3454
|
isUser: boolean;
|
|
3455
3455
|
/** @format date-time */
|
|
3456
3456
|
createdAt: string;
|
|
@@ -3483,7 +3483,7 @@ export interface LosOperationTracking {
|
|
|
3483
3483
|
operationType: string;
|
|
3484
3484
|
correlationKey: string;
|
|
3485
3485
|
lastTriggerSource?: string | null;
|
|
3486
|
-
status:
|
|
3486
|
+
status: LosOperationTrackingStatusEnum;
|
|
3487
3487
|
/** @format date-time */
|
|
3488
3488
|
createdAt: string;
|
|
3489
3489
|
/** @format date-time */
|
|
@@ -3544,7 +3544,7 @@ export interface LosSyncStep {
|
|
|
3544
3544
|
/** @format int32 */
|
|
3545
3545
|
order: number;
|
|
3546
3546
|
name: string;
|
|
3547
|
-
severity:
|
|
3547
|
+
severity: LosSyncStepSeverityEnum;
|
|
3548
3548
|
message: string;
|
|
3549
3549
|
/** @format date-time */
|
|
3550
3550
|
atUtc: string;
|
|
@@ -4168,7 +4168,7 @@ export interface SSOTokenRequest {
|
|
|
4168
4168
|
redirectUri: string;
|
|
4169
4169
|
}
|
|
4170
4170
|
export interface SamlMetadataRequest {
|
|
4171
|
-
ssoIntegration:
|
|
4171
|
+
ssoIntegration: SamlMetadataRequestSsoIntegrationEnum;
|
|
4172
4172
|
}
|
|
4173
4173
|
export interface SendForgotPasswordRequest {
|
|
4174
4174
|
/**
|
|
@@ -4219,7 +4219,7 @@ export interface SiteConfiguration {
|
|
|
4219
4219
|
deletedAt?: string | null;
|
|
4220
4220
|
/** @format uuid */
|
|
4221
4221
|
id: string;
|
|
4222
|
-
type:
|
|
4222
|
+
type: SiteConfigurationTypeEnum;
|
|
4223
4223
|
/** @format uuid */
|
|
4224
4224
|
entityID: string;
|
|
4225
4225
|
/** @format int32 */
|
|
@@ -4413,7 +4413,7 @@ export interface SiteConfigurationByUrl {
|
|
|
4413
4413
|
deletedAt?: string | null;
|
|
4414
4414
|
/** @format uuid */
|
|
4415
4415
|
id: string;
|
|
4416
|
-
type:
|
|
4416
|
+
type: SiteConfigurationByUrlTypeEnum;
|
|
4417
4417
|
/** @format uuid */
|
|
4418
4418
|
entityID: string;
|
|
4419
4419
|
/** @format int32 */
|
|
@@ -4624,7 +4624,7 @@ export interface SiteConfigurationForm {
|
|
|
4624
4624
|
export interface SiteConfigurationReduced {
|
|
4625
4625
|
/** @format uuid */
|
|
4626
4626
|
id: string;
|
|
4627
|
-
type:
|
|
4627
|
+
type: SiteConfigurationReducedTypeEnum;
|
|
4628
4628
|
url?: string | null;
|
|
4629
4629
|
name: string;
|
|
4630
4630
|
/** @format int64 */
|
|
@@ -4641,7 +4641,7 @@ export interface SiteConfigurationRequest {
|
|
|
4641
4641
|
entityID: string;
|
|
4642
4642
|
/** @format int32 */
|
|
4643
4643
|
entityType: number;
|
|
4644
|
-
type:
|
|
4644
|
+
type: SiteConfigurationRequestTypeEnum;
|
|
4645
4645
|
url: string;
|
|
4646
4646
|
name: string;
|
|
4647
4647
|
introduction?: string | null;
|
|
@@ -4816,7 +4816,7 @@ export interface SiteConfigurationSearchCriteria {
|
|
|
4816
4816
|
export interface SiteConfigurationSummary {
|
|
4817
4817
|
/** @format uuid */
|
|
4818
4818
|
id: string;
|
|
4819
|
-
type:
|
|
4819
|
+
type: SiteConfigurationSummaryTypeEnum;
|
|
4820
4820
|
url?: string | null;
|
|
4821
4821
|
name: string;
|
|
4822
4822
|
/** @format int64 */
|
|
@@ -5432,7 +5432,7 @@ export interface UserDevice {
|
|
|
5432
5432
|
export interface UserDraft {
|
|
5433
5433
|
/** @format uuid */
|
|
5434
5434
|
draftID: string;
|
|
5435
|
-
role:
|
|
5435
|
+
role: UserDraftRoleEnum;
|
|
5436
5436
|
user: User;
|
|
5437
5437
|
}
|
|
5438
5438
|
export interface UserDraftPaginated {
|
|
@@ -5456,7 +5456,7 @@ export interface UserGroupAccessScope {
|
|
|
5456
5456
|
id: string;
|
|
5457
5457
|
/** @format uuid */
|
|
5458
5458
|
groupId: string;
|
|
5459
|
-
scopeType:
|
|
5459
|
+
scopeType: UserGroupAccessScopeScopeTypeEnum;
|
|
5460
5460
|
/** @format uuid */
|
|
5461
5461
|
userId?: string | null;
|
|
5462
5462
|
/** @format uuid */
|
|
@@ -5489,24 +5489,29 @@ export interface UserLoan {
|
|
|
5489
5489
|
deletedAt?: string | null;
|
|
5490
5490
|
loanID: string;
|
|
5491
5491
|
user: User;
|
|
5492
|
-
role:
|
|
5492
|
+
role: UserLoanRoleEnum;
|
|
5493
5493
|
/** @format int32 */
|
|
5494
5494
|
borrowerPair?: number | null;
|
|
5495
5495
|
/** @format int32 */
|
|
5496
5496
|
borrowerPosition?: number | null;
|
|
5497
5497
|
customLoanData?: CustomLoanData | null;
|
|
5498
|
+
consents: UserLoanConsent[];
|
|
5498
5499
|
}
|
|
5499
5500
|
export interface UserLoanConsent {
|
|
5500
5501
|
/** @format uuid */
|
|
5501
5502
|
id: string;
|
|
5502
5503
|
/** @format uuid */
|
|
5503
5504
|
userLoanID: string;
|
|
5504
|
-
type:
|
|
5505
|
+
type: UserLoanConsentTypeEnum;
|
|
5505
5506
|
providedConsent: boolean;
|
|
5506
5507
|
ipAddress?: string | null;
|
|
5507
|
-
losSyncStatus:
|
|
5508
|
+
losSyncStatus: UserLoanConsentLosSyncStatusEnum;
|
|
5508
5509
|
/** @format date-time */
|
|
5509
5510
|
createdAt: string;
|
|
5511
|
+
/** @format date-time */
|
|
5512
|
+
updatedAt?: string | null;
|
|
5513
|
+
/** @format date-time */
|
|
5514
|
+
deletedAt?: string | null;
|
|
5510
5515
|
}
|
|
5511
5516
|
export interface UserLoanTask {
|
|
5512
5517
|
/** @format uuid */
|
|
@@ -5641,7 +5646,7 @@ export interface UserSummary {
|
|
|
5641
5646
|
id: string;
|
|
5642
5647
|
name?: string | null;
|
|
5643
5648
|
email?: string | null;
|
|
5644
|
-
role:
|
|
5649
|
+
role: UserSummaryRoleEnum;
|
|
5645
5650
|
}
|
|
5646
5651
|
export interface VerifyPasswordRequest {
|
|
5647
5652
|
/**
|
|
@@ -5674,6 +5679,70 @@ export interface Workflow {
|
|
|
5674
5679
|
tileSubtitle: string;
|
|
5675
5680
|
icon: string;
|
|
5676
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";
|
|
5677
5746
|
import type { AxiosInstance, AxiosRequestConfig, AxiosResponse, ResponseType } from "axios";
|
|
5678
5747
|
export type QueryParamsType = Record<string | number, any>;
|
|
5679
5748
|
export interface FullRequestParams extends Omit<AxiosRequestConfig, "data" | "params" | "url" | "responseType"> {
|
|
@@ -5719,7 +5788,7 @@ export declare class HttpClient<SecurityDataType = unknown> {
|
|
|
5719
5788
|
}
|
|
5720
5789
|
/**
|
|
5721
5790
|
* @title The Big POS API
|
|
5722
|
-
* @version v2.
|
|
5791
|
+
* @version v2.40.0
|
|
5723
5792
|
* @termsOfService https://www.thebigpos.com/terms-of-use/
|
|
5724
5793
|
* @contact Mortgage Automation Technologies <support@thebigpos.com> (https://www.thebigpos.com/terms-of-use/)
|
|
5725
5794
|
*/
|
|
@@ -5733,7 +5802,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5733
5802
|
* @secure
|
|
5734
5803
|
* @response `200` `void` Success
|
|
5735
5804
|
*/
|
|
5736
|
-
postRoot: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
5805
|
+
postRoot: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
5737
5806
|
/**
|
|
5738
5807
|
* No description
|
|
5739
5808
|
*
|
|
@@ -5743,7 +5812,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5743
5812
|
* @secure
|
|
5744
5813
|
* @response `200` `string` Success
|
|
5745
5814
|
*/
|
|
5746
|
-
getRoot: (params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
5815
|
+
getRoot: (params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
5747
5816
|
api: {
|
|
5748
5817
|
/**
|
|
5749
5818
|
* No description
|
|
@@ -5756,7 +5825,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5756
5825
|
* @response `200` `Account` Success
|
|
5757
5826
|
* @response `404` `ProblemDetails` Not Found
|
|
5758
5827
|
*/
|
|
5759
|
-
getMyAccount: (params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
|
|
5828
|
+
getMyAccount: (params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
|
|
5760
5829
|
/**
|
|
5761
5830
|
* No description
|
|
5762
5831
|
*
|
|
@@ -5769,7 +5838,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5769
5838
|
* @response `404` `ProblemDetails` Not Found
|
|
5770
5839
|
* @response `422` `ProblemDetails` Client Error
|
|
5771
5840
|
*/
|
|
5772
|
-
replaceMyAccount: (data: UpdateAccountRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
|
|
5841
|
+
replaceMyAccount: (data: UpdateAccountRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
|
|
5773
5842
|
/**
|
|
5774
5843
|
* No description
|
|
5775
5844
|
*
|
|
@@ -5780,7 +5849,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5780
5849
|
* @secure
|
|
5781
5850
|
* @response `200` `SiteConfiguration` Success
|
|
5782
5851
|
*/
|
|
5783
|
-
getSiteConfigurationByAccount: (params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
5852
|
+
getSiteConfigurationByAccount: (params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
5784
5853
|
/**
|
|
5785
5854
|
* No description
|
|
5786
5855
|
*
|
|
@@ -5792,7 +5861,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5792
5861
|
* @response `200` `SiteConfiguration` Success
|
|
5793
5862
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5794
5863
|
*/
|
|
5795
|
-
updateSiteConfigurationForAccount: (data: SiteConfiguration, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
5864
|
+
updateSiteConfigurationForAccount: (data: SiteConfiguration, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
5796
5865
|
/**
|
|
5797
5866
|
* No description
|
|
5798
5867
|
*
|
|
@@ -5803,7 +5872,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5803
5872
|
* @secure
|
|
5804
5873
|
* @response `200` `(Account)[]` Success
|
|
5805
5874
|
*/
|
|
5806
|
-
getAccounts: (params?: RequestParams) => Promise<AxiosResponse<Account[], any>>;
|
|
5875
|
+
getAccounts: (params?: RequestParams) => Promise<AxiosResponse<Account[], any, {}>>;
|
|
5807
5876
|
/**
|
|
5808
5877
|
* No description
|
|
5809
5878
|
*
|
|
@@ -5815,7 +5884,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5815
5884
|
* @response `201` `Account` Created
|
|
5816
5885
|
* @response `422` `ProblemDetails` Client Error
|
|
5817
5886
|
*/
|
|
5818
|
-
createAccount: (data: CreateAccountRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
|
|
5887
|
+
createAccount: (data: CreateAccountRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
|
|
5819
5888
|
/**
|
|
5820
5889
|
* No description
|
|
5821
5890
|
*
|
|
@@ -5827,7 +5896,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5827
5896
|
* @response `201` `Account` Created
|
|
5828
5897
|
* @response `422` `ProblemDetails` Client Error
|
|
5829
5898
|
*/
|
|
5830
|
-
getAccount: (id: string, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
|
|
5899
|
+
getAccount: (id: string, params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
|
|
5831
5900
|
/**
|
|
5832
5901
|
* No description
|
|
5833
5902
|
*
|
|
@@ -5843,7 +5912,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5843
5912
|
deleteAccount: (id: string, query?: {
|
|
5844
5913
|
/** @default false */
|
|
5845
5914
|
hardDelete?: boolean;
|
|
5846
|
-
}, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
|
|
5915
|
+
}, params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
|
|
5847
5916
|
/**
|
|
5848
5917
|
* No description
|
|
5849
5918
|
*
|
|
@@ -5856,7 +5925,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5856
5925
|
* @response `404` `ProblemDetails` Not Found
|
|
5857
5926
|
* @response `422` `ProblemDetails` Client Error
|
|
5858
5927
|
*/
|
|
5859
|
-
updateAccountBilling: (id: string, data: AccountBillingRequest, params?: RequestParams) => Promise<AxiosResponse<AccountBilling, any>>;
|
|
5928
|
+
updateAccountBilling: (id: string, data: AccountBillingRequest, params?: RequestParams) => Promise<AxiosResponse<AccountBilling, any, {}>>;
|
|
5860
5929
|
/**
|
|
5861
5930
|
* No description
|
|
5862
5931
|
*
|
|
@@ -5874,7 +5943,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5874
5943
|
pageNumber?: number;
|
|
5875
5944
|
sortBy?: string;
|
|
5876
5945
|
sortDirection?: string;
|
|
5877
|
-
}, params?: RequestParams) => Promise<AxiosResponse<AuditLogEntryPaginated, any>>;
|
|
5946
|
+
}, params?: RequestParams) => Promise<AxiosResponse<AuditLogEntryPaginated, any, {}>>;
|
|
5878
5947
|
/**
|
|
5879
5948
|
* No description
|
|
5880
5949
|
*
|
|
@@ -5885,7 +5954,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5885
5954
|
* @secure
|
|
5886
5955
|
* @response `200` `(AuditEntityType)[]` Success
|
|
5887
5956
|
*/
|
|
5888
|
-
getAuditLogEntityTypes: (params?: RequestParams) => Promise<AxiosResponse<AuditEntityType[], any>>;
|
|
5957
|
+
getAuditLogEntityTypes: (params?: RequestParams) => Promise<AxiosResponse<AuditEntityType[], any, {}>>;
|
|
5889
5958
|
/**
|
|
5890
5959
|
* No description
|
|
5891
5960
|
*
|
|
@@ -5897,7 +5966,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5897
5966
|
* @response `200` `AuditLogEntry` Success
|
|
5898
5967
|
* @response `404` `ProblemDetails` Not Found
|
|
5899
5968
|
*/
|
|
5900
|
-
getAuditLogById: (id: string, params?: RequestParams) => Promise<AxiosResponse<AuditLogEntry, any>>;
|
|
5969
|
+
getAuditLogById: (id: string, params?: RequestParams) => Promise<AxiosResponse<AuditLogEntry, any, {}>>;
|
|
5901
5970
|
/**
|
|
5902
5971
|
* No description
|
|
5903
5972
|
*
|
|
@@ -5910,7 +5979,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5910
5979
|
* @response `401` `ProblemDetails` Unauthorized
|
|
5911
5980
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5912
5981
|
*/
|
|
5913
|
-
getTokenFromRefreshToken: (data: RefreshTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any>>;
|
|
5982
|
+
getTokenFromRefreshToken: (data: RefreshTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any, {}>>;
|
|
5914
5983
|
/**
|
|
5915
5984
|
* No description
|
|
5916
5985
|
*
|
|
@@ -5922,7 +5991,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5922
5991
|
* @response `200` `ForcePasswordReset` Success
|
|
5923
5992
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5924
5993
|
*/
|
|
5925
|
-
getToken: (data: TokenRequest, params?: RequestParams) => Promise<AxiosResponse<ForcePasswordReset, any>>;
|
|
5994
|
+
getToken: (data: TokenRequest, params?: RequestParams) => Promise<AxiosResponse<ForcePasswordReset, any, {}>>;
|
|
5926
5995
|
/**
|
|
5927
5996
|
* No description
|
|
5928
5997
|
*
|
|
@@ -5934,7 +6003,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5934
6003
|
* @response `200` `ForcePasswordReset` Success
|
|
5935
6004
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5936
6005
|
*/
|
|
5937
|
-
getTokenFromChallengeCode: (data: TokenChallengeRequest, params?: RequestParams) => Promise<AxiosResponse<ForcePasswordReset, any>>;
|
|
6006
|
+
getTokenFromChallengeCode: (data: TokenChallengeRequest, params?: RequestParams) => Promise<AxiosResponse<ForcePasswordReset, any, {}>>;
|
|
5938
6007
|
/**
|
|
5939
6008
|
* No description
|
|
5940
6009
|
*
|
|
@@ -5946,7 +6015,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5946
6015
|
* @response `200` `Token` Success
|
|
5947
6016
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5948
6017
|
*/
|
|
5949
|
-
getSystemToken: (data: SystemTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any>>;
|
|
6018
|
+
getSystemToken: (data: SystemTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any, {}>>;
|
|
5950
6019
|
/**
|
|
5951
6020
|
* No description
|
|
5952
6021
|
*
|
|
@@ -5958,7 +6027,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5958
6027
|
* @response `200` `SSOToken` Success
|
|
5959
6028
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5960
6029
|
*/
|
|
5961
|
-
getSsoToken: (data: SSOTokenRequest, params?: RequestParams) => Promise<AxiosResponse<SSOToken, any>>;
|
|
6030
|
+
getSsoToken: (data: SSOTokenRequest, params?: RequestParams) => Promise<AxiosResponse<SSOToken, any, {}>>;
|
|
5962
6031
|
/**
|
|
5963
6032
|
* No description
|
|
5964
6033
|
*
|
|
@@ -5970,7 +6039,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5970
6039
|
* @response `204` `NoContentResult` No Content
|
|
5971
6040
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5972
6041
|
*/
|
|
5973
|
-
logOut: (params?: RequestParams) => Promise<AxiosResponse<NoContentResult, any>>;
|
|
6042
|
+
logOut: (params?: RequestParams) => Promise<AxiosResponse<NoContentResult, any, {}>>;
|
|
5974
6043
|
/**
|
|
5975
6044
|
* No description
|
|
5976
6045
|
*
|
|
@@ -5989,7 +6058,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5989
6058
|
pageNumber?: number;
|
|
5990
6059
|
sortBy?: string;
|
|
5991
6060
|
sortDirection?: string;
|
|
5992
|
-
}, params?: RequestParams) => Promise<AxiosResponse<GetBranchPaginated, any>>;
|
|
6061
|
+
}, params?: RequestParams) => Promise<AxiosResponse<GetBranchPaginated, any, {}>>;
|
|
5993
6062
|
/**
|
|
5994
6063
|
* No description
|
|
5995
6064
|
*
|
|
@@ -6001,7 +6070,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6001
6070
|
* @response `200` `GetBranch` Success
|
|
6002
6071
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6003
6072
|
*/
|
|
6004
|
-
createBranch: (data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any>>;
|
|
6073
|
+
createBranch: (data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any, {}>>;
|
|
6005
6074
|
/**
|
|
6006
6075
|
* No description
|
|
6007
6076
|
*
|
|
@@ -6019,7 +6088,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6019
6088
|
pageNumber?: number;
|
|
6020
6089
|
sortBy?: string;
|
|
6021
6090
|
sortDirection?: string;
|
|
6022
|
-
}, params?: RequestParams) => Promise<AxiosResponse<GetBranchPaginated, any>>;
|
|
6091
|
+
}, params?: RequestParams) => Promise<AxiosResponse<GetBranchPaginated, any, {}>>;
|
|
6023
6092
|
/**
|
|
6024
6093
|
* No description
|
|
6025
6094
|
*
|
|
@@ -6030,7 +6099,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6030
6099
|
* @secure
|
|
6031
6100
|
* @response `200` `GetBranch` Success
|
|
6032
6101
|
*/
|
|
6033
|
-
getBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any>>;
|
|
6102
|
+
getBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any, {}>>;
|
|
6034
6103
|
/**
|
|
6035
6104
|
* No description
|
|
6036
6105
|
*
|
|
@@ -6042,7 +6111,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6042
6111
|
* @response `200` `GetBranch` Success
|
|
6043
6112
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6044
6113
|
*/
|
|
6045
|
-
replaceBranch: (branchId: string, data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any>>;
|
|
6114
|
+
replaceBranch: (branchId: string, data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any, {}>>;
|
|
6046
6115
|
/**
|
|
6047
6116
|
* No description
|
|
6048
6117
|
*
|
|
@@ -6053,7 +6122,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6053
6122
|
* @secure
|
|
6054
6123
|
* @response `204` `void` No Content
|
|
6055
6124
|
*/
|
|
6056
|
-
deleteBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6125
|
+
deleteBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6057
6126
|
/**
|
|
6058
6127
|
* No description
|
|
6059
6128
|
*
|
|
@@ -6065,7 +6134,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6065
6134
|
* @response `204` `void` No Content
|
|
6066
6135
|
* @response `400` `ProblemDetails` Bad Request
|
|
6067
6136
|
*/
|
|
6068
|
-
restoreBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6137
|
+
restoreBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6069
6138
|
/**
|
|
6070
6139
|
* No description
|
|
6071
6140
|
*
|
|
@@ -6077,7 +6146,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6077
6146
|
* @response `200` `SiteConfiguration` Success
|
|
6078
6147
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6079
6148
|
*/
|
|
6080
|
-
createBranchSiteConfiguration: (branchId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
6149
|
+
createBranchSiteConfiguration: (branchId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
6081
6150
|
/**
|
|
6082
6151
|
* No description
|
|
6083
6152
|
*
|
|
@@ -6088,7 +6157,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6088
6157
|
* @secure
|
|
6089
6158
|
* @response `200` `SiteConfigurationWithInherited` Success
|
|
6090
6159
|
*/
|
|
6091
|
-
getBranchSiteConfiguration: (branchId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
|
|
6160
|
+
getBranchSiteConfiguration: (branchId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any, {}>>;
|
|
6092
6161
|
/**
|
|
6093
6162
|
* No description
|
|
6094
6163
|
*
|
|
@@ -6102,7 +6171,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6102
6171
|
*/
|
|
6103
6172
|
replaceBranchSiteConfiguration: (branchId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
|
|
6104
6173
|
applyToChildren?: boolean;
|
|
6105
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
6174
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
6106
6175
|
/**
|
|
6107
6176
|
* No description
|
|
6108
6177
|
*
|
|
@@ -6113,7 +6182,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6113
6182
|
* @secure
|
|
6114
6183
|
* @response `200` `(LoanOfficerPublic)[]` Success
|
|
6115
6184
|
*/
|
|
6116
|
-
getLoanOfficersByBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic[], any>>;
|
|
6185
|
+
getLoanOfficersByBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic[], any, {}>>;
|
|
6117
6186
|
/**
|
|
6118
6187
|
* No description
|
|
6119
6188
|
*
|
|
@@ -6126,7 +6195,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6126
6195
|
*/
|
|
6127
6196
|
getBusinessRules: (query?: {
|
|
6128
6197
|
showAll?: boolean;
|
|
6129
|
-
}, params?: RequestParams) => Promise<AxiosResponse<BusinessRule[], any>>;
|
|
6198
|
+
}, params?: RequestParams) => Promise<AxiosResponse<BusinessRule[], any, {}>>;
|
|
6130
6199
|
/**
|
|
6131
6200
|
* No description
|
|
6132
6201
|
*
|
|
@@ -6138,7 +6207,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6138
6207
|
* @response `200` `BusinessRule` Success
|
|
6139
6208
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6140
6209
|
*/
|
|
6141
|
-
createBusinessRule: (data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
|
|
6210
|
+
createBusinessRule: (data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any, {}>>;
|
|
6142
6211
|
/**
|
|
6143
6212
|
* No description
|
|
6144
6213
|
*
|
|
@@ -6149,7 +6218,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6149
6218
|
* @secure
|
|
6150
6219
|
* @response `200` `BusinessRule` Success
|
|
6151
6220
|
*/
|
|
6152
|
-
getBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
|
|
6221
|
+
getBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any, {}>>;
|
|
6153
6222
|
/**
|
|
6154
6223
|
* No description
|
|
6155
6224
|
*
|
|
@@ -6161,7 +6230,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6161
6230
|
* @response `200` `BusinessRule` Success
|
|
6162
6231
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6163
6232
|
*/
|
|
6164
|
-
replaceBusinessRule: (id: string, data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
|
|
6233
|
+
replaceBusinessRule: (id: string, data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any, {}>>;
|
|
6165
6234
|
/**
|
|
6166
6235
|
* No description
|
|
6167
6236
|
*
|
|
@@ -6172,7 +6241,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6172
6241
|
* @secure
|
|
6173
6242
|
* @response `204` `void` No Content
|
|
6174
6243
|
*/
|
|
6175
|
-
deleteBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6244
|
+
deleteBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6176
6245
|
/**
|
|
6177
6246
|
* No description
|
|
6178
6247
|
*
|
|
@@ -6183,7 +6252,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6183
6252
|
* @secure
|
|
6184
6253
|
* @response `200` `BusinessRule` Success
|
|
6185
6254
|
*/
|
|
6186
|
-
restoreBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
|
|
6255
|
+
restoreBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any, {}>>;
|
|
6187
6256
|
/**
|
|
6188
6257
|
* @description Returns closed loan counts per account within the specified date range, including POS vs non-POS breakdown and utilization ratios.
|
|
6189
6258
|
*
|
|
@@ -6194,7 +6263,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6194
6263
|
* @secure
|
|
6195
6264
|
* @response `200` `ClosedLoansReport` Success
|
|
6196
6265
|
*/
|
|
6197
|
-
getClosedLoansReport: (data: ClosedLoansReportRequest, params?: RequestParams) => Promise<AxiosResponse<ClosedLoansReport, any>>;
|
|
6266
|
+
getClosedLoansReport: (data: ClosedLoansReportRequest, params?: RequestParams) => Promise<AxiosResponse<ClosedLoansReport, any, {}>>;
|
|
6198
6267
|
/**
|
|
6199
6268
|
* No description
|
|
6200
6269
|
*
|
|
@@ -6205,7 +6274,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6205
6274
|
* @secure
|
|
6206
6275
|
* @response `200` `(ConsumerConnectStatus)[]` Success
|
|
6207
6276
|
*/
|
|
6208
|
-
getConsumerConnectStatus: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<ConsumerConnectStatus[], any>>;
|
|
6277
|
+
getConsumerConnectStatus: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<ConsumerConnectStatus[], any, {}>>;
|
|
6209
6278
|
/**
|
|
6210
6279
|
* No description
|
|
6211
6280
|
*
|
|
@@ -6216,7 +6285,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6216
6285
|
* @secure
|
|
6217
6286
|
* @response `200` `(ConsumerConnectRetry)[]` Success
|
|
6218
6287
|
*/
|
|
6219
|
-
retryConsumerConnectAssociation: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<ConsumerConnectRetry[], any>>;
|
|
6288
|
+
retryConsumerConnectAssociation: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<ConsumerConnectRetry[], any, {}>>;
|
|
6220
6289
|
/**
|
|
6221
6290
|
* No description
|
|
6222
6291
|
*
|
|
@@ -6235,7 +6304,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6235
6304
|
pageNumber?: number;
|
|
6236
6305
|
sortBy?: string;
|
|
6237
6306
|
sortDirection?: string;
|
|
6238
|
-
}, params?: RequestParams) => Promise<AxiosResponse<CorporatePaginated, any>>;
|
|
6307
|
+
}, params?: RequestParams) => Promise<AxiosResponse<CorporatePaginated, any, {}>>;
|
|
6239
6308
|
/**
|
|
6240
6309
|
* No description
|
|
6241
6310
|
*
|
|
@@ -6247,7 +6316,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6247
6316
|
* @response `200` `Corporate` Success
|
|
6248
6317
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6249
6318
|
*/
|
|
6250
|
-
createCorporate: (data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any>>;
|
|
6319
|
+
createCorporate: (data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any, {}>>;
|
|
6251
6320
|
/**
|
|
6252
6321
|
* No description
|
|
6253
6322
|
*
|
|
@@ -6265,7 +6334,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6265
6334
|
pageNumber?: number;
|
|
6266
6335
|
sortBy?: string;
|
|
6267
6336
|
sortDirection?: string;
|
|
6268
|
-
}, params?: RequestParams) => Promise<AxiosResponse<CorporatePaginated, any>>;
|
|
6337
|
+
}, params?: RequestParams) => Promise<AxiosResponse<CorporatePaginated, any, {}>>;
|
|
6269
6338
|
/**
|
|
6270
6339
|
* No description
|
|
6271
6340
|
*
|
|
@@ -6276,7 +6345,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6276
6345
|
* @secure
|
|
6277
6346
|
* @response `200` `Corporate` Success
|
|
6278
6347
|
*/
|
|
6279
|
-
getCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<Corporate, any>>;
|
|
6348
|
+
getCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<Corporate, any, {}>>;
|
|
6280
6349
|
/**
|
|
6281
6350
|
* No description
|
|
6282
6351
|
*
|
|
@@ -6288,7 +6357,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6288
6357
|
* @response `200` `Corporate` Success
|
|
6289
6358
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6290
6359
|
*/
|
|
6291
|
-
replaceCorporate: (id: string, data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any>>;
|
|
6360
|
+
replaceCorporate: (id: string, data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any, {}>>;
|
|
6292
6361
|
/**
|
|
6293
6362
|
* No description
|
|
6294
6363
|
*
|
|
@@ -6299,7 +6368,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6299
6368
|
* @secure
|
|
6300
6369
|
* @response `204` `void` No Content
|
|
6301
6370
|
*/
|
|
6302
|
-
deleteCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6371
|
+
deleteCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6303
6372
|
/**
|
|
6304
6373
|
* No description
|
|
6305
6374
|
*
|
|
@@ -6310,7 +6379,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6310
6379
|
* @secure
|
|
6311
6380
|
* @response `204` `void` No Content
|
|
6312
6381
|
*/
|
|
6313
|
-
restoreCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6382
|
+
restoreCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6314
6383
|
/**
|
|
6315
6384
|
* No description
|
|
6316
6385
|
*
|
|
@@ -6322,7 +6391,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6322
6391
|
* @response `200` `SiteConfiguration` Success
|
|
6323
6392
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6324
6393
|
*/
|
|
6325
|
-
createCorporateSiteConfiguration: (corporateId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
6394
|
+
createCorporateSiteConfiguration: (corporateId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
6326
6395
|
/**
|
|
6327
6396
|
* No description
|
|
6328
6397
|
*
|
|
@@ -6333,7 +6402,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6333
6402
|
* @secure
|
|
6334
6403
|
* @response `200` `SiteConfigurationWithInherited` Success
|
|
6335
6404
|
*/
|
|
6336
|
-
getCorporateSiteConfiguration: (corporateId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
|
|
6405
|
+
getCorporateSiteConfiguration: (corporateId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any, {}>>;
|
|
6337
6406
|
/**
|
|
6338
6407
|
* No description
|
|
6339
6408
|
*
|
|
@@ -6347,7 +6416,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6347
6416
|
*/
|
|
6348
6417
|
replaceCorporateSiteConfiguration: (corporateId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
|
|
6349
6418
|
applyToChildren?: boolean;
|
|
6350
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
6419
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
6351
6420
|
/**
|
|
6352
6421
|
* No description
|
|
6353
6422
|
*
|
|
@@ -6358,7 +6427,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6358
6427
|
* @secure
|
|
6359
6428
|
* @response `200` `(BranchReduced)[]` Success
|
|
6360
6429
|
*/
|
|
6361
|
-
getBranchesByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchReduced[], any>>;
|
|
6430
|
+
getBranchesByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchReduced[], any, {}>>;
|
|
6362
6431
|
/**
|
|
6363
6432
|
* No description
|
|
6364
6433
|
*
|
|
@@ -6369,7 +6438,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6369
6438
|
* @secure
|
|
6370
6439
|
* @response `200` `(LoanOfficerPublic)[]` Success
|
|
6371
6440
|
*/
|
|
6372
|
-
getLoanOfficersByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic[], any>>;
|
|
6441
|
+
getLoanOfficersByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic[], any, {}>>;
|
|
6373
6442
|
/**
|
|
6374
6443
|
* No description
|
|
6375
6444
|
*
|
|
@@ -6381,8 +6450,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6381
6450
|
* @response `200` `(CustomFieldDefinition)[]` Success
|
|
6382
6451
|
*/
|
|
6383
6452
|
getCustomFieldDefinitions: (query?: {
|
|
6384
|
-
entityType?:
|
|
6385
|
-
}, params?: RequestParams) => Promise<AxiosResponse<CustomFieldDefinition[], any>>;
|
|
6453
|
+
entityType?: GetCustomFieldDefinitionsParamsEntityTypeEnum;
|
|
6454
|
+
}, params?: RequestParams) => Promise<AxiosResponse<CustomFieldDefinition[], any, {}>>;
|
|
6386
6455
|
/**
|
|
6387
6456
|
* No description
|
|
6388
6457
|
*
|
|
@@ -6395,7 +6464,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6395
6464
|
* @response `409` `ProblemDetails` Conflict
|
|
6396
6465
|
* @response `422` `ProblemDetails` Client Error
|
|
6397
6466
|
*/
|
|
6398
|
-
createCustomFieldDefinition: (data: CreateCustomFieldDefinitionRequest, params?: RequestParams) => Promise<AxiosResponse<CustomFieldDefinition, any>>;
|
|
6467
|
+
createCustomFieldDefinition: (data: CreateCustomFieldDefinitionRequest, params?: RequestParams) => Promise<AxiosResponse<CustomFieldDefinition, any, {}>>;
|
|
6399
6468
|
/**
|
|
6400
6469
|
* No description
|
|
6401
6470
|
*
|
|
@@ -6407,7 +6476,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6407
6476
|
* @response `200` `CustomFieldDefinition` Success
|
|
6408
6477
|
* @response `404` `ProblemDetails` Not Found
|
|
6409
6478
|
*/
|
|
6410
|
-
getCustomFieldDefinitionById: (id: string, params?: RequestParams) => Promise<AxiosResponse<CustomFieldDefinition, any>>;
|
|
6479
|
+
getCustomFieldDefinitionById: (id: string, params?: RequestParams) => Promise<AxiosResponse<CustomFieldDefinition, any, {}>>;
|
|
6411
6480
|
/**
|
|
6412
6481
|
* No description
|
|
6413
6482
|
*
|
|
@@ -6422,7 +6491,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6422
6491
|
* @response `409` `ProblemDetails` Conflict
|
|
6423
6492
|
* @response `422` `ProblemDetails` Client Error
|
|
6424
6493
|
*/
|
|
6425
|
-
updateCustomFieldDefinition: (id: string, data: UpdateCustomFieldDefinitionRequest, params?: RequestParams) => Promise<AxiosResponse<CustomFieldDefinition, any>>;
|
|
6494
|
+
updateCustomFieldDefinition: (id: string, data: UpdateCustomFieldDefinitionRequest, params?: RequestParams) => Promise<AxiosResponse<CustomFieldDefinition, any, {}>>;
|
|
6426
6495
|
/**
|
|
6427
6496
|
* No description
|
|
6428
6497
|
*
|
|
@@ -6435,7 +6504,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6435
6504
|
* @response `404` `ProblemDetails` Not Found
|
|
6436
6505
|
* @response `409` `ProblemDetails` Conflict
|
|
6437
6506
|
*/
|
|
6438
|
-
deleteCustomFieldDefinition: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6507
|
+
deleteCustomFieldDefinition: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6439
6508
|
/**
|
|
6440
6509
|
* No description
|
|
6441
6510
|
*
|
|
@@ -6447,7 +6516,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6447
6516
|
* @response `204` `void` No Content
|
|
6448
6517
|
* @response `404` `ProblemDetails` Not Found
|
|
6449
6518
|
*/
|
|
6450
|
-
disableCustomFieldDefinition: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6519
|
+
disableCustomFieldDefinition: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6451
6520
|
/**
|
|
6452
6521
|
* No description
|
|
6453
6522
|
*
|
|
@@ -6459,7 +6528,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6459
6528
|
* @response `204` `void` No Content
|
|
6460
6529
|
* @response `404` `ProblemDetails` Not Found
|
|
6461
6530
|
*/
|
|
6462
|
-
enableCustomFieldDefinition: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6531
|
+
enableCustomFieldDefinition: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6463
6532
|
/**
|
|
6464
6533
|
* No description
|
|
6465
6534
|
*
|
|
@@ -6479,7 +6548,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6479
6548
|
pageNumber?: number;
|
|
6480
6549
|
sortBy?: string;
|
|
6481
6550
|
sortDirection?: string;
|
|
6482
|
-
}, params?: RequestParams) => Promise<AxiosResponse<DevicePaginated, any>>;
|
|
6551
|
+
}, params?: RequestParams) => Promise<AxiosResponse<DevicePaginated, any, {}>>;
|
|
6483
6552
|
/**
|
|
6484
6553
|
* No description
|
|
6485
6554
|
*
|
|
@@ -6490,7 +6559,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6490
6559
|
* @secure
|
|
6491
6560
|
* @response `200` `Device` Success
|
|
6492
6561
|
*/
|
|
6493
|
-
getDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<Device, any>>;
|
|
6562
|
+
getDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<Device, any, {}>>;
|
|
6494
6563
|
/**
|
|
6495
6564
|
* No description
|
|
6496
6565
|
*
|
|
@@ -6501,7 +6570,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6501
6570
|
* @secure
|
|
6502
6571
|
* @response `200` `Device` Success
|
|
6503
6572
|
*/
|
|
6504
|
-
updateDevice: (id: string, data: DeviceRequest, params?: RequestParams) => Promise<AxiosResponse<Device, any>>;
|
|
6573
|
+
updateDevice: (id: string, data: DeviceRequest, params?: RequestParams) => Promise<AxiosResponse<Device, any, {}>>;
|
|
6505
6574
|
/**
|
|
6506
6575
|
* No description
|
|
6507
6576
|
*
|
|
@@ -6512,7 +6581,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6512
6581
|
* @secure
|
|
6513
6582
|
* @response `200` `DeviceMDM` Success
|
|
6514
6583
|
*/
|
|
6515
|
-
getDeviceBySerialNumber: (sn: string, params?: RequestParams) => Promise<AxiosResponse<DeviceMDM, any>>;
|
|
6584
|
+
getDeviceBySerialNumber: (sn: string, params?: RequestParams) => Promise<AxiosResponse<DeviceMDM, any, {}>>;
|
|
6516
6585
|
/**
|
|
6517
6586
|
* No description
|
|
6518
6587
|
*
|
|
@@ -6523,7 +6592,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6523
6592
|
* @secure
|
|
6524
6593
|
* @response `200` `Action` Success
|
|
6525
6594
|
*/
|
|
6526
|
-
createDeviceActionBySerialNumber: (sn: string, actionName: string, params?: RequestParams) => Promise<AxiosResponse<Action, any>>;
|
|
6595
|
+
createDeviceActionBySerialNumber: (sn: string, actionName: string, params?: RequestParams) => Promise<AxiosResponse<Action, any, {}>>;
|
|
6527
6596
|
/**
|
|
6528
6597
|
* No description
|
|
6529
6598
|
*
|
|
@@ -6537,7 +6606,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6537
6606
|
getDocumentBuckets: (query?: {
|
|
6538
6607
|
/** @default false */
|
|
6539
6608
|
includeSystemBuckets?: boolean;
|
|
6540
|
-
}, params?: RequestParams) => Promise<AxiosResponse<string[], any>>;
|
|
6609
|
+
}, params?: RequestParams) => Promise<AxiosResponse<string[], any, {}>>;
|
|
6541
6610
|
/**
|
|
6542
6611
|
* No description
|
|
6543
6612
|
*
|
|
@@ -6550,7 +6619,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6550
6619
|
*/
|
|
6551
6620
|
getDocumentTemplates: (query?: {
|
|
6552
6621
|
showAll?: boolean;
|
|
6553
|
-
}, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase[], any>>;
|
|
6622
|
+
}, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase[], any, {}>>;
|
|
6554
6623
|
/**
|
|
6555
6624
|
* No description
|
|
6556
6625
|
*
|
|
@@ -6563,7 +6632,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6563
6632
|
* @response `404` `ProblemDetails` Not Found
|
|
6564
6633
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6565
6634
|
*/
|
|
6566
|
-
createDocumentTemplate: (data: CreateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any>>;
|
|
6635
|
+
createDocumentTemplate: (data: CreateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any, {}>>;
|
|
6567
6636
|
/**
|
|
6568
6637
|
* No description
|
|
6569
6638
|
*
|
|
@@ -6579,7 +6648,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6579
6648
|
showAll?: boolean;
|
|
6580
6649
|
/** @default true */
|
|
6581
6650
|
publishedOnly?: boolean;
|
|
6582
|
-
}, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase[], any>>;
|
|
6651
|
+
}, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase[], any, {}>>;
|
|
6583
6652
|
/**
|
|
6584
6653
|
* No description
|
|
6585
6654
|
*
|
|
@@ -6591,7 +6660,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6591
6660
|
* @response `200` `DocumentTemplate` Success
|
|
6592
6661
|
* @response `404` `ProblemDetails` Not Found
|
|
6593
6662
|
*/
|
|
6594
|
-
getDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplate, any>>;
|
|
6663
|
+
getDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplate, any, {}>>;
|
|
6595
6664
|
/**
|
|
6596
6665
|
* No description
|
|
6597
6666
|
*
|
|
@@ -6605,7 +6674,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6605
6674
|
* @response `404` `ProblemDetails` Not Found
|
|
6606
6675
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6607
6676
|
*/
|
|
6608
|
-
replaceDocumentTemplate: (id: string, data: UpdateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any>>;
|
|
6677
|
+
replaceDocumentTemplate: (id: string, data: UpdateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any, {}>>;
|
|
6609
6678
|
/**
|
|
6610
6679
|
* No description
|
|
6611
6680
|
*
|
|
@@ -6618,7 +6687,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6618
6687
|
* @response `401` `ProblemDetails` Unauthorized
|
|
6619
6688
|
* @response `404` `ProblemDetails` Not Found
|
|
6620
6689
|
*/
|
|
6621
|
-
deleteDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6690
|
+
deleteDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6622
6691
|
/**
|
|
6623
6692
|
* No description
|
|
6624
6693
|
*
|
|
@@ -6631,7 +6700,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6631
6700
|
* @response `401` `ProblemDetails` Unauthorized
|
|
6632
6701
|
* @response `404` `ProblemDetails` Not Found
|
|
6633
6702
|
*/
|
|
6634
|
-
restoreDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6703
|
+
restoreDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6635
6704
|
/**
|
|
6636
6705
|
* No description
|
|
6637
6706
|
*
|
|
@@ -6642,7 +6711,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6642
6711
|
* @secure
|
|
6643
6712
|
* @response `200` `(DocumentTemplateVersion)[]` Success
|
|
6644
6713
|
*/
|
|
6645
|
-
getDocumentTemplateVersions: (documentId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion[], any>>;
|
|
6714
|
+
getDocumentTemplateVersions: (documentId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion[], any, {}>>;
|
|
6646
6715
|
/**
|
|
6647
6716
|
* No description
|
|
6648
6717
|
*
|
|
@@ -6653,7 +6722,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6653
6722
|
* @secure
|
|
6654
6723
|
* @response `200` `DocumentTemplateVersion` Success
|
|
6655
6724
|
*/
|
|
6656
|
-
createDocumentTemplateVersion: (documentId: string, data: DocumentTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
|
|
6725
|
+
createDocumentTemplateVersion: (documentId: string, data: DocumentTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any, {}>>;
|
|
6657
6726
|
/**
|
|
6658
6727
|
* No description
|
|
6659
6728
|
*
|
|
@@ -6664,7 +6733,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6664
6733
|
* @secure
|
|
6665
6734
|
* @response `200` `DocumentTemplateVersion` Success
|
|
6666
6735
|
*/
|
|
6667
|
-
getDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
|
|
6736
|
+
getDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any, {}>>;
|
|
6668
6737
|
/**
|
|
6669
6738
|
* No description
|
|
6670
6739
|
*
|
|
@@ -6675,7 +6744,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6675
6744
|
* @secure
|
|
6676
6745
|
* @response `200` `DocumentTemplateVersion` Success
|
|
6677
6746
|
*/
|
|
6678
|
-
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, {}>>;
|
|
6679
6748
|
/**
|
|
6680
6749
|
* No description
|
|
6681
6750
|
*
|
|
@@ -6686,7 +6755,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6686
6755
|
* @secure
|
|
6687
6756
|
* @response `200` `DocumentTemplateVersion` Success
|
|
6688
6757
|
*/
|
|
6689
|
-
deleteDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
|
|
6758
|
+
deleteDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any, {}>>;
|
|
6690
6759
|
/**
|
|
6691
6760
|
* No description
|
|
6692
6761
|
*
|
|
@@ -6697,7 +6766,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6697
6766
|
* @response `200` `EncompassCustomFieldMapping` Success
|
|
6698
6767
|
* @response `404` `void` Not Found
|
|
6699
6768
|
*/
|
|
6700
|
-
getEncompassCustomFieldMapping: (definitionId: string, params?: RequestParams) => Promise<AxiosResponse<EncompassCustomFieldMapping, any>>;
|
|
6769
|
+
getEncompassCustomFieldMapping: (definitionId: string, params?: RequestParams) => Promise<AxiosResponse<EncompassCustomFieldMapping, any, {}>>;
|
|
6701
6770
|
/**
|
|
6702
6771
|
* No description
|
|
6703
6772
|
*
|
|
@@ -6711,7 +6780,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6711
6780
|
* @response `409` `void` Conflict
|
|
6712
6781
|
* @response `422` `ProblemDetails` Client Error
|
|
6713
6782
|
*/
|
|
6714
|
-
addEncompassCustomFieldMapping: (definitionId: string, data: EncompassCustomFieldMappingRequest, params?: RequestParams) => Promise<AxiosResponse<EncompassCustomFieldMapping, any>>;
|
|
6783
|
+
addEncompassCustomFieldMapping: (definitionId: string, data: EncompassCustomFieldMappingRequest, params?: RequestParams) => Promise<AxiosResponse<EncompassCustomFieldMapping, any, {}>>;
|
|
6715
6784
|
/**
|
|
6716
6785
|
* No description
|
|
6717
6786
|
*
|
|
@@ -6723,7 +6792,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6723
6792
|
* @response `404` `void` Not Found
|
|
6724
6793
|
* @response `409` `void` Conflict
|
|
6725
6794
|
*/
|
|
6726
|
-
deleteEncompassCustomFieldMapping: (definitionId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6795
|
+
deleteEncompassCustomFieldMapping: (definitionId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6727
6796
|
/**
|
|
6728
6797
|
* No description
|
|
6729
6798
|
*
|
|
@@ -6734,7 +6803,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6734
6803
|
* @response `204` `void` No Content
|
|
6735
6804
|
* @response `404` `void` Not Found
|
|
6736
6805
|
*/
|
|
6737
|
-
disableEncompassCustomFieldMapping: (definitionId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6806
|
+
disableEncompassCustomFieldMapping: (definitionId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6738
6807
|
/**
|
|
6739
6808
|
* No description
|
|
6740
6809
|
*
|
|
@@ -6745,7 +6814,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6745
6814
|
* @response `204` `void` No Content
|
|
6746
6815
|
* @response `404` `void` Not Found
|
|
6747
6816
|
*/
|
|
6748
|
-
enableEncompassCustomFieldMapping: (definitionId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6817
|
+
enableEncompassCustomFieldMapping: (definitionId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6749
6818
|
/**
|
|
6750
6819
|
* No description
|
|
6751
6820
|
*
|
|
@@ -6756,7 +6825,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6756
6825
|
* @response `200` `(EncompassFieldListItem)[]` Success
|
|
6757
6826
|
* @response `502` `ProblemDetails` Server Error
|
|
6758
6827
|
*/
|
|
6759
|
-
getEncompassFields: (params?: RequestParams) => Promise<AxiosResponse<EncompassFieldListItem[], any>>;
|
|
6828
|
+
getEncompassFields: (params?: RequestParams) => Promise<AxiosResponse<EncompassFieldListItem[], any, {}>>;
|
|
6760
6829
|
/**
|
|
6761
6830
|
* No description
|
|
6762
6831
|
*
|
|
@@ -6784,7 +6853,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6784
6853
|
pageSize?: number;
|
|
6785
6854
|
/** @format uuid */
|
|
6786
6855
|
loanId?: string;
|
|
6787
|
-
}, params?: RequestParams) => Promise<AxiosResponse<EncompassPackageList, any>>;
|
|
6856
|
+
}, params?: RequestParams) => Promise<AxiosResponse<EncompassPackageList, any, {}>>;
|
|
6788
6857
|
/**
|
|
6789
6858
|
* No description
|
|
6790
6859
|
*
|
|
@@ -6796,7 +6865,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6796
6865
|
* @response `401` `EncompassError` Unauthorized
|
|
6797
6866
|
* @response `500` `EncompassError` Server Error
|
|
6798
6867
|
*/
|
|
6799
|
-
getUserRecipients: (params?: RequestParams) => Promise<AxiosResponse<EncompassRecipientItem[], any>>;
|
|
6868
|
+
getUserRecipients: (params?: RequestParams) => Promise<AxiosResponse<EncompassRecipientItem[], any, {}>>;
|
|
6800
6869
|
/**
|
|
6801
6870
|
* No description
|
|
6802
6871
|
*
|
|
@@ -6811,7 +6880,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6811
6880
|
* @response `404` `EncompassError` Not Found
|
|
6812
6881
|
* @response `500` `EncompassError` Server Error
|
|
6813
6882
|
*/
|
|
6814
|
-
createEncompassSession: (data: CreateSessionRequest, params?: RequestParams) => Promise<AxiosResponse<CreateSession, any>>;
|
|
6883
|
+
createEncompassSession: (data: CreateSessionRequest, params?: RequestParams) => Promise<AxiosResponse<CreateSession, any, {}>>;
|
|
6815
6884
|
/**
|
|
6816
6885
|
* No description
|
|
6817
6886
|
*
|
|
@@ -6831,7 +6900,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6831
6900
|
sortDirection?: string;
|
|
6832
6901
|
/** @default false */
|
|
6833
6902
|
includeDeleted?: boolean;
|
|
6834
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FilePaginated, any>>;
|
|
6903
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FilePaginated, any, {}>>;
|
|
6835
6904
|
/**
|
|
6836
6905
|
* No description
|
|
6837
6906
|
*
|
|
@@ -6849,7 +6918,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6849
6918
|
file?: File;
|
|
6850
6919
|
isPublic?: boolean;
|
|
6851
6920
|
bucket?: string;
|
|
6852
|
-
}, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
|
|
6921
|
+
}, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
|
|
6853
6922
|
/**
|
|
6854
6923
|
* No description
|
|
6855
6924
|
*
|
|
@@ -6860,7 +6929,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6860
6929
|
* @secure
|
|
6861
6930
|
* @response `201` `File` Created
|
|
6862
6931
|
*/
|
|
6863
|
-
getFileById: (id: string, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
|
|
6932
|
+
getFileById: (id: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
|
|
6864
6933
|
/**
|
|
6865
6934
|
* No description
|
|
6866
6935
|
*
|
|
@@ -6872,7 +6941,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6872
6941
|
* @response `200` `string` Success
|
|
6873
6942
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6874
6943
|
*/
|
|
6875
|
-
replaceFile: (id: string, data: FileRequest, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
6944
|
+
replaceFile: (id: string, data: FileRequest, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
6876
6945
|
/**
|
|
6877
6946
|
* No description
|
|
6878
6947
|
*
|
|
@@ -6883,7 +6952,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6883
6952
|
* @secure
|
|
6884
6953
|
* @response `204` `void` No Content
|
|
6885
6954
|
*/
|
|
6886
|
-
deleteFile: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6955
|
+
deleteFile: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6887
6956
|
/**
|
|
6888
6957
|
* No description
|
|
6889
6958
|
*
|
|
@@ -6901,7 +6970,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6901
6970
|
pageNumber?: number;
|
|
6902
6971
|
sortBy?: string;
|
|
6903
6972
|
sortDirection?: string;
|
|
6904
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FilePaginated, any>>;
|
|
6973
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FilePaginated, any, {}>>;
|
|
6905
6974
|
/**
|
|
6906
6975
|
* No description
|
|
6907
6976
|
*
|
|
@@ -6914,7 +6983,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6914
6983
|
*/
|
|
6915
6984
|
getForms: (query?: {
|
|
6916
6985
|
showAll?: boolean;
|
|
6917
|
-
}, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms[], any>>;
|
|
6986
|
+
}, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms[], any, {}>>;
|
|
6918
6987
|
/**
|
|
6919
6988
|
* No description
|
|
6920
6989
|
*
|
|
@@ -6926,7 +6995,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6926
6995
|
* @response `201` `Form` Created
|
|
6927
6996
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6928
6997
|
*/
|
|
6929
|
-
createForm: (data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<Form, any>>;
|
|
6998
|
+
createForm: (data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<Form, any, {}>>;
|
|
6930
6999
|
/**
|
|
6931
7000
|
* No description
|
|
6932
7001
|
*
|
|
@@ -6937,7 +7006,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6937
7006
|
* @secure
|
|
6938
7007
|
* @response `200` `Form` Success
|
|
6939
7008
|
*/
|
|
6940
|
-
getForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<Form, any>>;
|
|
7009
|
+
getForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<Form, any, {}>>;
|
|
6941
7010
|
/**
|
|
6942
7011
|
* No description
|
|
6943
7012
|
*
|
|
@@ -6949,7 +7018,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6949
7018
|
* @response `200` `Form` Success
|
|
6950
7019
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6951
7020
|
*/
|
|
6952
|
-
replaceForm: (id: string, data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<Form, any>>;
|
|
7021
|
+
replaceForm: (id: string, data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<Form, any, {}>>;
|
|
6953
7022
|
/**
|
|
6954
7023
|
* No description
|
|
6955
7024
|
*
|
|
@@ -6960,7 +7029,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6960
7029
|
* @secure
|
|
6961
7030
|
* @response `204` `void` No Content
|
|
6962
7031
|
*/
|
|
6963
|
-
deleteForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7032
|
+
deleteForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6964
7033
|
/**
|
|
6965
7034
|
* No description
|
|
6966
7035
|
*
|
|
@@ -6971,7 +7040,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6971
7040
|
* @secure
|
|
6972
7041
|
* @response `200` `Form` Success
|
|
6973
7042
|
*/
|
|
6974
|
-
restoreForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<Form, any>>;
|
|
7043
|
+
restoreForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<Form, any, {}>>;
|
|
6975
7044
|
/**
|
|
6976
7045
|
* No description
|
|
6977
7046
|
*
|
|
@@ -6986,7 +7055,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6986
7055
|
/** @format binary */
|
|
6987
7056
|
file?: File;
|
|
6988
7057
|
name?: string;
|
|
6989
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionFile, any>>;
|
|
7058
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionFile, any, {}>>;
|
|
6990
7059
|
/**
|
|
6991
7060
|
* No description
|
|
6992
7061
|
*
|
|
@@ -6997,7 +7066,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6997
7066
|
* @secure
|
|
6998
7067
|
* @response `204` `void` No Content
|
|
6999
7068
|
*/
|
|
7000
|
-
deleteFormSubmissionFile: (formSubmissionFileId: string, formSubmissionId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7069
|
+
deleteFormSubmissionFile: (formSubmissionFileId: string, formSubmissionId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7001
7070
|
/**
|
|
7002
7071
|
* No description
|
|
7003
7072
|
*
|
|
@@ -7011,7 +7080,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7011
7080
|
downloadFormSubmissionFile: (formSubmissionFileId: string, formSubmissionId: string, query?: {
|
|
7012
7081
|
/** @format uuid */
|
|
7013
7082
|
siteConfigurationId?: string;
|
|
7014
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FileWithBytes, any>>;
|
|
7083
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FileWithBytes, any, {}>>;
|
|
7015
7084
|
/**
|
|
7016
7085
|
* No description
|
|
7017
7086
|
*
|
|
@@ -7029,7 +7098,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7029
7098
|
pageNumber?: number;
|
|
7030
7099
|
sortBy?: string;
|
|
7031
7100
|
sortDirection?: string;
|
|
7032
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionPaginated, any>>;
|
|
7101
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionPaginated, any, {}>>;
|
|
7033
7102
|
/**
|
|
7034
7103
|
* No description
|
|
7035
7104
|
*
|
|
@@ -7042,7 +7111,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7042
7111
|
*/
|
|
7043
7112
|
createFormSubmission: (data: FormSubmissionRequest, query?: {
|
|
7044
7113
|
formID?: string;
|
|
7045
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any>>;
|
|
7114
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any, {}>>;
|
|
7046
7115
|
/**
|
|
7047
7116
|
* No description
|
|
7048
7117
|
*
|
|
@@ -7053,7 +7122,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7053
7122
|
* @secure
|
|
7054
7123
|
* @response `200` `FormSubmission` Success
|
|
7055
7124
|
*/
|
|
7056
|
-
getFormSubmission: (id: string, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any>>;
|
|
7125
|
+
getFormSubmission: (id: string, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any, {}>>;
|
|
7057
7126
|
/**
|
|
7058
7127
|
* No description
|
|
7059
7128
|
*
|
|
@@ -7064,7 +7133,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7064
7133
|
* @secure
|
|
7065
7134
|
* @response `200` `FormSubmission` Success
|
|
7066
7135
|
*/
|
|
7067
|
-
replaceFormSubmission: (id: string, data: FormSubmissionRequest, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any>>;
|
|
7136
|
+
replaceFormSubmission: (id: string, data: FormSubmissionRequest, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any, {}>>;
|
|
7068
7137
|
/**
|
|
7069
7138
|
* No description
|
|
7070
7139
|
*
|
|
@@ -7075,7 +7144,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7075
7144
|
* @secure
|
|
7076
7145
|
* @response `204` `void` No Content
|
|
7077
7146
|
*/
|
|
7078
|
-
deleteFormSubmission: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7147
|
+
deleteFormSubmission: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7079
7148
|
/**
|
|
7080
7149
|
* No description
|
|
7081
7150
|
*
|
|
@@ -7093,7 +7162,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7093
7162
|
pageNumber?: number;
|
|
7094
7163
|
sortBy?: string;
|
|
7095
7164
|
sortDirection?: string;
|
|
7096
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionPaginated, any>>;
|
|
7165
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionPaginated, any, {}>>;
|
|
7097
7166
|
/**
|
|
7098
7167
|
* No description
|
|
7099
7168
|
*
|
|
@@ -7104,7 +7173,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7104
7173
|
* @secure
|
|
7105
7174
|
* @response `200` `(FormVersion)[]` Success
|
|
7106
7175
|
*/
|
|
7107
|
-
getFormVersions: (formId: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion[], any>>;
|
|
7176
|
+
getFormVersions: (formId: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion[], any, {}>>;
|
|
7108
7177
|
/**
|
|
7109
7178
|
* No description
|
|
7110
7179
|
*
|
|
@@ -7115,7 +7184,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7115
7184
|
* @secure
|
|
7116
7185
|
* @response `200` `FormVersion` Success
|
|
7117
7186
|
*/
|
|
7118
|
-
createFormVersion: (formId: string, data: FormVersionRequest, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
|
|
7187
|
+
createFormVersion: (formId: string, data: FormVersionRequest, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any, {}>>;
|
|
7119
7188
|
/**
|
|
7120
7189
|
* No description
|
|
7121
7190
|
*
|
|
@@ -7126,7 +7195,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7126
7195
|
* @secure
|
|
7127
7196
|
* @response `200` `FormVersion` Success
|
|
7128
7197
|
*/
|
|
7129
|
-
getFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
|
|
7198
|
+
getFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any, {}>>;
|
|
7130
7199
|
/**
|
|
7131
7200
|
* No description
|
|
7132
7201
|
*
|
|
@@ -7137,7 +7206,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7137
7206
|
* @secure
|
|
7138
7207
|
* @response `200` `FormVersion` Success
|
|
7139
7208
|
*/
|
|
7140
|
-
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, {}>>;
|
|
7141
7210
|
/**
|
|
7142
7211
|
* No description
|
|
7143
7212
|
*
|
|
@@ -7148,7 +7217,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7148
7217
|
* @secure
|
|
7149
7218
|
* @response `200` `FormVersion` Success
|
|
7150
7219
|
*/
|
|
7151
|
-
deleteFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
|
|
7220
|
+
deleteFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any, {}>>;
|
|
7152
7221
|
/**
|
|
7153
7222
|
* No description
|
|
7154
7223
|
*
|
|
@@ -7159,7 +7228,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7159
7228
|
* @secure
|
|
7160
7229
|
* @response `200` `Record<string,any>` Success
|
|
7161
7230
|
*/
|
|
7162
|
-
getLoanData: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Record<string, any>, any>>;
|
|
7231
|
+
getLoanData: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Record<string, any>, any, {}>>;
|
|
7163
7232
|
/**
|
|
7164
7233
|
* No description
|
|
7165
7234
|
*
|
|
@@ -7172,7 +7241,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7172
7241
|
* @response `200` `string` Success
|
|
7173
7242
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7174
7243
|
*/
|
|
7175
|
-
updateLoanConsentAndCustomFieldsObsolete: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
7244
|
+
updateLoanConsentAndCustomFieldsObsolete: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
7176
7245
|
/**
|
|
7177
7246
|
* No description
|
|
7178
7247
|
*
|
|
@@ -7183,7 +7252,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7183
7252
|
* @secure
|
|
7184
7253
|
* @response `200` `GetReport` Success
|
|
7185
7254
|
*/
|
|
7186
|
-
getLoansReport: (data: GetReportRequest, params?: RequestParams) => Promise<AxiosResponse<GetReport, any>>;
|
|
7255
|
+
getLoansReport: (data: GetReportRequest, params?: RequestParams) => Promise<AxiosResponse<GetReport, any, {}>>;
|
|
7187
7256
|
/**
|
|
7188
7257
|
* No description
|
|
7189
7258
|
*
|
|
@@ -7200,7 +7269,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7200
7269
|
createLoan: (data: any, query?: {
|
|
7201
7270
|
/** @default false */
|
|
7202
7271
|
isPatch?: boolean;
|
|
7203
|
-
}, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
7272
|
+
}, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
7204
7273
|
/**
|
|
7205
7274
|
* No description
|
|
7206
7275
|
*
|
|
@@ -7216,7 +7285,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7216
7285
|
createLoanInternal: (data: any, query?: {
|
|
7217
7286
|
/** @default false */
|
|
7218
7287
|
isPatch?: boolean;
|
|
7219
|
-
}, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
7288
|
+
}, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
7220
7289
|
/**
|
|
7221
7290
|
* No description
|
|
7222
7291
|
*
|
|
@@ -7228,7 +7297,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7228
7297
|
* @response `200` `string` Success
|
|
7229
7298
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7230
7299
|
*/
|
|
7231
|
-
updateLoanCustomFields: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
7300
|
+
updateLoanCustomFields: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
7232
7301
|
/**
|
|
7233
7302
|
* No description
|
|
7234
7303
|
*
|
|
@@ -7241,7 +7310,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7241
7310
|
* @response `202` `string` Accepted
|
|
7242
7311
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7243
7312
|
*/
|
|
7244
|
-
updateLoanConsent: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
7313
|
+
updateLoanConsent: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
7245
7314
|
/**
|
|
7246
7315
|
* No description
|
|
7247
7316
|
*
|
|
@@ -7252,7 +7321,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7252
7321
|
* @secure
|
|
7253
7322
|
* @response `200` `(DocumentData)[]` Success
|
|
7254
7323
|
*/
|
|
7255
|
-
getTaskDocumentsByLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentData[], any>>;
|
|
7324
|
+
getTaskDocumentsByLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentData[], any, {}>>;
|
|
7256
7325
|
/**
|
|
7257
7326
|
* No description
|
|
7258
7327
|
*
|
|
@@ -7266,7 +7335,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7266
7335
|
getLoanDocumentContent: (loanId: string, documentId: string, query?: {
|
|
7267
7336
|
/** @default "base64" */
|
|
7268
7337
|
contentType?: string;
|
|
7269
|
-
}, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7338
|
+
}, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7270
7339
|
/**
|
|
7271
7340
|
* No description
|
|
7272
7341
|
*
|
|
@@ -7277,7 +7346,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7277
7346
|
* @secure
|
|
7278
7347
|
* @response `204` `void` No Content
|
|
7279
7348
|
*/
|
|
7280
|
-
getLoanRecipients: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7349
|
+
getLoanRecipients: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7281
7350
|
/**
|
|
7282
7351
|
* No description
|
|
7283
7352
|
*
|
|
@@ -7288,7 +7357,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7288
7357
|
* @secure
|
|
7289
7358
|
* @response `200` `(PreliminaryCondition)[]` Success
|
|
7290
7359
|
*/
|
|
7291
|
-
getPreliminaryConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<PreliminaryCondition[], any>>;
|
|
7360
|
+
getPreliminaryConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<PreliminaryCondition[], any, {}>>;
|
|
7292
7361
|
/**
|
|
7293
7362
|
* No description
|
|
7294
7363
|
*
|
|
@@ -7299,7 +7368,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7299
7368
|
* @secure
|
|
7300
7369
|
* @response `200` `(UnderwritingCondition)[]` Success
|
|
7301
7370
|
*/
|
|
7302
|
-
getUnderwritingConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UnderwritingCondition[], any>>;
|
|
7371
|
+
getUnderwritingConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UnderwritingCondition[], any, {}>>;
|
|
7303
7372
|
/**
|
|
7304
7373
|
* No description
|
|
7305
7374
|
*
|
|
@@ -7310,7 +7379,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7310
7379
|
* @secure
|
|
7311
7380
|
* @response `200` `string` Success
|
|
7312
7381
|
*/
|
|
7313
|
-
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, {}>>;
|
|
7314
7383
|
/**
|
|
7315
7384
|
* No description
|
|
7316
7385
|
*
|
|
@@ -7322,7 +7391,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7322
7391
|
* @secure
|
|
7323
7392
|
* @response `200` `DocumentDataRequest` Success
|
|
7324
7393
|
*/
|
|
7325
|
-
createLegacyLoanDocument: (data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any>>;
|
|
7394
|
+
createLegacyLoanDocument: (data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any, {}>>;
|
|
7326
7395
|
/**
|
|
7327
7396
|
* No description
|
|
7328
7397
|
*
|
|
@@ -7339,7 +7408,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7339
7408
|
createEditDraftForLoan: (loanId: string, query?: {
|
|
7340
7409
|
/** @default false */
|
|
7341
7410
|
isCoBorrower?: boolean;
|
|
7342
|
-
}, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
|
|
7411
|
+
}, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
|
|
7343
7412
|
/**
|
|
7344
7413
|
* No description
|
|
7345
7414
|
*
|
|
@@ -7355,7 +7424,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7355
7424
|
file?: File;
|
|
7356
7425
|
/** @format int32 */
|
|
7357
7426
|
weight?: number;
|
|
7358
|
-
}, params?: RequestParams) => Promise<AxiosResponse<ListingFile, any>>;
|
|
7427
|
+
}, params?: RequestParams) => Promise<AxiosResponse<ListingFile, any, {}>>;
|
|
7359
7428
|
/**
|
|
7360
7429
|
* No description
|
|
7361
7430
|
*
|
|
@@ -7366,7 +7435,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7366
7435
|
* @secure
|
|
7367
7436
|
* @response `200` `ListingFile` Success
|
|
7368
7437
|
*/
|
|
7369
|
-
updateListingFiles: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingFile, any>>;
|
|
7438
|
+
updateListingFiles: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingFile, any, {}>>;
|
|
7370
7439
|
/**
|
|
7371
7440
|
* No description
|
|
7372
7441
|
*
|
|
@@ -7377,7 +7446,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7377
7446
|
* @secure
|
|
7378
7447
|
* @response `204` `Listing` No Content
|
|
7379
7448
|
*/
|
|
7380
|
-
removeListingFile: (listingId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
|
|
7449
|
+
removeListingFile: (listingId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
|
|
7381
7450
|
/**
|
|
7382
7451
|
* No description
|
|
7383
7452
|
*
|
|
@@ -7395,7 +7464,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7395
7464
|
file?: File;
|
|
7396
7465
|
/** @format int32 */
|
|
7397
7466
|
weight?: number;
|
|
7398
|
-
}, params?: RequestParams) => Promise<AxiosResponse<ListingPhoto, any>>;
|
|
7467
|
+
}, params?: RequestParams) => Promise<AxiosResponse<ListingPhoto, any, {}>>;
|
|
7399
7468
|
/**
|
|
7400
7469
|
* No description
|
|
7401
7470
|
*
|
|
@@ -7406,7 +7475,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7406
7475
|
* @secure
|
|
7407
7476
|
* @response `200` `(ListingPhoto)[]` Success
|
|
7408
7477
|
*/
|
|
7409
|
-
updateListingPhotos: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingPhoto[], any>>;
|
|
7478
|
+
updateListingPhotos: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingPhoto[], any, {}>>;
|
|
7410
7479
|
/**
|
|
7411
7480
|
* No description
|
|
7412
7481
|
*
|
|
@@ -7417,7 +7486,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7417
7486
|
* @secure
|
|
7418
7487
|
* @response `204` `Listing` No Content
|
|
7419
7488
|
*/
|
|
7420
|
-
removeListingPhoto: (listingId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
|
|
7489
|
+
removeListingPhoto: (listingId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
|
|
7421
7490
|
/**
|
|
7422
7491
|
* No description
|
|
7423
7492
|
*
|
|
@@ -7435,7 +7504,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7435
7504
|
pageNumber?: number;
|
|
7436
7505
|
sortBy?: string;
|
|
7437
7506
|
sortDirection?: string;
|
|
7438
|
-
}, params?: RequestParams) => Promise<AxiosResponse<ListingPaginated, any>>;
|
|
7507
|
+
}, params?: RequestParams) => Promise<AxiosResponse<ListingPaginated, any, {}>>;
|
|
7439
7508
|
/**
|
|
7440
7509
|
* No description
|
|
7441
7510
|
*
|
|
@@ -7446,7 +7515,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7446
7515
|
* @secure
|
|
7447
7516
|
* @response `201` `Listing` Created
|
|
7448
7517
|
*/
|
|
7449
|
-
createListing: (data: ListingRequest, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
|
|
7518
|
+
createListing: (data: ListingRequest, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
|
|
7450
7519
|
/**
|
|
7451
7520
|
* No description
|
|
7452
7521
|
*
|
|
@@ -7457,7 +7526,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7457
7526
|
* @secure
|
|
7458
7527
|
* @response `200` `Listing` Success
|
|
7459
7528
|
*/
|
|
7460
|
-
getListingBySlug: (slug: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
|
|
7529
|
+
getListingBySlug: (slug: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
|
|
7461
7530
|
/**
|
|
7462
7531
|
* No description
|
|
7463
7532
|
*
|
|
@@ -7468,7 +7537,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7468
7537
|
* @secure
|
|
7469
7538
|
* @response `200` `Listing` Success
|
|
7470
7539
|
*/
|
|
7471
|
-
getListing: (id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
|
|
7540
|
+
getListing: (id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
|
|
7472
7541
|
/**
|
|
7473
7542
|
* No description
|
|
7474
7543
|
*
|
|
@@ -7479,7 +7548,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7479
7548
|
* @secure
|
|
7480
7549
|
* @response `200` `Listing` Success
|
|
7481
7550
|
*/
|
|
7482
|
-
replaceListing: (id: string, data: ListingRequest, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
|
|
7551
|
+
replaceListing: (id: string, data: ListingRequest, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
|
|
7483
7552
|
/**
|
|
7484
7553
|
* No description
|
|
7485
7554
|
*
|
|
@@ -7490,7 +7559,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7490
7559
|
* @secure
|
|
7491
7560
|
* @response `204` `void` No Content
|
|
7492
7561
|
*/
|
|
7493
|
-
deleteListing: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7562
|
+
deleteListing: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7494
7563
|
/**
|
|
7495
7564
|
* No description
|
|
7496
7565
|
*
|
|
@@ -7508,7 +7577,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7508
7577
|
pageNumber?: number;
|
|
7509
7578
|
sortBy?: string;
|
|
7510
7579
|
sortDirection?: string;
|
|
7511
|
-
}, params?: RequestParams) => Promise<AxiosResponse<ListingPaginated, any>>;
|
|
7580
|
+
}, params?: RequestParams) => Promise<AxiosResponse<ListingPaginated, any, {}>>;
|
|
7512
7581
|
/**
|
|
7513
7582
|
* No description
|
|
7514
7583
|
*
|
|
@@ -7522,7 +7591,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7522
7591
|
updateListingBackgroundImage: (id: string, data: {
|
|
7523
7592
|
/** @format binary */
|
|
7524
7593
|
file?: File;
|
|
7525
|
-
}, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
|
|
7594
|
+
}, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
|
|
7526
7595
|
/**
|
|
7527
7596
|
* No description
|
|
7528
7597
|
*
|
|
@@ -7533,7 +7602,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7533
7602
|
* @secure
|
|
7534
7603
|
* @response `204` `void` No Content
|
|
7535
7604
|
*/
|
|
7536
|
-
deleteListingBackgroundImage: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7605
|
+
deleteListingBackgroundImage: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7537
7606
|
/**
|
|
7538
7607
|
* No description
|
|
7539
7608
|
*
|
|
@@ -7544,7 +7613,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7544
7613
|
* @secure
|
|
7545
7614
|
* @response `200` `File` Success
|
|
7546
7615
|
*/
|
|
7547
|
-
getListingOpenHouseFlyer: (id: string, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
|
|
7616
|
+
getListingOpenHouseFlyer: (id: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
|
|
7548
7617
|
/**
|
|
7549
7618
|
* No description
|
|
7550
7619
|
*
|
|
@@ -7555,7 +7624,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7555
7624
|
* @secure
|
|
7556
7625
|
* @response `200` `RunLOCalculation` Success
|
|
7557
7626
|
*/
|
|
7558
|
-
getLoanCalculator: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any>>;
|
|
7627
|
+
getLoanCalculator: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any, {}>>;
|
|
7559
7628
|
/**
|
|
7560
7629
|
* No description
|
|
7561
7630
|
*
|
|
@@ -7568,7 +7637,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7568
7637
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7569
7638
|
* @response `423` `UnprocessableEntity` Client Error
|
|
7570
7639
|
*/
|
|
7571
|
-
runLoanCalculator: (loanId: string, data: RunLOCalculationRequest, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any>>;
|
|
7640
|
+
runLoanCalculator: (loanId: string, data: RunLOCalculationRequest, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any, {}>>;
|
|
7572
7641
|
/**
|
|
7573
7642
|
* No description
|
|
7574
7643
|
*
|
|
@@ -7579,7 +7648,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7579
7648
|
* @secure
|
|
7580
7649
|
* @response `200` `LoanComparison` Success
|
|
7581
7650
|
*/
|
|
7582
|
-
getLoanComparisons: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<LoanComparison, any>>;
|
|
7651
|
+
getLoanComparisons: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<LoanComparison, any, {}>>;
|
|
7583
7652
|
/**
|
|
7584
7653
|
* No description
|
|
7585
7654
|
*
|
|
@@ -7592,7 +7661,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7592
7661
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7593
7662
|
* @response `423` `UnprocessableEntity` Client Error
|
|
7594
7663
|
*/
|
|
7595
|
-
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, {}>>;
|
|
7596
7665
|
/**
|
|
7597
7666
|
* No description
|
|
7598
7667
|
*
|
|
@@ -7603,7 +7672,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7603
7672
|
* @secure
|
|
7604
7673
|
* @response `204` `void` No Content
|
|
7605
7674
|
*/
|
|
7606
|
-
deleteLoanComparison: (loanId: string, index: number, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7675
|
+
deleteLoanComparison: (loanId: string, index: number, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7607
7676
|
/**
|
|
7608
7677
|
* No description
|
|
7609
7678
|
*
|
|
@@ -7615,7 +7684,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7615
7684
|
* @response `204` `void` No Content
|
|
7616
7685
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7617
7686
|
*/
|
|
7618
|
-
createLoanComparisonPdf: (loanId: string, data: PostLoanComparisonPdfRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7687
|
+
createLoanComparisonPdf: (loanId: string, data: PostLoanComparisonPdfRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7619
7688
|
/**
|
|
7620
7689
|
* No description
|
|
7621
7690
|
*
|
|
@@ -7628,7 +7697,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7628
7697
|
* @response `404` `ProblemDetails` Not Found
|
|
7629
7698
|
* @response `422` `ProblemDetails` Client Error
|
|
7630
7699
|
*/
|
|
7631
|
-
resyncLoanConsents: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7700
|
+
resyncLoanConsents: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7632
7701
|
/**
|
|
7633
7702
|
* No description
|
|
7634
7703
|
*
|
|
@@ -7639,7 +7708,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7639
7708
|
* @secure
|
|
7640
7709
|
* @response `200` `(CustomFieldValue)[]` Success
|
|
7641
7710
|
*/
|
|
7642
|
-
getLoanCustomFieldValues: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<CustomFieldValue[], any>>;
|
|
7711
|
+
getLoanCustomFieldValues: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<CustomFieldValue[], any, {}>>;
|
|
7643
7712
|
/**
|
|
7644
7713
|
* No description
|
|
7645
7714
|
*
|
|
@@ -7652,7 +7721,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7652
7721
|
* @response `400` `ProblemDetails` Bad Request
|
|
7653
7722
|
* @response `422` `ProblemDetails` Client Error
|
|
7654
7723
|
*/
|
|
7655
|
-
bulkSetLoanCustomFieldValues: (loanId: string, data: SetCustomFieldValueRequest[], params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7724
|
+
bulkSetLoanCustomFieldValues: (loanId: string, data: SetCustomFieldValueRequest[], params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7656
7725
|
/**
|
|
7657
7726
|
* No description
|
|
7658
7727
|
*
|
|
@@ -7666,7 +7735,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7666
7735
|
* @response `404` `ProblemDetails` Not Found
|
|
7667
7736
|
* @response `422` `ProblemDetails` Client Error
|
|
7668
7737
|
*/
|
|
7669
|
-
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, {}>>;
|
|
7670
7739
|
/**
|
|
7671
7740
|
* No description
|
|
7672
7741
|
*
|
|
@@ -7678,7 +7747,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7678
7747
|
* @response `204` `void` No Content
|
|
7679
7748
|
* @response `404` `ProblemDetails` Not Found
|
|
7680
7749
|
*/
|
|
7681
|
-
deleteLoanCustomFieldValue: (loanId: string, definitionId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7750
|
+
deleteLoanCustomFieldValue: (loanId: string, definitionId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7682
7751
|
/**
|
|
7683
7752
|
* No description
|
|
7684
7753
|
*
|
|
@@ -7689,7 +7758,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7689
7758
|
* @secure
|
|
7690
7759
|
* @response `200` `(string)[]` Success
|
|
7691
7760
|
*/
|
|
7692
|
-
getLoanDocumentBuckets: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<string[], any>>;
|
|
7761
|
+
getLoanDocumentBuckets: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<string[], any, {}>>;
|
|
7693
7762
|
/**
|
|
7694
7763
|
* No description
|
|
7695
7764
|
*
|
|
@@ -7700,18 +7769,18 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7700
7769
|
* @secure
|
|
7701
7770
|
* @response `201` `(string)[]` Created
|
|
7702
7771
|
*/
|
|
7703
|
-
createLoanDocumentBuckets: (loanId: string, data: string[], params?: RequestParams) => Promise<AxiosResponse<string[], any>>;
|
|
7772
|
+
createLoanDocumentBuckets: (loanId: string, data: string[], params?: RequestParams) => Promise<AxiosResponse<string[], any, {}>>;
|
|
7704
7773
|
/**
|
|
7705
7774
|
* No description
|
|
7706
7775
|
*
|
|
7707
7776
|
* @tags LoanDocumentFolders
|
|
7708
|
-
* @name
|
|
7777
|
+
* @name GetAllLoanDocumentFolders
|
|
7709
7778
|
* @summary Get all loan document folders for the current account
|
|
7710
7779
|
* @request GET:/api/loan-document-folders
|
|
7711
7780
|
* @secure
|
|
7712
7781
|
* @response `200` `(LoanDocumentFolder)[]` Success
|
|
7713
7782
|
*/
|
|
7714
|
-
|
|
7783
|
+
getAllLoanDocumentFolders: (params?: RequestParams) => Promise<AxiosResponse<LoanDocumentFolder[], any, {}>>;
|
|
7715
7784
|
/**
|
|
7716
7785
|
* No description
|
|
7717
7786
|
*
|
|
@@ -7724,7 +7793,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7724
7793
|
* @response `409` `ProblemDetails` Conflict
|
|
7725
7794
|
* @response `422` `ProblemDetails` Client Error
|
|
7726
7795
|
*/
|
|
7727
|
-
createLoanDocumentFolder: (data: CreateLoanDocumentFolderRequest, params?: RequestParams) => Promise<AxiosResponse<LoanDocumentFolder, any>>;
|
|
7796
|
+
createLoanDocumentFolder: (data: CreateLoanDocumentFolderRequest, params?: RequestParams) => Promise<AxiosResponse<LoanDocumentFolder, any, {}>>;
|
|
7728
7797
|
/**
|
|
7729
7798
|
* No description
|
|
7730
7799
|
*
|
|
@@ -7736,7 +7805,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7736
7805
|
* @response `200` `LoanDocumentFolder` Success
|
|
7737
7806
|
* @response `404` `ProblemDetails` Not Found
|
|
7738
7807
|
*/
|
|
7739
|
-
getLoanDocumentFolderById: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanDocumentFolder, any>>;
|
|
7808
|
+
getLoanDocumentFolderById: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanDocumentFolder, any, {}>>;
|
|
7740
7809
|
/**
|
|
7741
7810
|
* No description
|
|
7742
7811
|
*
|
|
@@ -7751,7 +7820,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7751
7820
|
* @response `409` `ProblemDetails` Conflict
|
|
7752
7821
|
* @response `422` `ProblemDetails` Client Error
|
|
7753
7822
|
*/
|
|
7754
|
-
updateLoanDocumentFolder: (id: string, data: UpdateLoanDocumentFolderRequest, params?: RequestParams) => Promise<AxiosResponse<LoanDocumentFolder, any>>;
|
|
7823
|
+
updateLoanDocumentFolder: (id: string, data: UpdateLoanDocumentFolderRequest, params?: RequestParams) => Promise<AxiosResponse<LoanDocumentFolder, any, {}>>;
|
|
7755
7824
|
/**
|
|
7756
7825
|
* No description
|
|
7757
7826
|
*
|
|
@@ -7765,7 +7834,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7765
7834
|
* @response `404` `ProblemDetails` Not Found
|
|
7766
7835
|
* @response `409` `ProblemDetails` Conflict
|
|
7767
7836
|
*/
|
|
7768
|
-
deleteLoanDocumentFolder: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7837
|
+
deleteLoanDocumentFolder: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7769
7838
|
/**
|
|
7770
7839
|
* No description
|
|
7771
7840
|
*
|
|
@@ -7778,7 +7847,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7778
7847
|
* @response `400` `ProblemDetails` Bad Request
|
|
7779
7848
|
* @response `404` `ProblemDetails` Not Found
|
|
7780
7849
|
*/
|
|
7781
|
-
deactivateLoanDocumentFolder: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7850
|
+
deactivateLoanDocumentFolder: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7782
7851
|
/**
|
|
7783
7852
|
* No description
|
|
7784
7853
|
*
|
|
@@ -7790,7 +7859,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7790
7859
|
* @response `204` `void` No Content
|
|
7791
7860
|
* @response `404` `ProblemDetails` Not Found
|
|
7792
7861
|
*/
|
|
7793
|
-
reactivateLoanDocumentFolder: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7862
|
+
reactivateLoanDocumentFolder: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7794
7863
|
/**
|
|
7795
7864
|
* No description
|
|
7796
7865
|
*
|
|
@@ -7802,7 +7871,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7802
7871
|
* @response `200` `LoanDocumentFolderUsage` Success
|
|
7803
7872
|
* @response `404` `ProblemDetails` Not Found
|
|
7804
7873
|
*/
|
|
7805
|
-
getLoanDocumentFolderUsage: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanDocumentFolderUsage, any>>;
|
|
7874
|
+
getLoanDocumentFolderUsage: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanDocumentFolderUsage, any, {}>>;
|
|
7806
7875
|
/**
|
|
7807
7876
|
* No description
|
|
7808
7877
|
*
|
|
@@ -7817,7 +7886,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7817
7886
|
getLoanDocument: (loanId: string, documentId: string, query?: {
|
|
7818
7887
|
/** @default false */
|
|
7819
7888
|
preview?: boolean;
|
|
7820
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any>>;
|
|
7889
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any, {}>>;
|
|
7821
7890
|
/**
|
|
7822
7891
|
* No description
|
|
7823
7892
|
*
|
|
@@ -7829,7 +7898,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7829
7898
|
* @response `200` `Record<string,string>` Success
|
|
7830
7899
|
* @response `400` `ProblemDetails` Bad Request
|
|
7831
7900
|
*/
|
|
7832
|
-
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, {}>>;
|
|
7833
7902
|
/**
|
|
7834
7903
|
* No description
|
|
7835
7904
|
*
|
|
@@ -7847,23 +7916,21 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7847
7916
|
pageNumber?: number;
|
|
7848
7917
|
sortBy?: string;
|
|
7849
7918
|
sortDirection?: string;
|
|
7850
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanDocumentSearchPaginated, any>>;
|
|
7919
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanDocumentSearchPaginated, any, {}>>;
|
|
7851
7920
|
/**
|
|
7852
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).
|
|
7853
7922
|
*
|
|
7854
7923
|
* @tags LoanDocuments
|
|
7855
|
-
* @name
|
|
7924
|
+
* @name GetLoanDocumentFolders
|
|
7856
7925
|
* @summary Get document folder hierarchy
|
|
7857
7926
|
* @request POST:/api/loans/{loanId}/documents/folders
|
|
7858
|
-
* @originalName getLoanDocumentFolders
|
|
7859
|
-
* @duplicate
|
|
7860
7927
|
* @secure
|
|
7861
7928
|
* @response `200` `(DocumentFolder)[]` Success
|
|
7862
7929
|
*/
|
|
7863
|
-
|
|
7930
|
+
getLoanDocumentFolders: (loanId: string, data: DocumentFoldersRequest, query?: {
|
|
7864
7931
|
/** @default false */
|
|
7865
7932
|
folderNamesOnly?: boolean;
|
|
7866
|
-
}, params?: RequestParams) => Promise<AxiosResponse<DocumentFolder[], any>>;
|
|
7933
|
+
}, params?: RequestParams) => Promise<AxiosResponse<DocumentFolder[], any, {}>>;
|
|
7867
7934
|
/**
|
|
7868
7935
|
* No description
|
|
7869
7936
|
*
|
|
@@ -7875,7 +7942,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7875
7942
|
* @response `200` `string` Success
|
|
7876
7943
|
* @response `404` `ProblemDetails` Not Found
|
|
7877
7944
|
*/
|
|
7878
|
-
downloadLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
7945
|
+
downloadLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
7879
7946
|
/**
|
|
7880
7947
|
* No description
|
|
7881
7948
|
*
|
|
@@ -7893,7 +7960,9 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7893
7960
|
/** @format binary */
|
|
7894
7961
|
file?: File;
|
|
7895
7962
|
bucket?: string;
|
|
7896
|
-
|
|
7963
|
+
/** @format uuid */
|
|
7964
|
+
folderID?: string;
|
|
7965
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any, {}>>;
|
|
7897
7966
|
/**
|
|
7898
7967
|
* No description
|
|
7899
7968
|
*
|
|
@@ -7906,7 +7975,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7906
7975
|
* @response `404` `ProblemDetails` Not Found
|
|
7907
7976
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7908
7977
|
*/
|
|
7909
|
-
retryFailedLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any>>;
|
|
7978
|
+
retryFailedLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any, {}>>;
|
|
7910
7979
|
/**
|
|
7911
7980
|
* No description
|
|
7912
7981
|
*
|
|
@@ -7917,7 +7986,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7917
7986
|
* @secure
|
|
7918
7987
|
* @response `200` `DocumentDataRequest` Success
|
|
7919
7988
|
*/
|
|
7920
|
-
generateLoanDocument: (loanId: string, data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any>>;
|
|
7989
|
+
generateLoanDocument: (loanId: string, data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any, {}>>;
|
|
7921
7990
|
/**
|
|
7922
7991
|
* No description
|
|
7923
7992
|
*
|
|
@@ -7930,7 +7999,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7930
7999
|
* @response `400` `ProblemDetails` Bad Request
|
|
7931
8000
|
* @response `404` `ProblemDetails` Not Found
|
|
7932
8001
|
*/
|
|
7933
|
-
sendLoanDocuments: (loanId: string, data: SendLoanDocumentsRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8002
|
+
sendLoanDocuments: (loanId: string, data: SendLoanDocumentsRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7934
8003
|
/**
|
|
7935
8004
|
* @description Fetches all documents from Encompass that don't exist locally and stores them in S3
|
|
7936
8005
|
*
|
|
@@ -7942,7 +8011,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7942
8011
|
* @response `200` `DocumentSync` Success
|
|
7943
8012
|
* @response `404` `ProblemDetails` Not Found
|
|
7944
8013
|
*/
|
|
7945
|
-
syncLoanDocumentsFromLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentSync, any>>;
|
|
8014
|
+
syncLoanDocumentsFromLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentSync, any, {}>>;
|
|
7946
8015
|
/**
|
|
7947
8016
|
* @description Re-attempts to push a failed document to LOS
|
|
7948
8017
|
*
|
|
@@ -7955,7 +8024,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7955
8024
|
* @response `404` `ProblemDetails` Not Found
|
|
7956
8025
|
* @response `423` `ProblemDetails` Client Error
|
|
7957
8026
|
*/
|
|
7958
|
-
retrySyncLoanDocumentToLos: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8027
|
+
retrySyncLoanDocumentToLos: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7959
8028
|
/**
|
|
7960
8029
|
* No description
|
|
7961
8030
|
*
|
|
@@ -7966,7 +8035,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7966
8035
|
* @secure
|
|
7967
8036
|
* @response `201` `Draft` Created
|
|
7968
8037
|
*/
|
|
7969
|
-
createLoanDraft: (data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
|
|
8038
|
+
createLoanDraft: (data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
|
|
7970
8039
|
/**
|
|
7971
8040
|
* No description
|
|
7972
8041
|
*
|
|
@@ -7977,7 +8046,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7977
8046
|
* @secure
|
|
7978
8047
|
* @response `200` `(DraftContent)[]` Success
|
|
7979
8048
|
*/
|
|
7980
|
-
getLoanDrafts: (params?: RequestParams) => Promise<AxiosResponse<DraftContent[], any>>;
|
|
8049
|
+
getLoanDrafts: (params?: RequestParams) => Promise<AxiosResponse<DraftContent[], any, {}>>;
|
|
7981
8050
|
/**
|
|
7982
8051
|
* No description
|
|
7983
8052
|
*
|
|
@@ -7988,7 +8057,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7988
8057
|
* @secure
|
|
7989
8058
|
* @response `200` `DraftContent` Success
|
|
7990
8059
|
*/
|
|
7991
|
-
getLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<DraftContent, any>>;
|
|
8060
|
+
getLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<DraftContent, any, {}>>;
|
|
7992
8061
|
/**
|
|
7993
8062
|
* No description
|
|
7994
8063
|
*
|
|
@@ -7999,7 +8068,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7999
8068
|
* @secure
|
|
8000
8069
|
* @response `200` `Draft` Success
|
|
8001
8070
|
*/
|
|
8002
|
-
replaceLoanDraft: (draftId: string, data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
|
|
8071
|
+
replaceLoanDraft: (draftId: string, data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
|
|
8003
8072
|
/**
|
|
8004
8073
|
* No description
|
|
8005
8074
|
*
|
|
@@ -8010,7 +8079,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8010
8079
|
* @secure
|
|
8011
8080
|
* @response `204` `void` No Content
|
|
8012
8081
|
*/
|
|
8013
|
-
deleteLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8082
|
+
deleteLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8014
8083
|
/**
|
|
8015
8084
|
* No description
|
|
8016
8085
|
*
|
|
@@ -8028,7 +8097,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8028
8097
|
pageNumber?: number;
|
|
8029
8098
|
sortBy?: string;
|
|
8030
8099
|
sortDirection?: string;
|
|
8031
|
-
}, params?: RequestParams) => Promise<AxiosResponse<DraftContentPaginated, any>>;
|
|
8100
|
+
}, params?: RequestParams) => Promise<AxiosResponse<DraftContentPaginated, any, {}>>;
|
|
8032
8101
|
/**
|
|
8033
8102
|
* No description
|
|
8034
8103
|
*
|
|
@@ -8039,7 +8108,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8039
8108
|
* @secure
|
|
8040
8109
|
* @response `200` `Draft` Success
|
|
8041
8110
|
*/
|
|
8042
|
-
reassignLoanOfficer: (draftId: string, data: DraftLoanOfficerReassignRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
|
|
8111
|
+
reassignLoanOfficer: (draftId: string, data: DraftLoanOfficerReassignRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
|
|
8043
8112
|
/**
|
|
8044
8113
|
* No description
|
|
8045
8114
|
*
|
|
@@ -8050,7 +8119,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8050
8119
|
* @secure
|
|
8051
8120
|
* @response `200` `Draft` Success
|
|
8052
8121
|
*/
|
|
8053
|
-
restoreLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
|
|
8122
|
+
restoreLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
|
|
8054
8123
|
/**
|
|
8055
8124
|
* No description
|
|
8056
8125
|
*
|
|
@@ -8070,7 +8139,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8070
8139
|
pageNumber?: number;
|
|
8071
8140
|
sortBy?: string;
|
|
8072
8141
|
sortDirection?: string;
|
|
8073
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanImportPaginated, any>>;
|
|
8142
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanImportPaginated, any, {}>>;
|
|
8074
8143
|
/**
|
|
8075
8144
|
* No description
|
|
8076
8145
|
*
|
|
@@ -8081,7 +8150,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8081
8150
|
* @secure
|
|
8082
8151
|
* @response `201` `LoanImport` Created
|
|
8083
8152
|
*/
|
|
8084
|
-
createLoanImport: (data: CreateLoanImportRequest, params?: RequestParams) => Promise<AxiosResponse<LoanImport, any>>;
|
|
8153
|
+
createLoanImport: (data: CreateLoanImportRequest, params?: RequestParams) => Promise<AxiosResponse<LoanImport, any, {}>>;
|
|
8085
8154
|
/**
|
|
8086
8155
|
* No description
|
|
8087
8156
|
*
|
|
@@ -8092,7 +8161,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8092
8161
|
* @secure
|
|
8093
8162
|
* @response `200` `LoanImport` Success
|
|
8094
8163
|
*/
|
|
8095
|
-
getLoanImport: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanImport, any>>;
|
|
8164
|
+
getLoanImport: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanImport, any, {}>>;
|
|
8096
8165
|
/**
|
|
8097
8166
|
* No description
|
|
8098
8167
|
*
|
|
@@ -8110,7 +8179,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8110
8179
|
pageNumber?: number;
|
|
8111
8180
|
sortBy?: string;
|
|
8112
8181
|
sortDirection?: string;
|
|
8113
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanImportLogPaginated, any>>;
|
|
8182
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanImportLogPaginated, any, {}>>;
|
|
8114
8183
|
/**
|
|
8115
8184
|
* No description
|
|
8116
8185
|
*
|
|
@@ -8122,7 +8191,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8122
8191
|
* @response `200` `(Invite)[]` Success
|
|
8123
8192
|
* @response `404` `ProblemDetails` Not Found
|
|
8124
8193
|
*/
|
|
8125
|
-
getLoanInvites: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Invite[], any>>;
|
|
8194
|
+
getLoanInvites: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Invite[], any, {}>>;
|
|
8126
8195
|
/**
|
|
8127
8196
|
* No description
|
|
8128
8197
|
*
|
|
@@ -8134,7 +8203,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8134
8203
|
* @response `200` `(Invite)[]` Success
|
|
8135
8204
|
* @response `404` `ProblemDetails` Not Found
|
|
8136
8205
|
*/
|
|
8137
|
-
inviteLoanContacts: (loanId: string, data: string[], params?: RequestParams) => Promise<AxiosResponse<Invite[], any>>;
|
|
8206
|
+
inviteLoanContacts: (loanId: string, data: string[], params?: RequestParams) => Promise<AxiosResponse<Invite[], any, {}>>;
|
|
8138
8207
|
/**
|
|
8139
8208
|
* No description
|
|
8140
8209
|
*
|
|
@@ -8152,7 +8221,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8152
8221
|
pageNumber?: number;
|
|
8153
8222
|
sortBy?: string;
|
|
8154
8223
|
sortDirection?: string;
|
|
8155
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanLogPaginated, any>>;
|
|
8224
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanLogPaginated, any, {}>>;
|
|
8156
8225
|
/**
|
|
8157
8226
|
* No description
|
|
8158
8227
|
*
|
|
@@ -8164,7 +8233,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8164
8233
|
* @response `200` `LoanLogDetail` Success
|
|
8165
8234
|
* @response `404` `ProblemDetails` Not Found
|
|
8166
8235
|
*/
|
|
8167
|
-
getLoanLogById: (loanId: string, loanLogId: string, params?: RequestParams) => Promise<AxiosResponse<LoanLogDetail, any>>;
|
|
8236
|
+
getLoanLogById: (loanId: string, loanLogId: string, params?: RequestParams) => Promise<AxiosResponse<LoanLogDetail, any, {}>>;
|
|
8168
8237
|
/**
|
|
8169
8238
|
* No description
|
|
8170
8239
|
*
|
|
@@ -8183,7 +8252,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8183
8252
|
pageNumber?: number;
|
|
8184
8253
|
sortBy?: string;
|
|
8185
8254
|
sortDirection?: string;
|
|
8186
|
-
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any>>;
|
|
8255
|
+
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any, {}>>;
|
|
8187
8256
|
/**
|
|
8188
8257
|
* No description
|
|
8189
8258
|
*
|
|
@@ -8201,7 +8270,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8201
8270
|
pageNumber?: number;
|
|
8202
8271
|
sortBy?: string;
|
|
8203
8272
|
sortDirection?: string;
|
|
8204
|
-
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any>>;
|
|
8273
|
+
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any, {}>>;
|
|
8205
8274
|
/**
|
|
8206
8275
|
* No description
|
|
8207
8276
|
*
|
|
@@ -8212,7 +8281,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8212
8281
|
* @secure
|
|
8213
8282
|
* @response `200` `BranchUser` Success
|
|
8214
8283
|
*/
|
|
8215
|
-
getLoanOfficer: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any>>;
|
|
8284
|
+
getLoanOfficer: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any, {}>>;
|
|
8216
8285
|
/**
|
|
8217
8286
|
* No description
|
|
8218
8287
|
*
|
|
@@ -8224,7 +8293,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8224
8293
|
* @response `200` `SiteConfiguration` Success
|
|
8225
8294
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8226
8295
|
*/
|
|
8227
|
-
createLoanOfficerSiteConfiguration: (loanOfficerId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
8296
|
+
createLoanOfficerSiteConfiguration: (loanOfficerId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
8228
8297
|
/**
|
|
8229
8298
|
* No description
|
|
8230
8299
|
*
|
|
@@ -8235,7 +8304,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8235
8304
|
* @secure
|
|
8236
8305
|
* @response `200` `SiteConfigurationWithInherited` Success
|
|
8237
8306
|
*/
|
|
8238
|
-
getLoanOfficerSiteConfiguration: (loanOfficerId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
|
|
8307
|
+
getLoanOfficerSiteConfiguration: (loanOfficerId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any, {}>>;
|
|
8239
8308
|
/**
|
|
8240
8309
|
* No description
|
|
8241
8310
|
*
|
|
@@ -8249,7 +8318,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8249
8318
|
*/
|
|
8250
8319
|
replaceLoanOfficerSiteConfiguration: (loanOfficerId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
|
|
8251
8320
|
applyToChildren?: boolean;
|
|
8252
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
8321
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
8253
8322
|
/**
|
|
8254
8323
|
* No description
|
|
8255
8324
|
*
|
|
@@ -8267,7 +8336,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8267
8336
|
pageNumber?: number;
|
|
8268
8337
|
sortBy?: string;
|
|
8269
8338
|
sortDirection?: string;
|
|
8270
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanQueuePaginated, any>>;
|
|
8339
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanQueuePaginated, any, {}>>;
|
|
8271
8340
|
/**
|
|
8272
8341
|
* No description
|
|
8273
8342
|
*
|
|
@@ -8279,7 +8348,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8279
8348
|
* @response `200` `any` Success
|
|
8280
8349
|
* @response `404` `ProblemDetails` Not Found
|
|
8281
8350
|
*/
|
|
8282
|
-
getLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<any, any>>;
|
|
8351
|
+
getLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
8283
8352
|
/**
|
|
8284
8353
|
* No description
|
|
8285
8354
|
*
|
|
@@ -8291,7 +8360,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8291
8360
|
* @response `200` `LoanQueueWithData` Success
|
|
8292
8361
|
* @response `404` `ProblemDetails` Not Found
|
|
8293
8362
|
*/
|
|
8294
|
-
replaceLoanQueue: (loanQueueId: string, data: UpdateLoanQueueRequest, params?: RequestParams) => Promise<AxiosResponse<LoanQueueWithData, any>>;
|
|
8363
|
+
replaceLoanQueue: (loanQueueId: string, data: UpdateLoanQueueRequest, params?: RequestParams) => Promise<AxiosResponse<LoanQueueWithData, any, {}>>;
|
|
8295
8364
|
/**
|
|
8296
8365
|
* No description
|
|
8297
8366
|
*
|
|
@@ -8303,7 +8372,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8303
8372
|
* @response `204` `void` No Content
|
|
8304
8373
|
* @response `404` `ProblemDetails` Not Found
|
|
8305
8374
|
*/
|
|
8306
|
-
deleteLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8375
|
+
deleteLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8307
8376
|
/**
|
|
8308
8377
|
* No description
|
|
8309
8378
|
*
|
|
@@ -8315,7 +8384,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8315
8384
|
* @response `204` `void` No Content
|
|
8316
8385
|
* @response `404` `ProblemDetails` Not Found
|
|
8317
8386
|
*/
|
|
8318
|
-
retryLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8387
|
+
retryLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8319
8388
|
/**
|
|
8320
8389
|
* No description
|
|
8321
8390
|
*
|
|
@@ -8327,7 +8396,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8327
8396
|
* @response `200` `Loan` Success
|
|
8328
8397
|
* @response `404` `ProblemDetails` Not Found
|
|
8329
8398
|
*/
|
|
8330
|
-
getLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any>>;
|
|
8399
|
+
getLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any, {}>>;
|
|
8331
8400
|
/**
|
|
8332
8401
|
* No description
|
|
8333
8402
|
*
|
|
@@ -8338,7 +8407,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8338
8407
|
* @secure
|
|
8339
8408
|
* @response `200` `GetApplications` Success
|
|
8340
8409
|
*/
|
|
8341
|
-
getLoans: (params?: RequestParams) => Promise<AxiosResponse<GetApplications, any>>;
|
|
8410
|
+
getLoans: (params?: RequestParams) => Promise<AxiosResponse<GetApplications, any, {}>>;
|
|
8342
8411
|
/**
|
|
8343
8412
|
* No description
|
|
8344
8413
|
*
|
|
@@ -8352,7 +8421,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8352
8421
|
* @response `401` `ProblemDetails` Unauthorized
|
|
8353
8422
|
* @response `403` `ProblemDetails` Forbidden
|
|
8354
8423
|
*/
|
|
8355
|
-
createLoanv3: (data: LoanApplicationRequest, params?: RequestParams) => Promise<AxiosResponse<LoanApplication, any>>;
|
|
8424
|
+
createLoanv3: (data: LoanApplicationRequest, params?: RequestParams) => Promise<AxiosResponse<LoanApplication, any, {}>>;
|
|
8356
8425
|
/**
|
|
8357
8426
|
* No description
|
|
8358
8427
|
*
|
|
@@ -8370,7 +8439,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8370
8439
|
pageNumber?: number;
|
|
8371
8440
|
sortBy?: string;
|
|
8372
8441
|
sortDirection?: string;
|
|
8373
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanListPaginated, any>>;
|
|
8442
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanListPaginated, any, {}>>;
|
|
8374
8443
|
/**
|
|
8375
8444
|
* No description
|
|
8376
8445
|
*
|
|
@@ -8386,7 +8455,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8386
8455
|
* @response `404` `ProblemDetails` Not Found
|
|
8387
8456
|
* @response `409` `any` Conflict
|
|
8388
8457
|
*/
|
|
8389
|
-
updateLoan: (loanId: string, data: any, params?: RequestParams) => Promise<AxiosResponse<Loan, any>>;
|
|
8458
|
+
updateLoan: (loanId: string, data: any, params?: RequestParams) => Promise<AxiosResponse<Loan, any, {}>>;
|
|
8390
8459
|
/**
|
|
8391
8460
|
* No description
|
|
8392
8461
|
*
|
|
@@ -8399,7 +8468,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8399
8468
|
* @response `400` `ProblemDetails` Bad Request
|
|
8400
8469
|
* @response `404` `ProblemDetails` Not Found
|
|
8401
8470
|
*/
|
|
8402
|
-
completeBorrowerApplication: (loanId: string, borrowerId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8471
|
+
completeBorrowerApplication: (loanId: string, borrowerId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8403
8472
|
/**
|
|
8404
8473
|
* No description
|
|
8405
8474
|
*
|
|
@@ -8410,7 +8479,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8410
8479
|
* @secure
|
|
8411
8480
|
* @response `200` `Loan` Success
|
|
8412
8481
|
*/
|
|
8413
|
-
importLoanFromLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any>>;
|
|
8482
|
+
importLoanFromLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any, {}>>;
|
|
8414
8483
|
/**
|
|
8415
8484
|
* No description
|
|
8416
8485
|
*
|
|
@@ -8422,7 +8491,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8422
8491
|
* @response `202` `void` Accepted
|
|
8423
8492
|
* @response `404` `ProblemDetails` Not Found
|
|
8424
8493
|
*/
|
|
8425
|
-
syncLoanToLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8494
|
+
syncLoanToLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8426
8495
|
/**
|
|
8427
8496
|
* No description
|
|
8428
8497
|
*
|
|
@@ -8435,7 +8504,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8435
8504
|
* @response `400` `ProblemDetails` Bad Request
|
|
8436
8505
|
* @response `404` `ProblemDetails` Not Found
|
|
8437
8506
|
*/
|
|
8438
|
-
triggerAso: (loanId: string, data: TriggerAsoRequest, params?: RequestParams) => Promise<AxiosResponse<AutomatedService, any>>;
|
|
8507
|
+
triggerAso: (loanId: string, data: TriggerAsoRequest, params?: RequestParams) => Promise<AxiosResponse<AutomatedService, any, {}>>;
|
|
8439
8508
|
/**
|
|
8440
8509
|
* No description
|
|
8441
8510
|
*
|
|
@@ -8454,7 +8523,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8454
8523
|
pageNumber?: number;
|
|
8455
8524
|
sortBy?: string;
|
|
8456
8525
|
sortDirection?: string;
|
|
8457
|
-
}, params?: RequestParams) => Promise<AxiosResponse<TaskCommentPaginated, any>>;
|
|
8526
|
+
}, params?: RequestParams) => Promise<AxiosResponse<TaskCommentPaginated, any, {}>>;
|
|
8458
8527
|
/**
|
|
8459
8528
|
* No description
|
|
8460
8529
|
*
|
|
@@ -8466,7 +8535,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8466
8535
|
* @response `200` `TaskComment` Success
|
|
8467
8536
|
* @response `404` `ProblemDetails` Not Found
|
|
8468
8537
|
*/
|
|
8469
|
-
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, {}>>;
|
|
8470
8539
|
/**
|
|
8471
8540
|
* No description
|
|
8472
8541
|
*
|
|
@@ -8478,7 +8547,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8478
8547
|
* @response `201` `TaskComment` Created
|
|
8479
8548
|
* @response `404` `ProblemDetails` Not Found
|
|
8480
8549
|
*/
|
|
8481
|
-
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, {}>>;
|
|
8482
8551
|
/**
|
|
8483
8552
|
* No description
|
|
8484
8553
|
*
|
|
@@ -8490,7 +8559,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8490
8559
|
* @response `200` `TaskComment` Success
|
|
8491
8560
|
* @response `404` `ProblemDetails` Not Found
|
|
8492
8561
|
*/
|
|
8493
|
-
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, {}>>;
|
|
8494
8563
|
/**
|
|
8495
8564
|
* No description
|
|
8496
8565
|
*
|
|
@@ -8502,7 +8571,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8502
8571
|
* @response `204` `void` No Content
|
|
8503
8572
|
* @response `404` `ProblemDetails` Not Found
|
|
8504
8573
|
*/
|
|
8505
|
-
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, {}>>;
|
|
8506
8575
|
/**
|
|
8507
8576
|
* No description
|
|
8508
8577
|
*
|
|
@@ -8520,7 +8589,9 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8520
8589
|
/** @format binary */
|
|
8521
8590
|
file?: File;
|
|
8522
8591
|
bucket?: string;
|
|
8523
|
-
|
|
8592
|
+
/** @format uuid */
|
|
8593
|
+
folderID?: string;
|
|
8594
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
|
|
8524
8595
|
/**
|
|
8525
8596
|
* No description
|
|
8526
8597
|
*
|
|
@@ -8532,7 +8603,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8532
8603
|
* @response `204` `UserLoanTask` No Content
|
|
8533
8604
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8534
8605
|
*/
|
|
8535
|
-
createLoanTaskDocumentBucket: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
|
|
8606
|
+
createLoanTaskDocumentBucket: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
|
|
8536
8607
|
/**
|
|
8537
8608
|
* No description
|
|
8538
8609
|
*
|
|
@@ -8544,7 +8615,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8544
8615
|
* @response `204` `void` No Content
|
|
8545
8616
|
* @response `404` `ProblemDetails` Not Found
|
|
8546
8617
|
*/
|
|
8547
|
-
sendOutstandingLoanTaskNotification: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8618
|
+
sendOutstandingLoanTaskNotification: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8548
8619
|
/**
|
|
8549
8620
|
* No description
|
|
8550
8621
|
*
|
|
@@ -8557,7 +8628,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8557
8628
|
* @response `400` `ProblemDetails` Bad Request
|
|
8558
8629
|
* @response `404` `ProblemDetails` Not Found
|
|
8559
8630
|
*/
|
|
8560
|
-
sendLoanTaskReminder: (loanId: string, data: SendLoanTaskReminderRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8631
|
+
sendLoanTaskReminder: (loanId: string, data: SendLoanTaskReminderRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8561
8632
|
/**
|
|
8562
8633
|
* @description Search tasks across all loans
|
|
8563
8634
|
*
|
|
@@ -8575,7 +8646,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8575
8646
|
pageNumber?: number;
|
|
8576
8647
|
sortBy?: string;
|
|
8577
8648
|
sortDirection?: string;
|
|
8578
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UserLoanTaskPaginated, any>>;
|
|
8649
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UserLoanTaskPaginated, any, {}>>;
|
|
8579
8650
|
/**
|
|
8580
8651
|
* @description Returns task counts grouped by status for loans accessible to the current user based on their role
|
|
8581
8652
|
*
|
|
@@ -8587,7 +8658,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8587
8658
|
* @response `200` `(LoanTaskStatusSummary)[]` Success
|
|
8588
8659
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8589
8660
|
*/
|
|
8590
|
-
searchLoanTasksSummary: (data: LoanTaskSearchRequest, params?: RequestParams) => Promise<AxiosResponse<LoanTaskStatusSummary[], any>>;
|
|
8661
|
+
searchLoanTasksSummary: (data: LoanTaskSearchRequest, params?: RequestParams) => Promise<AxiosResponse<LoanTaskStatusSummary[], any, {}>>;
|
|
8591
8662
|
/**
|
|
8592
8663
|
* No description
|
|
8593
8664
|
*
|
|
@@ -8599,7 +8670,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8599
8670
|
* @response `200` `(UserLoanTask)[]` Success
|
|
8600
8671
|
* @response `404` `ProblemDetails` Not Found
|
|
8601
8672
|
*/
|
|
8602
|
-
getLoanTasks: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any>>;
|
|
8673
|
+
getLoanTasks: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any, {}>>;
|
|
8603
8674
|
/**
|
|
8604
8675
|
* No description
|
|
8605
8676
|
*
|
|
@@ -8611,7 +8682,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8611
8682
|
* @response `200` `UserLoanTask` Success
|
|
8612
8683
|
* @response `404` `ProblemDetails` Not Found
|
|
8613
8684
|
*/
|
|
8614
|
-
getLoanTask: (id: string, loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
|
|
8685
|
+
getLoanTask: (id: string, loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
|
|
8615
8686
|
/**
|
|
8616
8687
|
* @description Get the difference between the current loan tasks and the tasks generated by business rules
|
|
8617
8688
|
*
|
|
@@ -8623,7 +8694,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8623
8694
|
* @response `200` `(UserLoanTask)[]` Success
|
|
8624
8695
|
* @response `404` `ProblemDetails` Not Found
|
|
8625
8696
|
*/
|
|
8626
|
-
getLoanTaskDifference: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any>>;
|
|
8697
|
+
getLoanTaskDifference: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any, {}>>;
|
|
8627
8698
|
/**
|
|
8628
8699
|
* No description
|
|
8629
8700
|
*
|
|
@@ -8635,7 +8706,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8635
8706
|
* @response `201` `UserLoanTask` Created
|
|
8636
8707
|
* @response `404` `ProblemDetails` Not Found
|
|
8637
8708
|
*/
|
|
8638
|
-
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, {}>>;
|
|
8639
8710
|
/**
|
|
8640
8711
|
* No description
|
|
8641
8712
|
*
|
|
@@ -8647,7 +8718,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8647
8718
|
* @response `201` `(UserLoanTask)[]` Created
|
|
8648
8719
|
* @response `404` `ProblemDetails` Not Found
|
|
8649
8720
|
*/
|
|
8650
|
-
importLoanTask: (loanId: string, data: ImportUserLoanTaskRequest[], params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any>>;
|
|
8721
|
+
importLoanTask: (loanId: string, data: ImportUserLoanTaskRequest[], params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any, {}>>;
|
|
8651
8722
|
/**
|
|
8652
8723
|
* No description
|
|
8653
8724
|
*
|
|
@@ -8659,7 +8730,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8659
8730
|
* @response `200` `UserLoanTask` Success
|
|
8660
8731
|
* @response `404` `ProblemDetails` Not Found
|
|
8661
8732
|
*/
|
|
8662
|
-
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, {}>>;
|
|
8663
8734
|
/**
|
|
8664
8735
|
* No description
|
|
8665
8736
|
*
|
|
@@ -8671,7 +8742,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8671
8742
|
* @response `204` `void` No Content
|
|
8672
8743
|
* @response `404` `ProblemDetails` Not Found
|
|
8673
8744
|
*/
|
|
8674
|
-
deleteLoanTask: (loanId: string, userLoanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8745
|
+
deleteLoanTask: (loanId: string, userLoanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8675
8746
|
/**
|
|
8676
8747
|
* No description
|
|
8677
8748
|
*
|
|
@@ -8684,7 +8755,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8684
8755
|
* @response `404` `ProblemDetails` Not Found
|
|
8685
8756
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8686
8757
|
*/
|
|
8687
|
-
createLoanTaskVerification: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
|
|
8758
|
+
createLoanTaskVerification: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
|
|
8688
8759
|
/**
|
|
8689
8760
|
* No description
|
|
8690
8761
|
*
|
|
@@ -8696,7 +8767,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8696
8767
|
* @response `200` `(UserLoanConsent)[]` Success
|
|
8697
8768
|
* @response `403` `ProblemDetails` Forbidden
|
|
8698
8769
|
*/
|
|
8699
|
-
getLoanUserConsents: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanConsent[], any>>;
|
|
8770
|
+
getLoanUserConsents: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanConsent[], any, {}>>;
|
|
8700
8771
|
/**
|
|
8701
8772
|
* No description
|
|
8702
8773
|
*
|
|
@@ -8707,7 +8778,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8707
8778
|
* @secure
|
|
8708
8779
|
* @response `200` `LoanUser` Success
|
|
8709
8780
|
*/
|
|
8710
|
-
getLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any>>;
|
|
8781
|
+
getLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any, {}>>;
|
|
8711
8782
|
/**
|
|
8712
8783
|
* No description
|
|
8713
8784
|
*
|
|
@@ -8718,7 +8789,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8718
8789
|
* @secure
|
|
8719
8790
|
* @response `201` `LoanUser` Created
|
|
8720
8791
|
*/
|
|
8721
|
-
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, {}>>;
|
|
8722
8793
|
/**
|
|
8723
8794
|
* No description
|
|
8724
8795
|
*
|
|
@@ -8729,7 +8800,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8729
8800
|
* @secure
|
|
8730
8801
|
* @response `204` `LoanUser` No Content
|
|
8731
8802
|
*/
|
|
8732
|
-
removeLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any>>;
|
|
8803
|
+
removeLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any, {}>>;
|
|
8733
8804
|
/**
|
|
8734
8805
|
* No description
|
|
8735
8806
|
*
|
|
@@ -8740,7 +8811,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8740
8811
|
* @secure
|
|
8741
8812
|
* @response `204` `void` No Content
|
|
8742
8813
|
*/
|
|
8743
|
-
sendLoanUserInviteReminderNotification: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8814
|
+
sendLoanUserInviteReminderNotification: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8744
8815
|
/**
|
|
8745
8816
|
* No description
|
|
8746
8817
|
*
|
|
@@ -8758,7 +8829,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8758
8829
|
pageNumber?: number;
|
|
8759
8830
|
sortBy?: string;
|
|
8760
8831
|
sortDirection?: string;
|
|
8761
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LosOperationTrackingPaginated, any>>;
|
|
8832
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LosOperationTrackingPaginated, any, {}>>;
|
|
8762
8833
|
/**
|
|
8763
8834
|
* No description
|
|
8764
8835
|
*
|
|
@@ -8769,7 +8840,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8769
8840
|
* @secure
|
|
8770
8841
|
* @response `200` `(MilestoneConfiguration)[]` Success
|
|
8771
8842
|
*/
|
|
8772
|
-
getMilestones: (params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration[], any>>;
|
|
8843
|
+
getMilestones: (params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration[], any, {}>>;
|
|
8773
8844
|
/**
|
|
8774
8845
|
* No description
|
|
8775
8846
|
*
|
|
@@ -8781,7 +8852,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8781
8852
|
* @response `201` `MilestoneConfiguration` Created
|
|
8782
8853
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8783
8854
|
*/
|
|
8784
|
-
createMilestone: (data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any>>;
|
|
8855
|
+
createMilestone: (data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any, {}>>;
|
|
8785
8856
|
/**
|
|
8786
8857
|
* No description
|
|
8787
8858
|
*
|
|
@@ -8793,7 +8864,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8793
8864
|
* @response `200` `MilestoneConfiguration` Success
|
|
8794
8865
|
* @response `404` `Error` Not Found
|
|
8795
8866
|
*/
|
|
8796
|
-
getMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any>>;
|
|
8867
|
+
getMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any, {}>>;
|
|
8797
8868
|
/**
|
|
8798
8869
|
* No description
|
|
8799
8870
|
*
|
|
@@ -8806,7 +8877,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8806
8877
|
* @response `404` `Error` Not Found
|
|
8807
8878
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8808
8879
|
*/
|
|
8809
|
-
replaceMilestone: (id: string, data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any>>;
|
|
8880
|
+
replaceMilestone: (id: string, data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any, {}>>;
|
|
8810
8881
|
/**
|
|
8811
8882
|
* No description
|
|
8812
8883
|
*
|
|
@@ -8818,7 +8889,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8818
8889
|
* @response `204` `void` No Content
|
|
8819
8890
|
* @response `404` `Error` Not Found
|
|
8820
8891
|
*/
|
|
8821
|
-
deleteMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8892
|
+
deleteMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8822
8893
|
/**
|
|
8823
8894
|
* No description
|
|
8824
8895
|
*
|
|
@@ -8830,7 +8901,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8830
8901
|
* @response `200` `MonthlyPaymentCalculator` Success
|
|
8831
8902
|
* @response `422` `ProblemDetails` Client Error
|
|
8832
8903
|
*/
|
|
8833
|
-
calculateMortgageMonthlyPayment: (data: MonthlyPaymentCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<MonthlyPaymentCalculator, any>>;
|
|
8904
|
+
calculateMortgageMonthlyPayment: (data: MonthlyPaymentCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<MonthlyPaymentCalculator, any, {}>>;
|
|
8834
8905
|
/**
|
|
8835
8906
|
* No description
|
|
8836
8907
|
*
|
|
@@ -8842,7 +8913,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8842
8913
|
* @response `200` `AffordabilityCalculator` Success
|
|
8843
8914
|
* @response `422` `ProblemDetails` Client Error
|
|
8844
8915
|
*/
|
|
8845
|
-
calculateMortgageAffordability: (data: AffordabilityCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<AffordabilityCalculator, any>>;
|
|
8916
|
+
calculateMortgageAffordability: (data: AffordabilityCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<AffordabilityCalculator, any, {}>>;
|
|
8846
8917
|
/**
|
|
8847
8918
|
* No description
|
|
8848
8919
|
*
|
|
@@ -8854,7 +8925,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8854
8925
|
* @response `200` `LoanComparisonCalculator` Success
|
|
8855
8926
|
* @response `422` `ProblemDetails` Client Error
|
|
8856
8927
|
*/
|
|
8857
|
-
calculateMortgageLoanComparison: (data: LoanComparisonCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<LoanComparisonCalculator, any>>;
|
|
8928
|
+
calculateMortgageLoanComparison: (data: LoanComparisonCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<LoanComparisonCalculator, any, {}>>;
|
|
8858
8929
|
/**
|
|
8859
8930
|
* No description
|
|
8860
8931
|
*
|
|
@@ -8866,7 +8937,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8866
8937
|
* @response `200` `RefinanceCalculator` Success
|
|
8867
8938
|
* @response `422` `ProblemDetails` Client Error
|
|
8868
8939
|
*/
|
|
8869
|
-
calculateMortgageRefinance: (data: RefinanceCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<RefinanceCalculator, any>>;
|
|
8940
|
+
calculateMortgageRefinance: (data: RefinanceCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<RefinanceCalculator, any, {}>>;
|
|
8870
8941
|
/**
|
|
8871
8942
|
* No description
|
|
8872
8943
|
*
|
|
@@ -8878,7 +8949,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8878
8949
|
* @response `200` `void` Success
|
|
8879
8950
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8880
8951
|
*/
|
|
8881
|
-
sendNotificationForLoan: (data: SendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8952
|
+
sendNotificationForLoan: (data: SendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8882
8953
|
/**
|
|
8883
8954
|
* No description
|
|
8884
8955
|
*
|
|
@@ -8890,7 +8961,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8890
8961
|
* @response `200` `void` Success
|
|
8891
8962
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8892
8963
|
*/
|
|
8893
|
-
sendTestNotificationForLoan: (data: TestSendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8964
|
+
sendTestNotificationForLoan: (data: TestSendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8894
8965
|
/**
|
|
8895
8966
|
* No description
|
|
8896
8967
|
*
|
|
@@ -8903,7 +8974,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8903
8974
|
*/
|
|
8904
8975
|
getNotificationTemplates: (query?: {
|
|
8905
8976
|
showAll?: boolean;
|
|
8906
|
-
}, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateBase[], any>>;
|
|
8977
|
+
}, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateBase[], any, {}>>;
|
|
8907
8978
|
/**
|
|
8908
8979
|
* No description
|
|
8909
8980
|
*
|
|
@@ -8915,7 +8986,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8915
8986
|
* @response `201` `NotificationTemplate` Created
|
|
8916
8987
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8917
8988
|
*/
|
|
8918
|
-
createNotificationTemplate: (data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
|
|
8989
|
+
createNotificationTemplate: (data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any, {}>>;
|
|
8919
8990
|
/**
|
|
8920
8991
|
* No description
|
|
8921
8992
|
*
|
|
@@ -8933,7 +9004,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8933
9004
|
pageNumber?: number;
|
|
8934
9005
|
sortBy?: string;
|
|
8935
9006
|
sortDirection?: string;
|
|
8936
|
-
}, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateBasePaginated, any>>;
|
|
9007
|
+
}, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateBasePaginated, any, {}>>;
|
|
8937
9008
|
/**
|
|
8938
9009
|
* No description
|
|
8939
9010
|
*
|
|
@@ -8944,7 +9015,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8944
9015
|
* @secure
|
|
8945
9016
|
* @response `200` `NotificationTemplate` Success
|
|
8946
9017
|
*/
|
|
8947
|
-
getNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
|
|
9018
|
+
getNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any, {}>>;
|
|
8948
9019
|
/**
|
|
8949
9020
|
* No description
|
|
8950
9021
|
*
|
|
@@ -8956,7 +9027,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8956
9027
|
* @response `200` `NotificationTemplate` Success
|
|
8957
9028
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8958
9029
|
*/
|
|
8959
|
-
replaceNotificationTemplate: (id: string, data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
|
|
9030
|
+
replaceNotificationTemplate: (id: string, data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any, {}>>;
|
|
8960
9031
|
/**
|
|
8961
9032
|
* No description
|
|
8962
9033
|
*
|
|
@@ -8967,7 +9038,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8967
9038
|
* @secure
|
|
8968
9039
|
* @response `204` `void` No Content
|
|
8969
9040
|
*/
|
|
8970
|
-
deleteNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9041
|
+
deleteNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8971
9042
|
/**
|
|
8972
9043
|
* No description
|
|
8973
9044
|
*
|
|
@@ -8978,7 +9049,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8978
9049
|
* @secure
|
|
8979
9050
|
* @response `200` `NotificationTemplate` Success
|
|
8980
9051
|
*/
|
|
8981
|
-
restoreNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
|
|
9052
|
+
restoreNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any, {}>>;
|
|
8982
9053
|
/**
|
|
8983
9054
|
* No description
|
|
8984
9055
|
*
|
|
@@ -8989,7 +9060,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8989
9060
|
* @secure
|
|
8990
9061
|
* @response `200` `(NotificationTemplateVersion)[]` Success
|
|
8991
9062
|
*/
|
|
8992
|
-
getNotificationTemplateVersions: (notificationId: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion[], any>>;
|
|
9063
|
+
getNotificationTemplateVersions: (notificationId: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion[], any, {}>>;
|
|
8993
9064
|
/**
|
|
8994
9065
|
* No description
|
|
8995
9066
|
*
|
|
@@ -9000,7 +9071,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9000
9071
|
* @secure
|
|
9001
9072
|
* @response `200` `NotificationTemplateVersion` Success
|
|
9002
9073
|
*/
|
|
9003
|
-
createNotificationTemplateVersion: (notificationId: string, data: NotificationTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
|
|
9074
|
+
createNotificationTemplateVersion: (notificationId: string, data: NotificationTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any, {}>>;
|
|
9004
9075
|
/**
|
|
9005
9076
|
* No description
|
|
9006
9077
|
*
|
|
@@ -9011,7 +9082,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9011
9082
|
* @secure
|
|
9012
9083
|
* @response `200` `NotificationTemplateVersion` Success
|
|
9013
9084
|
*/
|
|
9014
|
-
getNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
|
|
9085
|
+
getNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any, {}>>;
|
|
9015
9086
|
/**
|
|
9016
9087
|
* No description
|
|
9017
9088
|
*
|
|
@@ -9022,7 +9093,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9022
9093
|
* @secure
|
|
9023
9094
|
* @response `200` `NotificationTemplateVersion` Success
|
|
9024
9095
|
*/
|
|
9025
|
-
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, {}>>;
|
|
9026
9097
|
/**
|
|
9027
9098
|
* No description
|
|
9028
9099
|
*
|
|
@@ -9033,7 +9104,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9033
9104
|
* @secure
|
|
9034
9105
|
* @response `200` `NotificationTemplateVersion` Success
|
|
9035
9106
|
*/
|
|
9036
|
-
deleteNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
|
|
9107
|
+
deleteNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any, {}>>;
|
|
9037
9108
|
/**
|
|
9038
9109
|
* No description
|
|
9039
9110
|
*
|
|
@@ -9047,14 +9118,14 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9047
9118
|
getPartners: (query?: {
|
|
9048
9119
|
showAll?: boolean;
|
|
9049
9120
|
/** @default "Realtor" */
|
|
9050
|
-
role?:
|
|
9121
|
+
role?: GetPartnersParamsRoleEnum;
|
|
9051
9122
|
/** @format int32 */
|
|
9052
9123
|
pageSize?: number;
|
|
9053
9124
|
/** @format int32 */
|
|
9054
9125
|
pageNumber?: number;
|
|
9055
9126
|
sortBy?: string;
|
|
9056
9127
|
sortDirection?: string;
|
|
9057
|
-
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any>>;
|
|
9128
|
+
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any, {}>>;
|
|
9058
9129
|
/**
|
|
9059
9130
|
* No description
|
|
9060
9131
|
*
|
|
@@ -9072,7 +9143,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9072
9143
|
pageNumber?: number;
|
|
9073
9144
|
sortBy?: string;
|
|
9074
9145
|
sortDirection?: string;
|
|
9075
|
-
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any>>;
|
|
9146
|
+
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any, {}>>;
|
|
9076
9147
|
/**
|
|
9077
9148
|
* No description
|
|
9078
9149
|
*
|
|
@@ -9083,7 +9154,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9083
9154
|
* @secure
|
|
9084
9155
|
* @response `200` `BranchUser` Success
|
|
9085
9156
|
*/
|
|
9086
|
-
getPartner: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any>>;
|
|
9157
|
+
getPartner: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any, {}>>;
|
|
9087
9158
|
/**
|
|
9088
9159
|
* No description
|
|
9089
9160
|
*
|
|
@@ -9095,7 +9166,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9095
9166
|
* @response `200` `SiteConfiguration` Success
|
|
9096
9167
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9097
9168
|
*/
|
|
9098
|
-
createPartnerSiteConfiguration: (realtorId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
9169
|
+
createPartnerSiteConfiguration: (realtorId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
9099
9170
|
/**
|
|
9100
9171
|
* No description
|
|
9101
9172
|
*
|
|
@@ -9106,7 +9177,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9106
9177
|
* @secure
|
|
9107
9178
|
* @response `200` `SiteConfigurationWithInherited` Success
|
|
9108
9179
|
*/
|
|
9109
|
-
getPartnerSiteConfiguration: (realtorId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
|
|
9180
|
+
getPartnerSiteConfiguration: (realtorId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any, {}>>;
|
|
9110
9181
|
/**
|
|
9111
9182
|
* No description
|
|
9112
9183
|
*
|
|
@@ -9120,7 +9191,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9120
9191
|
*/
|
|
9121
9192
|
replacePartnerSiteConfiguration: (realtorId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
|
|
9122
9193
|
applyToChildren?: boolean;
|
|
9123
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
9194
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
9124
9195
|
/**
|
|
9125
9196
|
* No description
|
|
9126
9197
|
*
|
|
@@ -9131,7 +9202,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9131
9202
|
* @secure
|
|
9132
9203
|
* @response `200` `SiteConfiguration` Success
|
|
9133
9204
|
*/
|
|
9134
|
-
getSiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
9205
|
+
getSiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
9135
9206
|
/**
|
|
9136
9207
|
* No description
|
|
9137
9208
|
*
|
|
@@ -9144,7 +9215,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9144
9215
|
* @response `200` `SiteConfigurationByUrl` Success
|
|
9145
9216
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9146
9217
|
*/
|
|
9147
|
-
searchSiteConfigurationByUrl: (data: GetSiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationByUrl, any>>;
|
|
9218
|
+
searchSiteConfigurationByUrl: (data: GetSiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationByUrl, any, {}>>;
|
|
9148
9219
|
/**
|
|
9149
9220
|
* No description
|
|
9150
9221
|
*
|
|
@@ -9158,7 +9229,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9158
9229
|
*/
|
|
9159
9230
|
getSiteConfigurationByUrl: (query?: {
|
|
9160
9231
|
url?: string;
|
|
9161
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationByUrl, any>>;
|
|
9232
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationByUrl, any, {}>>;
|
|
9162
9233
|
/**
|
|
9163
9234
|
* No description
|
|
9164
9235
|
*
|
|
@@ -9171,7 +9242,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9171
9242
|
* @response `200` `SiteConfiguration` Success
|
|
9172
9243
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9173
9244
|
*/
|
|
9174
|
-
searchSiteConfigurationByLoanOfficerUser: (data: GetSiteConfigurationByLOUserIDRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
9245
|
+
searchSiteConfigurationByLoanOfficerUser: (data: GetSiteConfigurationByLOUserIDRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
9175
9246
|
/**
|
|
9176
9247
|
* No description
|
|
9177
9248
|
*
|
|
@@ -9183,7 +9254,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9183
9254
|
* @response `200` `SiteConfiguration` Success
|
|
9184
9255
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9185
9256
|
*/
|
|
9186
|
-
getSiteConfigurationByLoanOfficerUser: (loUserId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
9257
|
+
getSiteConfigurationByLoanOfficerUser: (loUserId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
9187
9258
|
/**
|
|
9188
9259
|
* No description
|
|
9189
9260
|
*
|
|
@@ -9202,7 +9273,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9202
9273
|
pageNumber?: number;
|
|
9203
9274
|
sortBy?: string;
|
|
9204
9275
|
sortDirection?: string;
|
|
9205
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationSummaryPaginated, any>>;
|
|
9276
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationSummaryPaginated, any, {}>>;
|
|
9206
9277
|
/**
|
|
9207
9278
|
* No description
|
|
9208
9279
|
*
|
|
@@ -9213,7 +9284,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9213
9284
|
* @secure
|
|
9214
9285
|
* @response `200` `(AdminAccessGetForms)[]` Success
|
|
9215
9286
|
*/
|
|
9216
|
-
getFormsBySiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms[], any>>;
|
|
9287
|
+
getFormsBySiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms[], any, {}>>;
|
|
9217
9288
|
/**
|
|
9218
9289
|
* No description
|
|
9219
9290
|
*
|
|
@@ -9225,7 +9296,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9225
9296
|
* @response `200` `File` Success
|
|
9226
9297
|
* @response `404` `ProblemDetails` Not Found
|
|
9227
9298
|
*/
|
|
9228
|
-
getSamlMetadata: (sSoIntegration:
|
|
9299
|
+
getSamlMetadata: (sSoIntegration: GetSamlMetadataParamsEnum, ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
|
|
9229
9300
|
/**
|
|
9230
9301
|
* No description
|
|
9231
9302
|
*
|
|
@@ -9236,7 +9307,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9236
9307
|
* @secure
|
|
9237
9308
|
* @response `200` `File` Success
|
|
9238
9309
|
*/
|
|
9239
|
-
createOrReplaceSamlMetadata: (sSoIntegration:
|
|
9310
|
+
createOrReplaceSamlMetadata: (sSoIntegration: CreateOrReplaceSamlMetadataParamsEnum, ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
|
|
9240
9311
|
/**
|
|
9241
9312
|
* No description
|
|
9242
9313
|
*
|
|
@@ -9247,7 +9318,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9247
9318
|
* @secure
|
|
9248
9319
|
* @response `200` `(SiteConfigurationForm)[]` Success
|
|
9249
9320
|
*/
|
|
9250
|
-
getWorkflowSiteConfigurations: (workflowId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm[], any>>;
|
|
9321
|
+
getWorkflowSiteConfigurations: (workflowId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm[], any, {}>>;
|
|
9251
9322
|
/**
|
|
9252
9323
|
* No description
|
|
9253
9324
|
*
|
|
@@ -9259,7 +9330,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9259
9330
|
* @response `200` `SiteConfigurationForm` Success
|
|
9260
9331
|
* @response `404` `ProblemDetails` Not Found
|
|
9261
9332
|
*/
|
|
9262
|
-
getWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any>>;
|
|
9333
|
+
getWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any, {}>>;
|
|
9263
9334
|
/**
|
|
9264
9335
|
* No description
|
|
9265
9336
|
*
|
|
@@ -9272,7 +9343,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9272
9343
|
* @response `409` `ProblemDetails` Conflict
|
|
9273
9344
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9274
9345
|
*/
|
|
9275
|
-
createWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any>>;
|
|
9346
|
+
createWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any, {}>>;
|
|
9276
9347
|
/**
|
|
9277
9348
|
* No description
|
|
9278
9349
|
*
|
|
@@ -9283,7 +9354,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9283
9354
|
* @secure
|
|
9284
9355
|
* @response `204` `void` No Content
|
|
9285
9356
|
*/
|
|
9286
|
-
deleteWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9357
|
+
deleteWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9287
9358
|
/**
|
|
9288
9359
|
* No description
|
|
9289
9360
|
*
|
|
@@ -9294,7 +9365,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9294
9365
|
* @secure
|
|
9295
9366
|
* @response `200` `GetForm` Success
|
|
9296
9367
|
*/
|
|
9297
|
-
getFormBySiteConfigurationSlug: (data: GetSiteFormRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any>>;
|
|
9368
|
+
getFormBySiteConfigurationSlug: (data: GetSiteFormRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any, {}>>;
|
|
9298
9369
|
/**
|
|
9299
9370
|
* No description
|
|
9300
9371
|
*
|
|
@@ -9308,7 +9379,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9308
9379
|
getSurveysByUsers: (query?: {
|
|
9309
9380
|
/** @format int32 */
|
|
9310
9381
|
limit?: number;
|
|
9311
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SocialSurveyRecord[], any>>;
|
|
9382
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SocialSurveyRecord[], any, {}>>;
|
|
9312
9383
|
/**
|
|
9313
9384
|
* No description
|
|
9314
9385
|
*
|
|
@@ -9320,7 +9391,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9320
9391
|
* @response `200` `(SocialSurveyRecord)[]` Success
|
|
9321
9392
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9322
9393
|
*/
|
|
9323
|
-
getSurveysByUser: (data: SurveyEmailRequest, params?: RequestParams) => Promise<AxiosResponse<SocialSurveyRecord[], any>>;
|
|
9394
|
+
getSurveysByUser: (data: SurveyEmailRequest, params?: RequestParams) => Promise<AxiosResponse<SocialSurveyRecord[], any, {}>>;
|
|
9324
9395
|
/**
|
|
9325
9396
|
* No description
|
|
9326
9397
|
*
|
|
@@ -9339,7 +9410,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9339
9410
|
pageNumber?: number;
|
|
9340
9411
|
sortBy?: string;
|
|
9341
9412
|
sortDirection?: string;
|
|
9342
|
-
}, params?: RequestParams) => Promise<AxiosResponse<Task, any>>;
|
|
9413
|
+
}, params?: RequestParams) => Promise<AxiosResponse<Task, any, {}>>;
|
|
9343
9414
|
/**
|
|
9344
9415
|
* No description
|
|
9345
9416
|
*
|
|
@@ -9350,7 +9421,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9350
9421
|
* @secure
|
|
9351
9422
|
* @response `201` `Task` Created
|
|
9352
9423
|
*/
|
|
9353
|
-
createTask: (data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<Task, any>>;
|
|
9424
|
+
createTask: (data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<Task, any, {}>>;
|
|
9354
9425
|
/**
|
|
9355
9426
|
* No description
|
|
9356
9427
|
*
|
|
@@ -9362,7 +9433,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9362
9433
|
* @response `200` `Task` Success
|
|
9363
9434
|
* @response `404` `ProblemDetails` Not Found
|
|
9364
9435
|
*/
|
|
9365
|
-
getTask: (id: string, params?: RequestParams) => Promise<AxiosResponse<Task, any>>;
|
|
9436
|
+
getTask: (id: string, params?: RequestParams) => Promise<AxiosResponse<Task, any, {}>>;
|
|
9366
9437
|
/**
|
|
9367
9438
|
* No description
|
|
9368
9439
|
*
|
|
@@ -9374,7 +9445,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9374
9445
|
* @response `200` `void` Success
|
|
9375
9446
|
* @response `404` `ProblemDetails` Not Found
|
|
9376
9447
|
*/
|
|
9377
|
-
replaceTask: (id: string, data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9448
|
+
replaceTask: (id: string, data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9378
9449
|
/**
|
|
9379
9450
|
* No description
|
|
9380
9451
|
*
|
|
@@ -9386,7 +9457,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9386
9457
|
* @response `204` `void` No Content
|
|
9387
9458
|
* @response `404` `ProblemDetails` Not Found
|
|
9388
9459
|
*/
|
|
9389
|
-
deleteTask: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9460
|
+
deleteTask: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9390
9461
|
/**
|
|
9391
9462
|
* No description
|
|
9392
9463
|
*
|
|
@@ -9404,7 +9475,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9404
9475
|
pageNumber?: number;
|
|
9405
9476
|
sortBy?: string;
|
|
9406
9477
|
sortDirection?: string;
|
|
9407
|
-
}, params?: RequestParams) => Promise<AxiosResponse<TaskPaginated, any>>;
|
|
9478
|
+
}, params?: RequestParams) => Promise<AxiosResponse<TaskPaginated, any, {}>>;
|
|
9408
9479
|
/**
|
|
9409
9480
|
* No description
|
|
9410
9481
|
*
|
|
@@ -9414,7 +9485,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9414
9485
|
* @secure
|
|
9415
9486
|
* @response `200` `void` Success
|
|
9416
9487
|
*/
|
|
9417
|
-
integrationsLosLoansCreate: (data: LosLoanCreationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9488
|
+
integrationsLosLoansCreate: (data: LosLoanCreationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9418
9489
|
/**
|
|
9419
9490
|
* No description
|
|
9420
9491
|
*
|
|
@@ -9431,7 +9502,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9431
9502
|
pageNumber: number;
|
|
9432
9503
|
sortBy?: string;
|
|
9433
9504
|
sortDirection?: string;
|
|
9434
|
-
}, data: EncompassLogSearchCriteria, params?: RequestParams) => Promise<AxiosResponse<EncompassRequestLogPaginated, any>>;
|
|
9505
|
+
}, data: EncompassLogSearchCriteria, params?: RequestParams) => Promise<AxiosResponse<EncompassRequestLogPaginated, any, {}>>;
|
|
9435
9506
|
/**
|
|
9436
9507
|
* No description
|
|
9437
9508
|
*
|
|
@@ -9442,7 +9513,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9442
9513
|
* @response `200` `EncompassCredentialsDetail` Success
|
|
9443
9514
|
* @response `204` `void` No Content
|
|
9444
9515
|
*/
|
|
9445
|
-
getEncompassCredentials: (params?: RequestParams) => Promise<AxiosResponse<EncompassCredentialsDetail, any>>;
|
|
9516
|
+
getEncompassCredentials: (params?: RequestParams) => Promise<AxiosResponse<EncompassCredentialsDetail, any, {}>>;
|
|
9446
9517
|
/**
|
|
9447
9518
|
* No description
|
|
9448
9519
|
*
|
|
@@ -9452,7 +9523,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9452
9523
|
* @secure
|
|
9453
9524
|
* @response `201` `LosCredentials` Created
|
|
9454
9525
|
*/
|
|
9455
|
-
createEncompassCredentials: (data: EncompassCredentialsRequest, params?: RequestParams) => Promise<AxiosResponse<LosCredentials, any>>;
|
|
9526
|
+
createEncompassCredentials: (data: EncompassCredentialsRequest, params?: RequestParams) => Promise<AxiosResponse<LosCredentials, any, {}>>;
|
|
9456
9527
|
/**
|
|
9457
9528
|
* No description
|
|
9458
9529
|
*
|
|
@@ -9462,7 +9533,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9462
9533
|
* @secure
|
|
9463
9534
|
* @response `200` `EncompassCredentialsDetail` Success
|
|
9464
9535
|
*/
|
|
9465
|
-
updateEncompassCredentials: (data: EncompassCredentialsRequest, params?: RequestParams) => Promise<AxiosResponse<EncompassCredentialsDetail, any>>;
|
|
9536
|
+
updateEncompassCredentials: (data: EncompassCredentialsRequest, params?: RequestParams) => Promise<AxiosResponse<EncompassCredentialsDetail, any, {}>>;
|
|
9466
9537
|
/**
|
|
9467
9538
|
* No description
|
|
9468
9539
|
*
|
|
@@ -9472,7 +9543,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9472
9543
|
* @secure
|
|
9473
9544
|
* @response `200` `(LosWebhook)[]` Success
|
|
9474
9545
|
*/
|
|
9475
|
-
getEncompassWebhooks: (params?: RequestParams) => Promise<AxiosResponse<LosWebhook[], any>>;
|
|
9546
|
+
getEncompassWebhooks: (params?: RequestParams) => Promise<AxiosResponse<LosWebhook[], any, {}>>;
|
|
9476
9547
|
/**
|
|
9477
9548
|
* No description
|
|
9478
9549
|
*
|
|
@@ -9482,7 +9553,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9482
9553
|
* @secure
|
|
9483
9554
|
* @response `201` `LosWebhook` Created
|
|
9484
9555
|
*/
|
|
9485
|
-
createEncompassWebhook: (data: CreateWebhookRequest, params?: RequestParams) => Promise<AxiosResponse<LosWebhook, any>>;
|
|
9556
|
+
createEncompassWebhook: (data: CreateWebhookRequest, params?: RequestParams) => Promise<AxiosResponse<LosWebhook, any, {}>>;
|
|
9486
9557
|
/**
|
|
9487
9558
|
* No description
|
|
9488
9559
|
*
|
|
@@ -9492,7 +9563,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9492
9563
|
* @secure
|
|
9493
9564
|
* @response `204` `void` No Content
|
|
9494
9565
|
*/
|
|
9495
|
-
deleteEncompassWebhook: (webhookId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9566
|
+
deleteEncompassWebhook: (webhookId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9496
9567
|
/**
|
|
9497
9568
|
* No description
|
|
9498
9569
|
*
|
|
@@ -9509,7 +9580,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9509
9580
|
pageNumber: number;
|
|
9510
9581
|
sortBy?: string;
|
|
9511
9582
|
sortDirection?: string;
|
|
9512
|
-
}, data: LosSyncSearchCriteria, params?: RequestParams) => Promise<AxiosResponse<LosSyncPaginated, any>>;
|
|
9583
|
+
}, data: LosSyncSearchCriteria, params?: RequestParams) => Promise<AxiosResponse<LosSyncPaginated, any, {}>>;
|
|
9513
9584
|
/**
|
|
9514
9585
|
* No description
|
|
9515
9586
|
*
|
|
@@ -9521,7 +9592,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9521
9592
|
* @response `200` `UsageReport` Success
|
|
9522
9593
|
* @response `404` `ProblemDetails` Not Found
|
|
9523
9594
|
*/
|
|
9524
|
-
getUsageReportById: (id: string, params?: RequestParams) => Promise<AxiosResponse<UsageReport, any>>;
|
|
9595
|
+
getUsageReportById: (id: string, params?: RequestParams) => Promise<AxiosResponse<UsageReport, any, {}>>;
|
|
9525
9596
|
/**
|
|
9526
9597
|
* No description
|
|
9527
9598
|
*
|
|
@@ -9538,7 +9609,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9538
9609
|
month?: number;
|
|
9539
9610
|
/** @format int32 */
|
|
9540
9611
|
year?: number;
|
|
9541
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UsageReport[], any>>;
|
|
9612
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UsageReport[], any, {}>>;
|
|
9542
9613
|
/**
|
|
9543
9614
|
* No description
|
|
9544
9615
|
*
|
|
@@ -9555,7 +9626,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9555
9626
|
month?: number;
|
|
9556
9627
|
/** @format int32 */
|
|
9557
9628
|
year?: number;
|
|
9558
|
-
}, params?: RequestParams) => Promise<AxiosResponse<any, any>>;
|
|
9629
|
+
}, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
9559
9630
|
/**
|
|
9560
9631
|
* No description
|
|
9561
9632
|
*
|
|
@@ -9566,7 +9637,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9566
9637
|
* @secure
|
|
9567
9638
|
* @response `200` `UsageReportDashboard` Success
|
|
9568
9639
|
*/
|
|
9569
|
-
getUsageReportDashboard: (params?: RequestParams) => Promise<AxiosResponse<UsageReportDashboard, any>>;
|
|
9640
|
+
getUsageReportDashboard: (params?: RequestParams) => Promise<AxiosResponse<UsageReportDashboard, any, {}>>;
|
|
9570
9641
|
/**
|
|
9571
9642
|
* No description
|
|
9572
9643
|
*
|
|
@@ -9578,7 +9649,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9578
9649
|
* @response `200` `UsageReportExecution` Success
|
|
9579
9650
|
* @response `404` `ProblemDetails` Not Found
|
|
9580
9651
|
*/
|
|
9581
|
-
getUsageReportExecution: (correlationId: string, params?: RequestParams) => Promise<AxiosResponse<UsageReportExecution, any>>;
|
|
9652
|
+
getUsageReportExecution: (correlationId: string, params?: RequestParams) => Promise<AxiosResponse<UsageReportExecution, any, {}>>;
|
|
9582
9653
|
/**
|
|
9583
9654
|
* No description
|
|
9584
9655
|
*
|
|
@@ -9595,7 +9666,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9595
9666
|
month?: number;
|
|
9596
9667
|
/** @format int32 */
|
|
9597
9668
|
year?: number;
|
|
9598
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UsageReportExecution[], any>>;
|
|
9669
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UsageReportExecution[], any, {}>>;
|
|
9599
9670
|
/**
|
|
9600
9671
|
* No description
|
|
9601
9672
|
*
|
|
@@ -9607,7 +9678,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9607
9678
|
* @response `201` `UserDevice` Created
|
|
9608
9679
|
* @response `400` `ProblemDetails` Bad Request
|
|
9609
9680
|
*/
|
|
9610
|
-
createUserDevice: (data: CreateUserDeviceRequest, params?: RequestParams) => Promise<AxiosResponse<UserDevice, any>>;
|
|
9681
|
+
createUserDevice: (data: CreateUserDeviceRequest, params?: RequestParams) => Promise<AxiosResponse<UserDevice, any, {}>>;
|
|
9611
9682
|
/**
|
|
9612
9683
|
* No description
|
|
9613
9684
|
*
|
|
@@ -9619,7 +9690,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9619
9690
|
* @response `204` `void` No Content
|
|
9620
9691
|
* @response `404` `ProblemDetails` Not Found
|
|
9621
9692
|
*/
|
|
9622
|
-
deleteUserDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9693
|
+
deleteUserDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9623
9694
|
/**
|
|
9624
9695
|
* No description
|
|
9625
9696
|
*
|
|
@@ -9637,7 +9708,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9637
9708
|
pageNumber?: number;
|
|
9638
9709
|
sortBy?: string;
|
|
9639
9710
|
sortDirection?: string;
|
|
9640
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UserDraftPaginated, any>>;
|
|
9711
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UserDraftPaginated, any, {}>>;
|
|
9641
9712
|
/**
|
|
9642
9713
|
* No description
|
|
9643
9714
|
*
|
|
@@ -9648,7 +9719,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9648
9719
|
* @secure
|
|
9649
9720
|
* @response `200` `UserDraft` Success
|
|
9650
9721
|
*/
|
|
9651
|
-
getDraftUser: (draftId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<UserDraft, any>>;
|
|
9722
|
+
getDraftUser: (draftId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<UserDraft, any, {}>>;
|
|
9652
9723
|
/**
|
|
9653
9724
|
* No description
|
|
9654
9725
|
*
|
|
@@ -9659,7 +9730,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9659
9730
|
* @secure
|
|
9660
9731
|
* @response `200` `UserDraft` Success
|
|
9661
9732
|
*/
|
|
9662
|
-
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, {}>>;
|
|
9663
9734
|
/**
|
|
9664
9735
|
* No description
|
|
9665
9736
|
*
|
|
@@ -9670,7 +9741,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9670
9741
|
* @secure
|
|
9671
9742
|
* @response `204` `void` No Content
|
|
9672
9743
|
*/
|
|
9673
|
-
deleteDraftUser: (draftId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9744
|
+
deleteDraftUser: (draftId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9674
9745
|
/**
|
|
9675
9746
|
* No description
|
|
9676
9747
|
*
|
|
@@ -9681,7 +9752,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9681
9752
|
* @secure
|
|
9682
9753
|
* @response `200` `(UserGroupAccessScope)[]` Success
|
|
9683
9754
|
*/
|
|
9684
|
-
getUserGroupAccessScopes: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope[], any>>;
|
|
9755
|
+
getUserGroupAccessScopes: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope[], any, {}>>;
|
|
9685
9756
|
/**
|
|
9686
9757
|
* No description
|
|
9687
9758
|
*
|
|
@@ -9692,7 +9763,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9692
9763
|
* @secure
|
|
9693
9764
|
* @response `200` `UserGroupAccessScope` Success
|
|
9694
9765
|
*/
|
|
9695
|
-
createUserGroupAccessScope: (groupId: string, data: CreateAccessScopeRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope, any>>;
|
|
9766
|
+
createUserGroupAccessScope: (groupId: string, data: CreateAccessScopeRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope, any, {}>>;
|
|
9696
9767
|
/**
|
|
9697
9768
|
* No description
|
|
9698
9769
|
*
|
|
@@ -9703,7 +9774,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9703
9774
|
* @secure
|
|
9704
9775
|
* @response `204` `void` No Content
|
|
9705
9776
|
*/
|
|
9706
|
-
deleteUserGroupAccessScope: (groupId: string, scopeId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9777
|
+
deleteUserGroupAccessScope: (groupId: string, scopeId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9707
9778
|
/**
|
|
9708
9779
|
* No description
|
|
9709
9780
|
*
|
|
@@ -9714,7 +9785,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9714
9785
|
* @secure
|
|
9715
9786
|
* @response `200` `(UserGroupMember)[]` Success
|
|
9716
9787
|
*/
|
|
9717
|
-
getUserGroupMembers: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupMember[], any>>;
|
|
9788
|
+
getUserGroupMembers: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupMember[], any, {}>>;
|
|
9718
9789
|
/**
|
|
9719
9790
|
* No description
|
|
9720
9791
|
*
|
|
@@ -9728,7 +9799,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9728
9799
|
createUserGroupMember: (groupId: string, data: CreateGroupMemberRequest, query?: {
|
|
9729
9800
|
/** @format uuid */
|
|
9730
9801
|
userId?: string;
|
|
9731
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UserGroupMember, any>>;
|
|
9802
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UserGroupMember, any, {}>>;
|
|
9732
9803
|
/**
|
|
9733
9804
|
* No description
|
|
9734
9805
|
*
|
|
@@ -9739,7 +9810,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9739
9810
|
* @secure
|
|
9740
9811
|
* @response `204` `void` No Content
|
|
9741
9812
|
*/
|
|
9742
|
-
deleteUserGroupMember: (groupId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9813
|
+
deleteUserGroupMember: (groupId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9743
9814
|
/**
|
|
9744
9815
|
* No description
|
|
9745
9816
|
*
|
|
@@ -9758,7 +9829,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9758
9829
|
pageNumber?: number;
|
|
9759
9830
|
sortBy?: string;
|
|
9760
9831
|
sortDirection?: string;
|
|
9761
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UserGroupPaginated, any>>;
|
|
9832
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UserGroupPaginated, any, {}>>;
|
|
9762
9833
|
/**
|
|
9763
9834
|
* No description
|
|
9764
9835
|
*
|
|
@@ -9769,7 +9840,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9769
9840
|
* @secure
|
|
9770
9841
|
* @response `200` `UserGroup` Success
|
|
9771
9842
|
*/
|
|
9772
|
-
getUserGroup: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any>>;
|
|
9843
|
+
getUserGroup: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any, {}>>;
|
|
9773
9844
|
/**
|
|
9774
9845
|
* No description
|
|
9775
9846
|
*
|
|
@@ -9780,7 +9851,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9780
9851
|
* @secure
|
|
9781
9852
|
* @response `200` `UserGroup` Success
|
|
9782
9853
|
*/
|
|
9783
|
-
updateUserGroup: (groupId: string, data: UpdateUserGroupRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any>>;
|
|
9854
|
+
updateUserGroup: (groupId: string, data: UpdateUserGroupRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any, {}>>;
|
|
9784
9855
|
/**
|
|
9785
9856
|
* No description
|
|
9786
9857
|
*
|
|
@@ -9791,7 +9862,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9791
9862
|
* @secure
|
|
9792
9863
|
* @response `204` `void` No Content
|
|
9793
9864
|
*/
|
|
9794
|
-
deleteUserGroup: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9865
|
+
deleteUserGroup: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9795
9866
|
/**
|
|
9796
9867
|
* No description
|
|
9797
9868
|
*
|
|
@@ -9802,7 +9873,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9802
9873
|
* @secure
|
|
9803
9874
|
* @response `201` `UserGroup` Created
|
|
9804
9875
|
*/
|
|
9805
|
-
createUserGroup: (data: CreateUserGroupRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any>>;
|
|
9876
|
+
createUserGroup: (data: CreateUserGroupRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any, {}>>;
|
|
9806
9877
|
/**
|
|
9807
9878
|
* No description
|
|
9808
9879
|
*
|
|
@@ -9815,7 +9886,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9815
9886
|
* @response `404` `Error` Not Found
|
|
9816
9887
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9817
9888
|
*/
|
|
9818
|
-
requestImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9889
|
+
requestImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9819
9890
|
/**
|
|
9820
9891
|
* No description
|
|
9821
9892
|
*
|
|
@@ -9828,7 +9899,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9828
9899
|
* @response `404` `Error` Not Found
|
|
9829
9900
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9830
9901
|
*/
|
|
9831
|
-
allowImpersonation: (data: AllowImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9902
|
+
allowImpersonation: (data: AllowImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9832
9903
|
/**
|
|
9833
9904
|
* No description
|
|
9834
9905
|
*
|
|
@@ -9841,7 +9912,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9841
9912
|
* @response `404` `Error` Not Found
|
|
9842
9913
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9843
9914
|
*/
|
|
9844
|
-
allowImpersonationWithGuid: (allowToken: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9915
|
+
allowImpersonationWithGuid: (allowToken: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9845
9916
|
/**
|
|
9846
9917
|
* No description
|
|
9847
9918
|
*
|
|
@@ -9853,7 +9924,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9853
9924
|
* @response `204` `void` No Content
|
|
9854
9925
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9855
9926
|
*/
|
|
9856
|
-
beginImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9927
|
+
beginImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9857
9928
|
/**
|
|
9858
9929
|
* No description
|
|
9859
9930
|
*
|
|
@@ -9865,7 +9936,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9865
9936
|
* @response `204` `void` No Content
|
|
9866
9937
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9867
9938
|
*/
|
|
9868
|
-
stopImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9939
|
+
stopImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9869
9940
|
/**
|
|
9870
9941
|
* No description
|
|
9871
9942
|
*
|
|
@@ -9878,7 +9949,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9878
9949
|
* @response `404` `Error` Not Found
|
|
9879
9950
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9880
9951
|
*/
|
|
9881
|
-
forceImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9952
|
+
forceImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9882
9953
|
/**
|
|
9883
9954
|
* No description
|
|
9884
9955
|
*
|
|
@@ -9890,7 +9961,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9890
9961
|
* @response `204` `void` No Content
|
|
9891
9962
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9892
9963
|
*/
|
|
9893
|
-
extendImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9964
|
+
extendImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9894
9965
|
/**
|
|
9895
9966
|
* No description
|
|
9896
9967
|
*
|
|
@@ -9902,7 +9973,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9902
9973
|
* @response `204` `void` No Content
|
|
9903
9974
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9904
9975
|
*/
|
|
9905
|
-
inviteUser: (data: CreateInviteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9976
|
+
inviteUser: (data: CreateInviteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9906
9977
|
/**
|
|
9907
9978
|
* No description
|
|
9908
9979
|
*
|
|
@@ -9915,7 +9986,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9915
9986
|
* @response `401` `UnprocessableEntity` Unauthorized
|
|
9916
9987
|
* @response `404` `UnprocessableEntity` Not Found
|
|
9917
9988
|
*/
|
|
9918
|
-
resendInviteNotification: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9989
|
+
resendInviteNotification: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9919
9990
|
/**
|
|
9920
9991
|
* No description
|
|
9921
9992
|
*
|
|
@@ -9927,7 +9998,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9927
9998
|
* @response `200` `Invite` Success
|
|
9928
9999
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9929
10000
|
*/
|
|
9930
|
-
verifyUserInvite: (token: string, params?: RequestParams) => Promise<AxiosResponse<Invite, any>>;
|
|
10001
|
+
verifyUserInvite: (token: string, params?: RequestParams) => Promise<AxiosResponse<Invite, any, {}>>;
|
|
9931
10002
|
/**
|
|
9932
10003
|
* No description
|
|
9933
10004
|
*
|
|
@@ -9938,7 +10009,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9938
10009
|
* @secure
|
|
9939
10010
|
* @response `200` `(UserRelation)[]` Success
|
|
9940
10011
|
*/
|
|
9941
|
-
getUserRelations: (userId: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation[], any>>;
|
|
10012
|
+
getUserRelations: (userId: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation[], any, {}>>;
|
|
9942
10013
|
/**
|
|
9943
10014
|
* No description
|
|
9944
10015
|
*
|
|
@@ -9949,7 +10020,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9949
10020
|
* @secure
|
|
9950
10021
|
* @response `204` `void` No Content
|
|
9951
10022
|
*/
|
|
9952
|
-
createUserRelation: (userId: string, data: CreateUserRelationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
10023
|
+
createUserRelation: (userId: string, data: CreateUserRelationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9953
10024
|
/**
|
|
9954
10025
|
* No description
|
|
9955
10026
|
*
|
|
@@ -9960,7 +10031,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9960
10031
|
* @secure
|
|
9961
10032
|
* @response `200` `UserRelation` Success
|
|
9962
10033
|
*/
|
|
9963
|
-
getUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation, any>>;
|
|
10034
|
+
getUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation, any, {}>>;
|
|
9964
10035
|
/**
|
|
9965
10036
|
* No description
|
|
9966
10037
|
*
|
|
@@ -9971,7 +10042,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9971
10042
|
* @secure
|
|
9972
10043
|
* @response `204` `void` No Content
|
|
9973
10044
|
*/
|
|
9974
|
-
deleteUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
10045
|
+
deleteUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9975
10046
|
/**
|
|
9976
10047
|
* No description
|
|
9977
10048
|
*
|
|
@@ -9989,7 +10060,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9989
10060
|
pageNumber?: number;
|
|
9990
10061
|
sortBy?: string;
|
|
9991
10062
|
sortDirection?: string;
|
|
9992
|
-
}, params?: RequestParams) => Promise<AxiosResponse<User[], any>>;
|
|
10063
|
+
}, params?: RequestParams) => Promise<AxiosResponse<User[], any, {}>>;
|
|
9993
10064
|
/**
|
|
9994
10065
|
* No description
|
|
9995
10066
|
*
|
|
@@ -10001,7 +10072,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10001
10072
|
* @response `200` `DetailedUser` Success
|
|
10002
10073
|
* @response `422` `UnprocessableEntity` Client Error
|
|
10003
10074
|
*/
|
|
10004
|
-
createUser: (data: CreateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
|
|
10075
|
+
createUser: (data: CreateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any, {}>>;
|
|
10005
10076
|
/**
|
|
10006
10077
|
* No description
|
|
10007
10078
|
*
|
|
@@ -10019,7 +10090,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10019
10090
|
pageNumber?: number;
|
|
10020
10091
|
sortBy?: string;
|
|
10021
10092
|
sortDirection?: string;
|
|
10022
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UserPaginated, any>>;
|
|
10093
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UserPaginated, any, {}>>;
|
|
10023
10094
|
/**
|
|
10024
10095
|
* No description
|
|
10025
10096
|
*
|
|
@@ -10030,7 +10101,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10030
10101
|
* @secure
|
|
10031
10102
|
* @response `200` `AdminAccessUser` Success
|
|
10032
10103
|
*/
|
|
10033
|
-
getUserByEmail: (data: GetUserByEmailRequest, params?: RequestParams) => Promise<AxiosResponse<AdminAccessUser, any>>;
|
|
10104
|
+
getUserByEmail: (data: GetUserByEmailRequest, params?: RequestParams) => Promise<AxiosResponse<AdminAccessUser, any, {}>>;
|
|
10034
10105
|
/**
|
|
10035
10106
|
* No description
|
|
10036
10107
|
*
|
|
@@ -10042,7 +10113,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10042
10113
|
* @response `200` `User` Success
|
|
10043
10114
|
* @response `422` `UnprocessableEntity` Client Error
|
|
10044
10115
|
*/
|
|
10045
|
-
signUp: (data: RegisterUserRequest, params?: RequestParams) => Promise<AxiosResponse<User, any>>;
|
|
10116
|
+
signUp: (data: RegisterUserRequest, params?: RequestParams) => Promise<AxiosResponse<User, any, {}>>;
|
|
10046
10117
|
/**
|
|
10047
10118
|
* No description
|
|
10048
10119
|
*
|
|
@@ -10054,7 +10125,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10054
10125
|
* @response `200` `DetailedUser` Success
|
|
10055
10126
|
* @response `422` `UnprocessableEntity` Client Error
|
|
10056
10127
|
*/
|
|
10057
|
-
replaceUser: (id: string, data: UpdateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
|
|
10128
|
+
replaceUser: (id: string, data: UpdateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any, {}>>;
|
|
10058
10129
|
/**
|
|
10059
10130
|
* No description
|
|
10060
10131
|
*
|
|
@@ -10068,7 +10139,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10068
10139
|
deleteUser: (id: string, query?: {
|
|
10069
10140
|
/** @default false */
|
|
10070
10141
|
permanent?: boolean;
|
|
10071
|
-
}, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
10142
|
+
}, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
10072
10143
|
/**
|
|
10073
10144
|
* No description
|
|
10074
10145
|
*
|
|
@@ -10079,7 +10150,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10079
10150
|
* @secure
|
|
10080
10151
|
* @response `204` `void` No Content
|
|
10081
10152
|
*/
|
|
10082
|
-
restoreUser: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
10153
|
+
restoreUser: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
10083
10154
|
/**
|
|
10084
10155
|
* No description
|
|
10085
10156
|
*
|
|
@@ -10091,7 +10162,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10091
10162
|
* @response `204` `void` No Content
|
|
10092
10163
|
* @response `422` `UnprocessableEntity` Client Error
|
|
10093
10164
|
*/
|
|
10094
|
-
changePassword: (data: ChangePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
10165
|
+
changePassword: (data: ChangePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
10095
10166
|
/**
|
|
10096
10167
|
* No description
|
|
10097
10168
|
*
|
|
@@ -10103,7 +10174,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10103
10174
|
* @response `204` `void` No Content
|
|
10104
10175
|
* @response `422` `UnprocessableEntity` Client Error
|
|
10105
10176
|
*/
|
|
10106
|
-
verifyPassword: (data: VerifyPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
10177
|
+
verifyPassword: (data: VerifyPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
10107
10178
|
/**
|
|
10108
10179
|
* No description
|
|
10109
10180
|
*
|
|
@@ -10115,7 +10186,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10115
10186
|
* @response `204` `void` No Content
|
|
10116
10187
|
* @response `422` `UnprocessableEntity` Client Error
|
|
10117
10188
|
*/
|
|
10118
|
-
overridePassword: (id: string, data: OverridePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
10189
|
+
overridePassword: (id: string, data: OverridePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
10119
10190
|
/**
|
|
10120
10191
|
* No description
|
|
10121
10192
|
*
|
|
@@ -10127,7 +10198,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10127
10198
|
* @response `204` `void` No Content
|
|
10128
10199
|
* @response `422` `UnprocessableEntity` Client Error
|
|
10129
10200
|
*/
|
|
10130
|
-
forgotPassword: (data: SendForgotPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
10201
|
+
forgotPassword: (data: SendForgotPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
10131
10202
|
/**
|
|
10132
10203
|
* No description
|
|
10133
10204
|
*
|
|
@@ -10139,7 +10210,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10139
10210
|
* @response `204` `void` No Content
|
|
10140
10211
|
* @response `422` `UnprocessableEntity` Client Error
|
|
10141
10212
|
*/
|
|
10142
|
-
sendMobilePhoneVerificationCode: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
10213
|
+
sendMobilePhoneVerificationCode: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
10143
10214
|
/**
|
|
10144
10215
|
* No description
|
|
10145
10216
|
*
|
|
@@ -10151,7 +10222,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10151
10222
|
* @response `204` `void` No Content
|
|
10152
10223
|
* @response `422` `UnprocessableEntity` Client Error
|
|
10153
10224
|
*/
|
|
10154
|
-
verifyUserMobilePhone: (data: UserMobilePhoneVerificationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
10225
|
+
verifyUserMobilePhone: (data: UserMobilePhoneVerificationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
10155
10226
|
/**
|
|
10156
10227
|
* No description
|
|
10157
10228
|
*
|
|
@@ -10163,7 +10234,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10163
10234
|
* @response `200` `ImpersonatedDetailedUser` Success
|
|
10164
10235
|
* @response `401` `ProblemDetails` Unauthorized
|
|
10165
10236
|
*/
|
|
10166
|
-
getMe: (params?: RequestParams) => Promise<AxiosResponse<ImpersonatedDetailedUser, any>>;
|
|
10237
|
+
getMe: (params?: RequestParams) => Promise<AxiosResponse<ImpersonatedDetailedUser, any, {}>>;
|
|
10167
10238
|
/**
|
|
10168
10239
|
* No description
|
|
10169
10240
|
*
|
|
@@ -10174,7 +10245,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10174
10245
|
* @secure
|
|
10175
10246
|
* @response `200` `DetailedUser` Success
|
|
10176
10247
|
*/
|
|
10177
|
-
replaceMe: (data: UpdateMeRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
|
|
10248
|
+
replaceMe: (data: UpdateMeRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any, {}>>;
|
|
10178
10249
|
/**
|
|
10179
10250
|
* @description Update the phone number If changed will send a verification code to the new number
|
|
10180
10251
|
*
|
|
@@ -10185,7 +10256,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10185
10256
|
* @secure
|
|
10186
10257
|
* @response `204` `DetailedUser` No Content
|
|
10187
10258
|
*/
|
|
10188
|
-
updateMyPhone: (data: UpdateMobilePhoneRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
|
|
10259
|
+
updateMyPhone: (data: UpdateMobilePhoneRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any, {}>>;
|
|
10189
10260
|
/**
|
|
10190
10261
|
* No description
|
|
10191
10262
|
*
|
|
@@ -10196,7 +10267,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10196
10267
|
* @secure
|
|
10197
10268
|
* @response `200` `(UserRelationship)[]` Success
|
|
10198
10269
|
*/
|
|
10199
|
-
getMyRelationships: (params?: RequestParams) => Promise<AxiosResponse<UserRelationship[], any>>;
|
|
10270
|
+
getMyRelationships: (params?: RequestParams) => Promise<AxiosResponse<UserRelationship[], any, {}>>;
|
|
10200
10271
|
/**
|
|
10201
10272
|
* No description
|
|
10202
10273
|
*
|
|
@@ -10207,7 +10278,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10207
10278
|
* @secure
|
|
10208
10279
|
* @response `200` `(UserRelationshipProspect)[]` Success
|
|
10209
10280
|
*/
|
|
10210
|
-
getMyRelationshipProspects: (params?: RequestParams) => Promise<AxiosResponse<UserRelationshipProspect[], any>>;
|
|
10281
|
+
getMyRelationshipProspects: (params?: RequestParams) => Promise<AxiosResponse<UserRelationshipProspect[], any, {}>>;
|
|
10211
10282
|
/**
|
|
10212
10283
|
* No description
|
|
10213
10284
|
*
|
|
@@ -10218,7 +10289,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10218
10289
|
* @secure
|
|
10219
10290
|
* @response `204` `void` No Content
|
|
10220
10291
|
*/
|
|
10221
|
-
deleteRelationshipProspect: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
10292
|
+
deleteRelationshipProspect: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
10222
10293
|
/**
|
|
10223
10294
|
* No description
|
|
10224
10295
|
*
|
|
@@ -10229,7 +10300,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10229
10300
|
* @secure
|
|
10230
10301
|
* @response `204` `void` No Content
|
|
10231
10302
|
*/
|
|
10232
|
-
deleteMe: (data: UserAccountDeletionRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
10303
|
+
deleteMe: (data: UserAccountDeletionRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
10233
10304
|
/**
|
|
10234
10305
|
* No description
|
|
10235
10306
|
*
|
|
@@ -10240,7 +10311,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10240
10311
|
* @secure
|
|
10241
10312
|
* @response `200` `GetForm` Success
|
|
10242
10313
|
*/
|
|
10243
|
-
getWorkflow: (data: GetWorkflowRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any>>;
|
|
10314
|
+
getWorkflow: (data: GetWorkflowRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any, {}>>;
|
|
10244
10315
|
};
|
|
10245
10316
|
sso: {
|
|
10246
10317
|
/**
|
|
@@ -10252,6 +10323,6 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10252
10323
|
* @secure
|
|
10253
10324
|
* @response `200` `void` Success
|
|
10254
10325
|
*/
|
|
10255
|
-
logoutList: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
10326
|
+
logoutList: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
10256
10327
|
};
|
|
10257
10328
|
}
|