@matech/thebigpos-sdk 2.37.9-rc1 → 2.38.0
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 +12 -0
- package/.husky/pre-commit +2 -2
- package/LICENSE +21 -21
- package/README.md +73 -73
- package/dist/index.d.ts +403 -408
- package/dist/index.js +35 -23
- package/dist/index.js.map +1 -1
- package/docs/sdk_generation.md +149 -149
- package/package.json +43 -39
- package/scripts/apply-json-patch-content-type.js +56 -56
- package/src/index.ts +312 -404
- package/tsconfig.json +27 -27
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export type VersionStatusType = "Draft" | "Published";
|
|
1
2
|
export type UserRole = "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
|
|
2
3
|
export type SiteConfigurationType = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
3
4
|
export type SSOIntegrationType = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
@@ -105,7 +106,7 @@ export interface AccountBilling {
|
|
|
105
106
|
contractedRate: number;
|
|
106
107
|
}
|
|
107
108
|
export interface AccountBillingRequest {
|
|
108
|
-
billingType:
|
|
109
|
+
billingType: "ClosedLoan" | "LoanOfficer";
|
|
109
110
|
/**
|
|
110
111
|
* @format double
|
|
111
112
|
* @min 0
|
|
@@ -421,7 +422,7 @@ export interface AuditLogEntry {
|
|
|
421
422
|
/** @format uuid */
|
|
422
423
|
id: string;
|
|
423
424
|
entityType: string;
|
|
424
|
-
changeType:
|
|
425
|
+
changeType: "Created" | "Modified" | "SoftDeleted" | "HardDeleted" | "Restored";
|
|
425
426
|
/** @format uuid */
|
|
426
427
|
entityId: string;
|
|
427
428
|
performedBy?: AuditLogUser | null;
|
|
@@ -685,7 +686,7 @@ export interface CorporateSearchCriteria {
|
|
|
685
686
|
isActive?: boolean | null;
|
|
686
687
|
}
|
|
687
688
|
export interface CreateAccessScopeRequest {
|
|
688
|
-
scopeType:
|
|
689
|
+
scopeType: "User" | "Branch";
|
|
689
690
|
/** @format uuid */
|
|
690
691
|
userId?: string | null;
|
|
691
692
|
/** @format uuid */
|
|
@@ -708,7 +709,7 @@ export interface CreateAccountRequest {
|
|
|
708
709
|
*/
|
|
709
710
|
nlmsid: number;
|
|
710
711
|
settings: AccountSettingsRequest;
|
|
711
|
-
environment:
|
|
712
|
+
environment: "Development" | "Staging" | "UAT" | "Production";
|
|
712
713
|
losIntegration: LOSIntegration;
|
|
713
714
|
billingSettings: AccountBillingRequest;
|
|
714
715
|
}
|
|
@@ -738,7 +739,7 @@ export interface CreateDocumentTemplateRequest {
|
|
|
738
739
|
export interface CreateGroupMemberRequest {
|
|
739
740
|
/** @format uuid */
|
|
740
741
|
userId: string;
|
|
741
|
-
loanRole:
|
|
742
|
+
loanRole: "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
|
|
742
743
|
}
|
|
743
744
|
export interface CreateInviteRequest {
|
|
744
745
|
/** @minLength 1 */
|
|
@@ -749,7 +750,7 @@ export interface CreateInviteRequest {
|
|
|
749
750
|
emailAddress: string;
|
|
750
751
|
phoneNumber?: string | null;
|
|
751
752
|
/** @deprecated */
|
|
752
|
-
relationship:
|
|
753
|
+
relationship: "NotApplicable" | "Spouse" | "NonSpouse";
|
|
753
754
|
loanID: string;
|
|
754
755
|
route?: string | null;
|
|
755
756
|
/** @format uuid */
|
|
@@ -771,7 +772,7 @@ export interface CreateLoanImportRequest {
|
|
|
771
772
|
* @minLength 1
|
|
772
773
|
*/
|
|
773
774
|
startDate: string;
|
|
774
|
-
importMode:
|
|
775
|
+
importMode: "All" | "NewOnly" | "UpdateOnly";
|
|
775
776
|
}
|
|
776
777
|
export interface CreateSession {
|
|
777
778
|
sessionId: string;
|
|
@@ -789,7 +790,7 @@ export interface CreateUserDeviceRequest {
|
|
|
789
790
|
token: string;
|
|
790
791
|
}
|
|
791
792
|
export interface CreateUserDraft {
|
|
792
|
-
loanRole:
|
|
793
|
+
loanRole: "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
|
|
793
794
|
}
|
|
794
795
|
export interface CreateUserGroupRequest {
|
|
795
796
|
/**
|
|
@@ -1083,7 +1084,7 @@ export interface Draft {
|
|
|
1083
1084
|
siteConfiguration: SiteConfigurationReduced;
|
|
1084
1085
|
/** @format uuid */
|
|
1085
1086
|
loanID?: string | null;
|
|
1086
|
-
type:
|
|
1087
|
+
type: "NewLoan" | "EditLoan";
|
|
1087
1088
|
isCoBorrower: boolean;
|
|
1088
1089
|
}
|
|
1089
1090
|
export interface DraftContent {
|
|
@@ -1101,7 +1102,7 @@ export interface DraftContent {
|
|
|
1101
1102
|
siteConfiguration: SiteConfigurationReduced;
|
|
1102
1103
|
/** @format uuid */
|
|
1103
1104
|
loanID?: string | null;
|
|
1104
|
-
type:
|
|
1105
|
+
type: "NewLoan" | "EditLoan";
|
|
1105
1106
|
isCoBorrower: boolean;
|
|
1106
1107
|
applicationPayload: any;
|
|
1107
1108
|
}
|
|
@@ -1231,8 +1232,8 @@ export interface EncompassRequestLog {
|
|
|
1231
1232
|
losId?: string | null;
|
|
1232
1233
|
/** @format uuid */
|
|
1233
1234
|
accountId: string;
|
|
1234
|
-
operationType:
|
|
1235
|
-
outcome:
|
|
1235
|
+
operationType: "FieldUpdate" | "EConsentUpdate" | "DocumentSync" | "MilestoneUpdate" | "DocumentAttachment" | "General" | "FieldReader";
|
|
1236
|
+
outcome: "Success" | "Failure" | "PartialSuccess";
|
|
1236
1237
|
message: string;
|
|
1237
1238
|
endpoint?: string | null;
|
|
1238
1239
|
httpMethod?: string | null;
|
|
@@ -1449,7 +1450,7 @@ export interface FusionFieldDisplay {
|
|
|
1449
1450
|
fieldValue: string;
|
|
1450
1451
|
}
|
|
1451
1452
|
export interface FusionReportFilter {
|
|
1452
|
-
filterType:
|
|
1453
|
+
filterType: "DateGreaterThanOrEqualTo" | "DateGreaterThan" | "DateLessThan" | "DateLessThanOrEqualTo" | "DateEquals" | "DateDoesntEqual" | "DateNonEmpty" | "DateEmpty" | "StringContains" | "StringEquals" | "StringNotEmpty" | "StringNotEquals" | "StringNotContains";
|
|
1453
1454
|
targetField: string;
|
|
1454
1455
|
targetValue: string;
|
|
1455
1456
|
}
|
|
@@ -1563,7 +1564,7 @@ export interface GuidPatchOperation {
|
|
|
1563
1564
|
from?: string | null;
|
|
1564
1565
|
}
|
|
1565
1566
|
export interface IPAddress {
|
|
1566
|
-
addressFamily:
|
|
1567
|
+
addressFamily: "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";
|
|
1567
1568
|
/** @format int64 */
|
|
1568
1569
|
scopeId: number;
|
|
1569
1570
|
isIPv6Multicast: boolean;
|
|
@@ -1870,7 +1871,7 @@ export interface LoanBorrower {
|
|
|
1870
1871
|
citizenship?: LoanCitizenship | null;
|
|
1871
1872
|
maritalStatus?: LoanMaritalStatus | null;
|
|
1872
1873
|
languagePreference?: LoanLanguagePreference | null;
|
|
1873
|
-
applicationStatus:
|
|
1874
|
+
applicationStatus: "Draft" | "Complete";
|
|
1874
1875
|
/** @format int32 */
|
|
1875
1876
|
numberOfDependents?: number | null;
|
|
1876
1877
|
isPrimaryBorrower: boolean;
|
|
@@ -2727,7 +2728,7 @@ export interface LoanContact {
|
|
|
2727
2728
|
email?: string | null;
|
|
2728
2729
|
phone?: string | null;
|
|
2729
2730
|
companyName?: string | null;
|
|
2730
|
-
role:
|
|
2731
|
+
role: "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
|
|
2731
2732
|
}
|
|
2732
2733
|
export interface LoanContactList {
|
|
2733
2734
|
email: string;
|
|
@@ -2852,13 +2853,13 @@ export interface LoanImport {
|
|
|
2852
2853
|
/** @format int32 */
|
|
2853
2854
|
importedCount: number;
|
|
2854
2855
|
statusMessage?: string | null;
|
|
2855
|
-
status:
|
|
2856
|
-
importMode:
|
|
2856
|
+
status: "WaitingProcess" | "InProgress" | "Completed" | "Failed" | "Cancelled";
|
|
2857
|
+
importMode: "All" | "NewOnly" | "UpdateOnly";
|
|
2857
2858
|
/** @format date-time */
|
|
2858
2859
|
createdAt?: string | null;
|
|
2859
2860
|
}
|
|
2860
2861
|
export interface LoanImportLog {
|
|
2861
|
-
level:
|
|
2862
|
+
level: "None" | "Info" | "Warning" | "Error";
|
|
2862
2863
|
message: string;
|
|
2863
2864
|
/** @format date-time */
|
|
2864
2865
|
createdAt: string;
|
|
@@ -2913,8 +2914,8 @@ export interface LoanListPaginated {
|
|
|
2913
2914
|
export interface LoanLog {
|
|
2914
2915
|
/** @format uuid */
|
|
2915
2916
|
id: string;
|
|
2916
|
-
level:
|
|
2917
|
-
type:
|
|
2917
|
+
level: "None" | "Info" | "Warning" | "Error";
|
|
2918
|
+
type: "Loan" | "Queue" | "POSFlagChanged" | "Verification" | "DocumentUploaded" | "LoanCreated" | "WorkflowSubmitted" | "UserInvitationSent" | "CoBorrowerAdded" | "TaskCompleted" | "LoanStatusChanged" | "EConsent" | "SensitiveDataPurge" | "ClosingDateUpdated";
|
|
2918
2919
|
message: string;
|
|
2919
2920
|
/** @format date-time */
|
|
2920
2921
|
createdAt: string;
|
|
@@ -2922,8 +2923,8 @@ export interface LoanLog {
|
|
|
2922
2923
|
export interface LoanLogDetail {
|
|
2923
2924
|
/** @format uuid */
|
|
2924
2925
|
id: string;
|
|
2925
|
-
level:
|
|
2926
|
-
type:
|
|
2926
|
+
level: "None" | "Info" | "Warning" | "Error";
|
|
2927
|
+
type: "Loan" | "Queue" | "POSFlagChanged" | "Verification" | "DocumentUploaded" | "LoanCreated" | "WorkflowSubmitted" | "UserInvitationSent" | "CoBorrowerAdded" | "TaskCompleted" | "LoanStatusChanged" | "EConsent" | "SensitiveDataPurge" | "ClosingDateUpdated";
|
|
2927
2928
|
message: string;
|
|
2928
2929
|
/** @format date-time */
|
|
2929
2930
|
createdAt: string;
|
|
@@ -3186,7 +3187,7 @@ export interface LoanUser {
|
|
|
3186
3187
|
email: string;
|
|
3187
3188
|
phone?: string | null;
|
|
3188
3189
|
role: string;
|
|
3189
|
-
loanRole:
|
|
3190
|
+
loanRole: "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
|
|
3190
3191
|
isUser: boolean;
|
|
3191
3192
|
/** @format date-time */
|
|
3192
3193
|
createdAt: string;
|
|
@@ -3341,6 +3342,7 @@ export interface NotificationTemplate {
|
|
|
3341
3342
|
/** @format uuid */
|
|
3342
3343
|
id: string;
|
|
3343
3344
|
htmlBody: string;
|
|
3345
|
+
key: string;
|
|
3344
3346
|
name: string;
|
|
3345
3347
|
plainBody: string;
|
|
3346
3348
|
description?: string | null;
|
|
@@ -3365,6 +3367,7 @@ export interface NotificationTemplateBase {
|
|
|
3365
3367
|
/** @format uuid */
|
|
3366
3368
|
id: string;
|
|
3367
3369
|
htmlBody: string;
|
|
3370
|
+
key: string;
|
|
3368
3371
|
name: string;
|
|
3369
3372
|
plainBody: string;
|
|
3370
3373
|
description?: string | null;
|
|
@@ -3378,10 +3381,18 @@ export interface NotificationTemplateBase {
|
|
|
3378
3381
|
status: string;
|
|
3379
3382
|
useDefaultHeaderAndFooter: boolean;
|
|
3380
3383
|
}
|
|
3384
|
+
export interface NotificationTemplateBasePaginated {
|
|
3385
|
+
rows: NotificationTemplateBase[];
|
|
3386
|
+
pagination: Pagination;
|
|
3387
|
+
/** @format int64 */
|
|
3388
|
+
count: number;
|
|
3389
|
+
}
|
|
3381
3390
|
export interface NotificationTemplateRequest {
|
|
3382
3391
|
/** @minLength 1 */
|
|
3383
3392
|
htmlBody: string;
|
|
3384
3393
|
/** @minLength 1 */
|
|
3394
|
+
key: string;
|
|
3395
|
+
/** @minLength 1 */
|
|
3385
3396
|
name: string;
|
|
3386
3397
|
plainBody: string;
|
|
3387
3398
|
description?: string | null;
|
|
@@ -3395,6 +3406,12 @@ export interface NotificationTemplateRequest {
|
|
|
3395
3406
|
status: string;
|
|
3396
3407
|
useDefaultHeaderAndFooter: boolean;
|
|
3397
3408
|
}
|
|
3409
|
+
export interface NotificationTemplateSearchCriteria {
|
|
3410
|
+
searchText?: string | null;
|
|
3411
|
+
key?: string | null;
|
|
3412
|
+
status?: VersionStatusType | null;
|
|
3413
|
+
includeDefaults: boolean;
|
|
3414
|
+
}
|
|
3398
3415
|
export interface NotificationTemplateVersion {
|
|
3399
3416
|
/** @format date-time */
|
|
3400
3417
|
createdAt: string;
|
|
@@ -3457,7 +3474,7 @@ export interface NotificationTemplateVersionUpdateRequest {
|
|
|
3457
3474
|
}
|
|
3458
3475
|
export interface Operation {
|
|
3459
3476
|
op?: string;
|
|
3460
|
-
value?:
|
|
3477
|
+
value?: string | number | boolean | null | object;
|
|
3461
3478
|
path?: string;
|
|
3462
3479
|
}
|
|
3463
3480
|
export interface OverridePasswordRequest {
|
|
@@ -3793,7 +3810,7 @@ export interface SSOTokenRequest {
|
|
|
3793
3810
|
redirectUri: string;
|
|
3794
3811
|
}
|
|
3795
3812
|
export interface SamlMetadataRequest {
|
|
3796
|
-
ssoIntegration:
|
|
3813
|
+
ssoIntegration: "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
3797
3814
|
}
|
|
3798
3815
|
export interface SendForgotPasswordRequest {
|
|
3799
3816
|
/**
|
|
@@ -3810,7 +3827,7 @@ export interface SendLoanDocumentsRequest {
|
|
|
3810
3827
|
export interface SendNotificationForLoanRequest {
|
|
3811
3828
|
/** @minLength 1 */
|
|
3812
3829
|
loanID: string;
|
|
3813
|
-
|
|
3830
|
+
templateKey: string;
|
|
3814
3831
|
loanOfficerEmail?: string | null;
|
|
3815
3832
|
/** @format uuid */
|
|
3816
3833
|
siteConfigurationId?: string | null;
|
|
@@ -3828,7 +3845,7 @@ export interface SiteConfiguration {
|
|
|
3828
3845
|
deletedAt?: string | null;
|
|
3829
3846
|
/** @format uuid */
|
|
3830
3847
|
id: string;
|
|
3831
|
-
type:
|
|
3848
|
+
type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
3832
3849
|
/** @format uuid */
|
|
3833
3850
|
entityID: string;
|
|
3834
3851
|
/** @format int32 */
|
|
@@ -4022,7 +4039,7 @@ export interface SiteConfigurationByUrl {
|
|
|
4022
4039
|
deletedAt?: string | null;
|
|
4023
4040
|
/** @format uuid */
|
|
4024
4041
|
id: string;
|
|
4025
|
-
type:
|
|
4042
|
+
type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
4026
4043
|
/** @format uuid */
|
|
4027
4044
|
entityID: string;
|
|
4028
4045
|
/** @format int32 */
|
|
@@ -4233,7 +4250,7 @@ export interface SiteConfigurationForm {
|
|
|
4233
4250
|
export interface SiteConfigurationReduced {
|
|
4234
4251
|
/** @format uuid */
|
|
4235
4252
|
id: string;
|
|
4236
|
-
type:
|
|
4253
|
+
type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
4237
4254
|
url?: string | null;
|
|
4238
4255
|
name: string;
|
|
4239
4256
|
/** @format int64 */
|
|
@@ -4250,7 +4267,7 @@ export interface SiteConfigurationRequest {
|
|
|
4250
4267
|
entityID: string;
|
|
4251
4268
|
/** @format int32 */
|
|
4252
4269
|
entityType: number;
|
|
4253
|
-
type:
|
|
4270
|
+
type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
4254
4271
|
url: string;
|
|
4255
4272
|
name: string;
|
|
4256
4273
|
introduction?: string | null;
|
|
@@ -4425,7 +4442,7 @@ export interface SiteConfigurationSearchCriteria {
|
|
|
4425
4442
|
export interface SiteConfigurationSummary {
|
|
4426
4443
|
/** @format uuid */
|
|
4427
4444
|
id: string;
|
|
4428
|
-
type:
|
|
4445
|
+
type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
4429
4446
|
url?: string | null;
|
|
4430
4447
|
name: string;
|
|
4431
4448
|
/** @format int64 */
|
|
@@ -4594,7 +4611,7 @@ export interface TestSendNotificationForLoanRequest {
|
|
|
4594
4611
|
siteConfigurationId: string;
|
|
4595
4612
|
toAddress?: string | null;
|
|
4596
4613
|
toPhoneNumber?: string | null;
|
|
4597
|
-
|
|
4614
|
+
templateKey?: string | null;
|
|
4598
4615
|
attachments: Attachment[];
|
|
4599
4616
|
}
|
|
4600
4617
|
export interface Theme {
|
|
@@ -5004,7 +5021,7 @@ export interface UserDevice {
|
|
|
5004
5021
|
export interface UserDraft {
|
|
5005
5022
|
/** @format uuid */
|
|
5006
5023
|
draftID: string;
|
|
5007
|
-
role:
|
|
5024
|
+
role: "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
|
|
5008
5025
|
user: User;
|
|
5009
5026
|
}
|
|
5010
5027
|
export interface UserDraftPaginated {
|
|
@@ -5028,7 +5045,7 @@ export interface UserGroupAccessScope {
|
|
|
5028
5045
|
id: string;
|
|
5029
5046
|
/** @format uuid */
|
|
5030
5047
|
groupId: string;
|
|
5031
|
-
scopeType:
|
|
5048
|
+
scopeType: "User" | "Branch";
|
|
5032
5049
|
/** @format uuid */
|
|
5033
5050
|
userId?: string | null;
|
|
5034
5051
|
/** @format uuid */
|
|
@@ -5061,7 +5078,7 @@ export interface UserLoan {
|
|
|
5061
5078
|
deletedAt?: string | null;
|
|
5062
5079
|
loanID: string;
|
|
5063
5080
|
user: User;
|
|
5064
|
-
role:
|
|
5081
|
+
role: "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
|
|
5065
5082
|
/** @format int32 */
|
|
5066
5083
|
borrowerPair?: number | null;
|
|
5067
5084
|
/** @format int32 */
|
|
@@ -5073,10 +5090,10 @@ export interface UserLoanConsent {
|
|
|
5073
5090
|
id: string;
|
|
5074
5091
|
/** @format uuid */
|
|
5075
5092
|
userLoanID: string;
|
|
5076
|
-
type:
|
|
5093
|
+
type: "Econsent" | "CreditAuthorization" | "Tcpa";
|
|
5077
5094
|
providedConsent: boolean;
|
|
5078
5095
|
ipAddress?: string | null;
|
|
5079
|
-
losSyncStatus:
|
|
5096
|
+
losSyncStatus: "NotStarted" | "Failed" | "Success";
|
|
5080
5097
|
/** @format date-time */
|
|
5081
5098
|
createdAt: string;
|
|
5082
5099
|
}
|
|
@@ -5208,7 +5225,7 @@ export interface UserSummary {
|
|
|
5208
5225
|
id: string;
|
|
5209
5226
|
name?: string | null;
|
|
5210
5227
|
email?: string | null;
|
|
5211
|
-
role:
|
|
5228
|
+
role: "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
|
|
5212
5229
|
}
|
|
5213
5230
|
export interface VerifyPasswordRequest {
|
|
5214
5231
|
/**
|
|
@@ -5241,49 +5258,6 @@ export interface Workflow {
|
|
|
5241
5258
|
tileSubtitle: string;
|
|
5242
5259
|
icon: string;
|
|
5243
5260
|
}
|
|
5244
|
-
export type AccountBillingRequestBillingTypeEnum = "ClosedLoan" | "LoanOfficer";
|
|
5245
|
-
export type AuditLogEntryChangeTypeEnum = "Created" | "Modified" | "SoftDeleted" | "HardDeleted" | "Restored";
|
|
5246
|
-
export type CreateAccessScopeRequestScopeTypeEnum = "User" | "Branch";
|
|
5247
|
-
export type CreateAccountRequestEnvironmentEnum = "Development" | "Staging" | "UAT" | "Production";
|
|
5248
|
-
export type CreateGroupMemberRequestLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
|
|
5249
|
-
/** @deprecated */
|
|
5250
|
-
export type CreateInviteRequestRelationshipEnum = "NotApplicable" | "Spouse" | "NonSpouse";
|
|
5251
|
-
export type CreateLoanImportRequestImportModeEnum = "All" | "NewOnly" | "UpdateOnly";
|
|
5252
|
-
export type CreateUserDraftLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
|
|
5253
|
-
export type DraftTypeEnum = "NewLoan" | "EditLoan";
|
|
5254
|
-
export type DraftContentTypeEnum = "NewLoan" | "EditLoan";
|
|
5255
|
-
export type EncompassRequestLogOperationTypeEnum = "FieldUpdate" | "EConsentUpdate" | "DocumentSync" | "MilestoneUpdate" | "DocumentAttachment" | "General" | "FieldReader";
|
|
5256
|
-
export type EncompassRequestLogOutcomeEnum = "Success" | "Failure" | "PartialSuccess";
|
|
5257
|
-
export type FusionReportFilterFilterTypeEnum = "DateGreaterThanOrEqualTo" | "DateGreaterThan" | "DateLessThan" | "DateLessThanOrEqualTo" | "DateEquals" | "DateDoesntEqual" | "DateNonEmpty" | "DateEmpty" | "StringContains" | "StringEquals" | "StringNotEmpty" | "StringNotEquals" | "StringNotContains";
|
|
5258
|
-
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";
|
|
5259
|
-
export type LoanBorrowerApplicationStatusEnum = "Draft" | "Complete";
|
|
5260
|
-
export type LoanContactRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
|
|
5261
|
-
export type LoanImportStatusEnum = "WaitingProcess" | "InProgress" | "Completed" | "Failed" | "Cancelled";
|
|
5262
|
-
export type LoanImportImportModeEnum = "All" | "NewOnly" | "UpdateOnly";
|
|
5263
|
-
export type LoanImportLogLevelEnum = "None" | "Info" | "Warning" | "Error";
|
|
5264
|
-
export type LoanLogLevelEnum = "None" | "Info" | "Warning" | "Error";
|
|
5265
|
-
export type LoanLogTypeEnum = "Loan" | "Queue" | "POSFlagChanged" | "Verification" | "DocumentUploaded" | "LoanCreated" | "WorkflowSubmitted" | "UserInvitationSent" | "CoBorrowerAdded" | "TaskCompleted" | "LoanStatusChanged" | "EConsent" | "SensitiveDataPurge" | "ClosingDateUpdated";
|
|
5266
|
-
export type LoanLogDetailLevelEnum = "None" | "Info" | "Warning" | "Error";
|
|
5267
|
-
export type LoanLogDetailTypeEnum = "Loan" | "Queue" | "POSFlagChanged" | "Verification" | "DocumentUploaded" | "LoanCreated" | "WorkflowSubmitted" | "UserInvitationSent" | "CoBorrowerAdded" | "TaskCompleted" | "LoanStatusChanged" | "EConsent" | "SensitiveDataPurge" | "ClosingDateUpdated";
|
|
5268
|
-
export type LoanUserLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
|
|
5269
|
-
export type SamlMetadataRequestSsoIntegrationEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
5270
|
-
export type SiteConfigurationTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5271
|
-
export type SiteConfigurationByUrlTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5272
|
-
export type SiteConfigurationReducedTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5273
|
-
export type SiteConfigurationRequestTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5274
|
-
export type SiteConfigurationSummaryTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5275
|
-
export type UserDraftRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
|
|
5276
|
-
export type UserGroupAccessScopeScopeTypeEnum = "User" | "Branch";
|
|
5277
|
-
export type UserLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
|
|
5278
|
-
export type UserLoanConsentTypeEnum = "Econsent" | "CreditAuthorization" | "Tcpa";
|
|
5279
|
-
export type UserLoanConsentLosSyncStatusEnum = "NotStarted" | "Failed" | "Success";
|
|
5280
|
-
export type UserSummaryRoleEnum = "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
|
|
5281
|
-
/** @default "Realtor" */
|
|
5282
|
-
export type GetPartnersParamsRoleEnum = "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
|
|
5283
|
-
export type GetSamlMetadataParamsSSoIntegrationEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
5284
|
-
export type GetSamlMetadataParamsEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
5285
|
-
export type CreateOrReplaceSamlMetadataParamsSSoIntegrationEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
5286
|
-
export type CreateOrReplaceSamlMetadataParamsEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
5287
5261
|
import type { AxiosInstance, AxiosRequestConfig, AxiosResponse, ResponseType } from "axios";
|
|
5288
5262
|
export type QueryParamsType = Record<string | number, any>;
|
|
5289
5263
|
export interface FullRequestParams extends Omit<AxiosRequestConfig, "data" | "params" | "url" | "responseType"> {
|
|
@@ -5307,6 +5281,7 @@ export interface ApiConfig<SecurityDataType = unknown> extends Omit<AxiosRequest
|
|
|
5307
5281
|
format?: ResponseType;
|
|
5308
5282
|
}
|
|
5309
5283
|
export declare enum ContentType {
|
|
5284
|
+
JsonPatch = "application/json-patch+json",
|
|
5310
5285
|
Json = "application/json",
|
|
5311
5286
|
JsonApi = "application/vnd.api+json",
|
|
5312
5287
|
FormData = "multipart/form-data",
|
|
@@ -5328,7 +5303,7 @@ export declare class HttpClient<SecurityDataType = unknown> {
|
|
|
5328
5303
|
}
|
|
5329
5304
|
/**
|
|
5330
5305
|
* @title The Big POS API
|
|
5331
|
-
* @version v2.
|
|
5306
|
+
* @version v2.38.0
|
|
5332
5307
|
* @termsOfService https://www.thebigpos.com/terms-of-use/
|
|
5333
5308
|
* @contact Mortgage Automation Technologies <support@thebigpos.com> (https://www.thebigpos.com/terms-of-use/)
|
|
5334
5309
|
*/
|
|
@@ -5342,7 +5317,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5342
5317
|
* @secure
|
|
5343
5318
|
* @response `200` `void` Success
|
|
5344
5319
|
*/
|
|
5345
|
-
postRoot: (params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
5320
|
+
postRoot: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
5346
5321
|
/**
|
|
5347
5322
|
* No description
|
|
5348
5323
|
*
|
|
@@ -5352,7 +5327,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5352
5327
|
* @secure
|
|
5353
5328
|
* @response `200` `string` Success
|
|
5354
5329
|
*/
|
|
5355
|
-
getRoot: (params?: RequestParams) => Promise<AxiosResponse<string, any
|
|
5330
|
+
getRoot: (params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
5356
5331
|
api: {
|
|
5357
5332
|
/**
|
|
5358
5333
|
* No description
|
|
@@ -5365,7 +5340,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5365
5340
|
* @response `200` `Account` Success
|
|
5366
5341
|
* @response `404` `ProblemDetails` Not Found
|
|
5367
5342
|
*/
|
|
5368
|
-
getMyAccount: (params?: RequestParams) => Promise<AxiosResponse<Account, any
|
|
5343
|
+
getMyAccount: (params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
|
|
5369
5344
|
/**
|
|
5370
5345
|
* No description
|
|
5371
5346
|
*
|
|
@@ -5378,7 +5353,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5378
5353
|
* @response `404` `ProblemDetails` Not Found
|
|
5379
5354
|
* @response `422` `ProblemDetails` Client Error
|
|
5380
5355
|
*/
|
|
5381
|
-
replaceMyAccount: (data: UpdateAccountRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any
|
|
5356
|
+
replaceMyAccount: (data: UpdateAccountRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
|
|
5382
5357
|
/**
|
|
5383
5358
|
* No description
|
|
5384
5359
|
*
|
|
@@ -5389,7 +5364,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5389
5364
|
* @secure
|
|
5390
5365
|
* @response `200` `SiteConfiguration` Success
|
|
5391
5366
|
*/
|
|
5392
|
-
getSiteConfigurationByAccount: (params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any
|
|
5367
|
+
getSiteConfigurationByAccount: (params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
5393
5368
|
/**
|
|
5394
5369
|
* No description
|
|
5395
5370
|
*
|
|
@@ -5401,7 +5376,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5401
5376
|
* @response `200` `SiteConfiguration` Success
|
|
5402
5377
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5403
5378
|
*/
|
|
5404
|
-
updateSiteConfigurationForAccount: (data: SiteConfiguration, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any
|
|
5379
|
+
updateSiteConfigurationForAccount: (data: SiteConfiguration, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
5405
5380
|
/**
|
|
5406
5381
|
* No description
|
|
5407
5382
|
*
|
|
@@ -5412,7 +5387,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5412
5387
|
* @secure
|
|
5413
5388
|
* @response `200` `(Account)[]` Success
|
|
5414
5389
|
*/
|
|
5415
|
-
getAccounts: (params?: RequestParams) => Promise<AxiosResponse<Account[], any
|
|
5390
|
+
getAccounts: (params?: RequestParams) => Promise<AxiosResponse<Account[], any>>;
|
|
5416
5391
|
/**
|
|
5417
5392
|
* No description
|
|
5418
5393
|
*
|
|
@@ -5424,7 +5399,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5424
5399
|
* @response `201` `Account` Created
|
|
5425
5400
|
* @response `422` `ProblemDetails` Client Error
|
|
5426
5401
|
*/
|
|
5427
|
-
createAccount: (data: CreateAccountRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any
|
|
5402
|
+
createAccount: (data: CreateAccountRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
|
|
5428
5403
|
/**
|
|
5429
5404
|
* No description
|
|
5430
5405
|
*
|
|
@@ -5436,7 +5411,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5436
5411
|
* @response `201` `Account` Created
|
|
5437
5412
|
* @response `422` `ProblemDetails` Client Error
|
|
5438
5413
|
*/
|
|
5439
|
-
getAccount: (id: string, params?: RequestParams) => Promise<AxiosResponse<Account, any
|
|
5414
|
+
getAccount: (id: string, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
|
|
5440
5415
|
/**
|
|
5441
5416
|
* No description
|
|
5442
5417
|
*
|
|
@@ -5452,7 +5427,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5452
5427
|
deleteAccount: (id: string, query?: {
|
|
5453
5428
|
/** @default false */
|
|
5454
5429
|
hardDelete?: boolean;
|
|
5455
|
-
}, params?: RequestParams) => Promise<AxiosResponse<Account, any
|
|
5430
|
+
}, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
|
|
5456
5431
|
/**
|
|
5457
5432
|
* No description
|
|
5458
5433
|
*
|
|
@@ -5465,7 +5440,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5465
5440
|
* @response `404` `ProblemDetails` Not Found
|
|
5466
5441
|
* @response `422` `ProblemDetails` Client Error
|
|
5467
5442
|
*/
|
|
5468
|
-
updateAccountBilling: (id: string, data: AccountBillingRequest, params?: RequestParams) => Promise<AxiosResponse<AccountBilling, any
|
|
5443
|
+
updateAccountBilling: (id: string, data: AccountBillingRequest, params?: RequestParams) => Promise<AxiosResponse<AccountBilling, any>>;
|
|
5469
5444
|
/**
|
|
5470
5445
|
* No description
|
|
5471
5446
|
*
|
|
@@ -5483,7 +5458,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5483
5458
|
pageNumber?: number;
|
|
5484
5459
|
sortBy?: string;
|
|
5485
5460
|
sortDirection?: string;
|
|
5486
|
-
}, params?: RequestParams) => Promise<AxiosResponse<AuditLogEntryPaginated, any
|
|
5461
|
+
}, params?: RequestParams) => Promise<AxiosResponse<AuditLogEntryPaginated, any>>;
|
|
5487
5462
|
/**
|
|
5488
5463
|
* No description
|
|
5489
5464
|
*
|
|
@@ -5495,7 +5470,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5495
5470
|
* @response `200` `AuditLogEntry` Success
|
|
5496
5471
|
* @response `404` `ProblemDetails` Not Found
|
|
5497
5472
|
*/
|
|
5498
|
-
getAuditLogById: (id: string, params?: RequestParams) => Promise<AxiosResponse<AuditLogEntry, any
|
|
5473
|
+
getAuditLogById: (id: string, params?: RequestParams) => Promise<AxiosResponse<AuditLogEntry, any>>;
|
|
5499
5474
|
/**
|
|
5500
5475
|
* No description
|
|
5501
5476
|
*
|
|
@@ -5508,7 +5483,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5508
5483
|
* @response `401` `ProblemDetails` Unauthorized
|
|
5509
5484
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5510
5485
|
*/
|
|
5511
|
-
getTokenFromRefreshToken: (data: RefreshTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any
|
|
5486
|
+
getTokenFromRefreshToken: (data: RefreshTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any>>;
|
|
5512
5487
|
/**
|
|
5513
5488
|
* No description
|
|
5514
5489
|
*
|
|
@@ -5520,7 +5495,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5520
5495
|
* @response `200` `ForcePasswordReset` Success
|
|
5521
5496
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5522
5497
|
*/
|
|
5523
|
-
getToken: (data: TokenRequest, params?: RequestParams) => Promise<AxiosResponse<ForcePasswordReset, any
|
|
5498
|
+
getToken: (data: TokenRequest, params?: RequestParams) => Promise<AxiosResponse<ForcePasswordReset, any>>;
|
|
5524
5499
|
/**
|
|
5525
5500
|
* No description
|
|
5526
5501
|
*
|
|
@@ -5532,7 +5507,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5532
5507
|
* @response `200` `ForcePasswordReset` Success
|
|
5533
5508
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5534
5509
|
*/
|
|
5535
|
-
getTokenFromChallengeCode: (data: TokenChallengeRequest, params?: RequestParams) => Promise<AxiosResponse<ForcePasswordReset, any
|
|
5510
|
+
getTokenFromChallengeCode: (data: TokenChallengeRequest, params?: RequestParams) => Promise<AxiosResponse<ForcePasswordReset, any>>;
|
|
5536
5511
|
/**
|
|
5537
5512
|
* No description
|
|
5538
5513
|
*
|
|
@@ -5544,7 +5519,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5544
5519
|
* @response `200` `Token` Success
|
|
5545
5520
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5546
5521
|
*/
|
|
5547
|
-
getSystemToken: (data: SystemTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any
|
|
5522
|
+
getSystemToken: (data: SystemTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any>>;
|
|
5548
5523
|
/**
|
|
5549
5524
|
* No description
|
|
5550
5525
|
*
|
|
@@ -5556,7 +5531,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5556
5531
|
* @response `200` `SSOToken` Success
|
|
5557
5532
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5558
5533
|
*/
|
|
5559
|
-
getSsoToken: (data: SSOTokenRequest, params?: RequestParams) => Promise<AxiosResponse<SSOToken, any
|
|
5534
|
+
getSsoToken: (data: SSOTokenRequest, params?: RequestParams) => Promise<AxiosResponse<SSOToken, any>>;
|
|
5560
5535
|
/**
|
|
5561
5536
|
* No description
|
|
5562
5537
|
*
|
|
@@ -5568,7 +5543,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5568
5543
|
* @response `204` `NoContentResult` No Content
|
|
5569
5544
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5570
5545
|
*/
|
|
5571
|
-
logOut: (params?: RequestParams) => Promise<AxiosResponse<NoContentResult, any
|
|
5546
|
+
logOut: (params?: RequestParams) => Promise<AxiosResponse<NoContentResult, any>>;
|
|
5572
5547
|
/**
|
|
5573
5548
|
* No description
|
|
5574
5549
|
*
|
|
@@ -5587,7 +5562,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5587
5562
|
pageNumber?: number;
|
|
5588
5563
|
sortBy?: string;
|
|
5589
5564
|
sortDirection?: string;
|
|
5590
|
-
}, params?: RequestParams) => Promise<AxiosResponse<GetBranchPaginated, any
|
|
5565
|
+
}, params?: RequestParams) => Promise<AxiosResponse<GetBranchPaginated, any>>;
|
|
5591
5566
|
/**
|
|
5592
5567
|
* No description
|
|
5593
5568
|
*
|
|
@@ -5599,7 +5574,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5599
5574
|
* @response `200` `GetBranch` Success
|
|
5600
5575
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5601
5576
|
*/
|
|
5602
|
-
createBranch: (data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any
|
|
5577
|
+
createBranch: (data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any>>;
|
|
5603
5578
|
/**
|
|
5604
5579
|
* No description
|
|
5605
5580
|
*
|
|
@@ -5617,7 +5592,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5617
5592
|
pageNumber?: number;
|
|
5618
5593
|
sortBy?: string;
|
|
5619
5594
|
sortDirection?: string;
|
|
5620
|
-
}, params?: RequestParams) => Promise<AxiosResponse<GetBranchPaginated, any
|
|
5595
|
+
}, params?: RequestParams) => Promise<AxiosResponse<GetBranchPaginated, any>>;
|
|
5621
5596
|
/**
|
|
5622
5597
|
* No description
|
|
5623
5598
|
*
|
|
@@ -5628,7 +5603,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5628
5603
|
* @secure
|
|
5629
5604
|
* @response `200` `GetBranch` Success
|
|
5630
5605
|
*/
|
|
5631
|
-
getBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any
|
|
5606
|
+
getBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any>>;
|
|
5632
5607
|
/**
|
|
5633
5608
|
* No description
|
|
5634
5609
|
*
|
|
@@ -5640,7 +5615,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5640
5615
|
* @response `200` `GetBranch` Success
|
|
5641
5616
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5642
5617
|
*/
|
|
5643
|
-
replaceBranch: (branchId: string, data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any
|
|
5618
|
+
replaceBranch: (branchId: string, data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any>>;
|
|
5644
5619
|
/**
|
|
5645
5620
|
* No description
|
|
5646
5621
|
*
|
|
@@ -5651,7 +5626,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5651
5626
|
* @secure
|
|
5652
5627
|
* @response `204` `void` No Content
|
|
5653
5628
|
*/
|
|
5654
|
-
deleteBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
5629
|
+
deleteBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
5655
5630
|
/**
|
|
5656
5631
|
* No description
|
|
5657
5632
|
*
|
|
@@ -5663,7 +5638,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5663
5638
|
* @response `204` `void` No Content
|
|
5664
5639
|
* @response `400` `ProblemDetails` Bad Request
|
|
5665
5640
|
*/
|
|
5666
|
-
restoreBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
5641
|
+
restoreBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
5667
5642
|
/**
|
|
5668
5643
|
* No description
|
|
5669
5644
|
*
|
|
@@ -5675,7 +5650,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5675
5650
|
* @response `200` `SiteConfiguration` Success
|
|
5676
5651
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5677
5652
|
*/
|
|
5678
|
-
createBranchSiteConfiguration: (branchId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any
|
|
5653
|
+
createBranchSiteConfiguration: (branchId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
5679
5654
|
/**
|
|
5680
5655
|
* No description
|
|
5681
5656
|
*
|
|
@@ -5686,7 +5661,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5686
5661
|
* @secure
|
|
5687
5662
|
* @response `200` `SiteConfigurationWithInherited` Success
|
|
5688
5663
|
*/
|
|
5689
|
-
getBranchSiteConfiguration: (branchId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any
|
|
5664
|
+
getBranchSiteConfiguration: (branchId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
|
|
5690
5665
|
/**
|
|
5691
5666
|
* No description
|
|
5692
5667
|
*
|
|
@@ -5700,7 +5675,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5700
5675
|
*/
|
|
5701
5676
|
replaceBranchSiteConfiguration: (branchId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
|
|
5702
5677
|
applyToChildren?: boolean;
|
|
5703
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any
|
|
5678
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
5704
5679
|
/**
|
|
5705
5680
|
* No description
|
|
5706
5681
|
*
|
|
@@ -5711,7 +5686,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5711
5686
|
* @secure
|
|
5712
5687
|
* @response `200` `(LoanOfficerPublic)[]` Success
|
|
5713
5688
|
*/
|
|
5714
|
-
getLoanOfficersByBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic[], any
|
|
5689
|
+
getLoanOfficersByBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic[], any>>;
|
|
5715
5690
|
/**
|
|
5716
5691
|
* No description
|
|
5717
5692
|
*
|
|
@@ -5724,7 +5699,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5724
5699
|
*/
|
|
5725
5700
|
getBusinessRules: (query?: {
|
|
5726
5701
|
showAll?: boolean;
|
|
5727
|
-
}, params?: RequestParams) => Promise<AxiosResponse<BusinessRule[], any
|
|
5702
|
+
}, params?: RequestParams) => Promise<AxiosResponse<BusinessRule[], any>>;
|
|
5728
5703
|
/**
|
|
5729
5704
|
* No description
|
|
5730
5705
|
*
|
|
@@ -5736,7 +5711,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5736
5711
|
* @response `200` `BusinessRule` Success
|
|
5737
5712
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5738
5713
|
*/
|
|
5739
|
-
createBusinessRule: (data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any
|
|
5714
|
+
createBusinessRule: (data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
|
|
5740
5715
|
/**
|
|
5741
5716
|
* No description
|
|
5742
5717
|
*
|
|
@@ -5747,7 +5722,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5747
5722
|
* @secure
|
|
5748
5723
|
* @response `200` `BusinessRule` Success
|
|
5749
5724
|
*/
|
|
5750
|
-
getBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any
|
|
5725
|
+
getBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
|
|
5751
5726
|
/**
|
|
5752
5727
|
* No description
|
|
5753
5728
|
*
|
|
@@ -5759,7 +5734,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5759
5734
|
* @response `200` `BusinessRule` Success
|
|
5760
5735
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5761
5736
|
*/
|
|
5762
|
-
replaceBusinessRule: (id: string, data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any
|
|
5737
|
+
replaceBusinessRule: (id: string, data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
|
|
5763
5738
|
/**
|
|
5764
5739
|
* No description
|
|
5765
5740
|
*
|
|
@@ -5770,7 +5745,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5770
5745
|
* @secure
|
|
5771
5746
|
* @response `204` `void` No Content
|
|
5772
5747
|
*/
|
|
5773
|
-
deleteBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
5748
|
+
deleteBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
5774
5749
|
/**
|
|
5775
5750
|
* No description
|
|
5776
5751
|
*
|
|
@@ -5781,7 +5756,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5781
5756
|
* @secure
|
|
5782
5757
|
* @response `200` `BusinessRule` Success
|
|
5783
5758
|
*/
|
|
5784
|
-
restoreBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any
|
|
5759
|
+
restoreBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
|
|
5785
5760
|
/**
|
|
5786
5761
|
* @description Returns closed loan counts per account within the specified date range, including POS vs non-POS breakdown and utilization ratios.
|
|
5787
5762
|
*
|
|
@@ -5792,7 +5767,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5792
5767
|
* @secure
|
|
5793
5768
|
* @response `200` `ClosedLoansReport` Success
|
|
5794
5769
|
*/
|
|
5795
|
-
getClosedLoansReport: (data: ClosedLoansReportRequest, params?: RequestParams) => Promise<AxiosResponse<ClosedLoansReport, any
|
|
5770
|
+
getClosedLoansReport: (data: ClosedLoansReportRequest, params?: RequestParams) => Promise<AxiosResponse<ClosedLoansReport, any>>;
|
|
5796
5771
|
/**
|
|
5797
5772
|
* No description
|
|
5798
5773
|
*
|
|
@@ -5811,7 +5786,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5811
5786
|
pageNumber?: number;
|
|
5812
5787
|
sortBy?: string;
|
|
5813
5788
|
sortDirection?: string;
|
|
5814
|
-
}, params?: RequestParams) => Promise<AxiosResponse<CorporatePaginated, any
|
|
5789
|
+
}, params?: RequestParams) => Promise<AxiosResponse<CorporatePaginated, any>>;
|
|
5815
5790
|
/**
|
|
5816
5791
|
* No description
|
|
5817
5792
|
*
|
|
@@ -5823,7 +5798,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5823
5798
|
* @response `200` `Corporate` Success
|
|
5824
5799
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5825
5800
|
*/
|
|
5826
|
-
createCorporate: (data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any
|
|
5801
|
+
createCorporate: (data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any>>;
|
|
5827
5802
|
/**
|
|
5828
5803
|
* No description
|
|
5829
5804
|
*
|
|
@@ -5841,7 +5816,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5841
5816
|
pageNumber?: number;
|
|
5842
5817
|
sortBy?: string;
|
|
5843
5818
|
sortDirection?: string;
|
|
5844
|
-
}, params?: RequestParams) => Promise<AxiosResponse<CorporatePaginated, any
|
|
5819
|
+
}, params?: RequestParams) => Promise<AxiosResponse<CorporatePaginated, any>>;
|
|
5845
5820
|
/**
|
|
5846
5821
|
* No description
|
|
5847
5822
|
*
|
|
@@ -5852,7 +5827,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5852
5827
|
* @secure
|
|
5853
5828
|
* @response `200` `Corporate` Success
|
|
5854
5829
|
*/
|
|
5855
|
-
getCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<Corporate, any
|
|
5830
|
+
getCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<Corporate, any>>;
|
|
5856
5831
|
/**
|
|
5857
5832
|
* No description
|
|
5858
5833
|
*
|
|
@@ -5864,7 +5839,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5864
5839
|
* @response `200` `Corporate` Success
|
|
5865
5840
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5866
5841
|
*/
|
|
5867
|
-
replaceCorporate: (id: string, data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any
|
|
5842
|
+
replaceCorporate: (id: string, data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any>>;
|
|
5868
5843
|
/**
|
|
5869
5844
|
* No description
|
|
5870
5845
|
*
|
|
@@ -5875,7 +5850,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5875
5850
|
* @secure
|
|
5876
5851
|
* @response `204` `void` No Content
|
|
5877
5852
|
*/
|
|
5878
|
-
deleteCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
5853
|
+
deleteCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
5879
5854
|
/**
|
|
5880
5855
|
* No description
|
|
5881
5856
|
*
|
|
@@ -5886,7 +5861,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5886
5861
|
* @secure
|
|
5887
5862
|
* @response `204` `void` No Content
|
|
5888
5863
|
*/
|
|
5889
|
-
restoreCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
5864
|
+
restoreCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
5890
5865
|
/**
|
|
5891
5866
|
* No description
|
|
5892
5867
|
*
|
|
@@ -5898,7 +5873,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5898
5873
|
* @response `200` `SiteConfiguration` Success
|
|
5899
5874
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5900
5875
|
*/
|
|
5901
|
-
createCorporateSiteConfiguration: (corporateId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any
|
|
5876
|
+
createCorporateSiteConfiguration: (corporateId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
5902
5877
|
/**
|
|
5903
5878
|
* No description
|
|
5904
5879
|
*
|
|
@@ -5909,7 +5884,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5909
5884
|
* @secure
|
|
5910
5885
|
* @response `200` `SiteConfigurationWithInherited` Success
|
|
5911
5886
|
*/
|
|
5912
|
-
getCorporateSiteConfiguration: (corporateId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any
|
|
5887
|
+
getCorporateSiteConfiguration: (corporateId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
|
|
5913
5888
|
/**
|
|
5914
5889
|
* No description
|
|
5915
5890
|
*
|
|
@@ -5923,7 +5898,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5923
5898
|
*/
|
|
5924
5899
|
replaceCorporateSiteConfiguration: (corporateId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
|
|
5925
5900
|
applyToChildren?: boolean;
|
|
5926
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any
|
|
5901
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
5927
5902
|
/**
|
|
5928
5903
|
* No description
|
|
5929
5904
|
*
|
|
@@ -5934,7 +5909,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5934
5909
|
* @secure
|
|
5935
5910
|
* @response `200` `(BranchReduced)[]` Success
|
|
5936
5911
|
*/
|
|
5937
|
-
getBranchesByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchReduced[], any
|
|
5912
|
+
getBranchesByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchReduced[], any>>;
|
|
5938
5913
|
/**
|
|
5939
5914
|
* No description
|
|
5940
5915
|
*
|
|
@@ -5945,7 +5920,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5945
5920
|
* @secure
|
|
5946
5921
|
* @response `200` `(LoanOfficerPublic)[]` Success
|
|
5947
5922
|
*/
|
|
5948
|
-
getLoanOfficersByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic[], any
|
|
5923
|
+
getLoanOfficersByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic[], any>>;
|
|
5949
5924
|
/**
|
|
5950
5925
|
* No description
|
|
5951
5926
|
*
|
|
@@ -5965,7 +5940,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5965
5940
|
pageNumber?: number;
|
|
5966
5941
|
sortBy?: string;
|
|
5967
5942
|
sortDirection?: string;
|
|
5968
|
-
}, params?: RequestParams) => Promise<AxiosResponse<DevicePaginated, any
|
|
5943
|
+
}, params?: RequestParams) => Promise<AxiosResponse<DevicePaginated, any>>;
|
|
5969
5944
|
/**
|
|
5970
5945
|
* No description
|
|
5971
5946
|
*
|
|
@@ -5976,7 +5951,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5976
5951
|
* @secure
|
|
5977
5952
|
* @response `200` `Device` Success
|
|
5978
5953
|
*/
|
|
5979
|
-
getDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<Device, any
|
|
5954
|
+
getDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<Device, any>>;
|
|
5980
5955
|
/**
|
|
5981
5956
|
* No description
|
|
5982
5957
|
*
|
|
@@ -5987,7 +5962,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5987
5962
|
* @secure
|
|
5988
5963
|
* @response `200` `Device` Success
|
|
5989
5964
|
*/
|
|
5990
|
-
updateDevice: (id: string, data: DeviceRequest, params?: RequestParams) => Promise<AxiosResponse<Device, any
|
|
5965
|
+
updateDevice: (id: string, data: DeviceRequest, params?: RequestParams) => Promise<AxiosResponse<Device, any>>;
|
|
5991
5966
|
/**
|
|
5992
5967
|
* No description
|
|
5993
5968
|
*
|
|
@@ -5998,7 +5973,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5998
5973
|
* @secure
|
|
5999
5974
|
* @response `200` `DeviceMDM` Success
|
|
6000
5975
|
*/
|
|
6001
|
-
getDeviceBySerialNumber: (sn: string, params?: RequestParams) => Promise<AxiosResponse<DeviceMDM, any
|
|
5976
|
+
getDeviceBySerialNumber: (sn: string, params?: RequestParams) => Promise<AxiosResponse<DeviceMDM, any>>;
|
|
6002
5977
|
/**
|
|
6003
5978
|
* No description
|
|
6004
5979
|
*
|
|
@@ -6009,7 +5984,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6009
5984
|
* @secure
|
|
6010
5985
|
* @response `200` `Action` Success
|
|
6011
5986
|
*/
|
|
6012
|
-
createDeviceActionBySerialNumber: (sn: string, actionName: string, params?: RequestParams) => Promise<AxiosResponse<Action, any
|
|
5987
|
+
createDeviceActionBySerialNumber: (sn: string, actionName: string, params?: RequestParams) => Promise<AxiosResponse<Action, any>>;
|
|
6013
5988
|
/**
|
|
6014
5989
|
* No description
|
|
6015
5990
|
*
|
|
@@ -6023,7 +5998,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6023
5998
|
getDocumentBuckets: (query?: {
|
|
6024
5999
|
/** @default false */
|
|
6025
6000
|
includeSystemBuckets?: boolean;
|
|
6026
|
-
}, params?: RequestParams) => Promise<AxiosResponse<string[], any
|
|
6001
|
+
}, params?: RequestParams) => Promise<AxiosResponse<string[], any>>;
|
|
6027
6002
|
/**
|
|
6028
6003
|
* No description
|
|
6029
6004
|
*
|
|
@@ -6036,7 +6011,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6036
6011
|
*/
|
|
6037
6012
|
getDocumentTemplates: (query?: {
|
|
6038
6013
|
showAll?: boolean;
|
|
6039
|
-
}, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase[], any
|
|
6014
|
+
}, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase[], any>>;
|
|
6040
6015
|
/**
|
|
6041
6016
|
* No description
|
|
6042
6017
|
*
|
|
@@ -6049,7 +6024,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6049
6024
|
* @response `404` `ProblemDetails` Not Found
|
|
6050
6025
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6051
6026
|
*/
|
|
6052
|
-
createDocumentTemplate: (data: CreateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any
|
|
6027
|
+
createDocumentTemplate: (data: CreateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any>>;
|
|
6053
6028
|
/**
|
|
6054
6029
|
* No description
|
|
6055
6030
|
*
|
|
@@ -6065,7 +6040,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6065
6040
|
showAll?: boolean;
|
|
6066
6041
|
/** @default true */
|
|
6067
6042
|
publishedOnly?: boolean;
|
|
6068
|
-
}, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase[], any
|
|
6043
|
+
}, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase[], any>>;
|
|
6069
6044
|
/**
|
|
6070
6045
|
* No description
|
|
6071
6046
|
*
|
|
@@ -6077,7 +6052,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6077
6052
|
* @response `200` `DocumentTemplate` Success
|
|
6078
6053
|
* @response `404` `ProblemDetails` Not Found
|
|
6079
6054
|
*/
|
|
6080
|
-
getDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplate, any
|
|
6055
|
+
getDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplate, any>>;
|
|
6081
6056
|
/**
|
|
6082
6057
|
* No description
|
|
6083
6058
|
*
|
|
@@ -6091,7 +6066,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6091
6066
|
* @response `404` `ProblemDetails` Not Found
|
|
6092
6067
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6093
6068
|
*/
|
|
6094
|
-
replaceDocumentTemplate: (id: string, data: UpdateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any
|
|
6069
|
+
replaceDocumentTemplate: (id: string, data: UpdateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any>>;
|
|
6095
6070
|
/**
|
|
6096
6071
|
* No description
|
|
6097
6072
|
*
|
|
@@ -6104,7 +6079,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6104
6079
|
* @response `401` `ProblemDetails` Unauthorized
|
|
6105
6080
|
* @response `404` `ProblemDetails` Not Found
|
|
6106
6081
|
*/
|
|
6107
|
-
deleteDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
6082
|
+
deleteDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6108
6083
|
/**
|
|
6109
6084
|
* No description
|
|
6110
6085
|
*
|
|
@@ -6117,7 +6092,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6117
6092
|
* @response `401` `ProblemDetails` Unauthorized
|
|
6118
6093
|
* @response `404` `ProblemDetails` Not Found
|
|
6119
6094
|
*/
|
|
6120
|
-
restoreDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
6095
|
+
restoreDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6121
6096
|
/**
|
|
6122
6097
|
* No description
|
|
6123
6098
|
*
|
|
@@ -6128,7 +6103,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6128
6103
|
* @secure
|
|
6129
6104
|
* @response `200` `(DocumentTemplateVersion)[]` Success
|
|
6130
6105
|
*/
|
|
6131
|
-
getDocumentTemplateVersions: (documentId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion[], any
|
|
6106
|
+
getDocumentTemplateVersions: (documentId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion[], any>>;
|
|
6132
6107
|
/**
|
|
6133
6108
|
* No description
|
|
6134
6109
|
*
|
|
@@ -6139,7 +6114,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6139
6114
|
* @secure
|
|
6140
6115
|
* @response `200` `DocumentTemplateVersion` Success
|
|
6141
6116
|
*/
|
|
6142
|
-
createDocumentTemplateVersion: (documentId: string, data: DocumentTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any
|
|
6117
|
+
createDocumentTemplateVersion: (documentId: string, data: DocumentTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
|
|
6143
6118
|
/**
|
|
6144
6119
|
* No description
|
|
6145
6120
|
*
|
|
@@ -6150,7 +6125,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6150
6125
|
* @secure
|
|
6151
6126
|
* @response `200` `DocumentTemplateVersion` Success
|
|
6152
6127
|
*/
|
|
6153
|
-
getDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any
|
|
6128
|
+
getDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
|
|
6154
6129
|
/**
|
|
6155
6130
|
* No description
|
|
6156
6131
|
*
|
|
@@ -6161,7 +6136,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6161
6136
|
* @secure
|
|
6162
6137
|
* @response `200` `DocumentTemplateVersion` Success
|
|
6163
6138
|
*/
|
|
6164
|
-
replaceDocumentTemplateVersion: (documentId: string, id: string, data: DocumentTemplateVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any
|
|
6139
|
+
replaceDocumentTemplateVersion: (documentId: string, id: string, data: DocumentTemplateVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
|
|
6165
6140
|
/**
|
|
6166
6141
|
* No description
|
|
6167
6142
|
*
|
|
@@ -6172,7 +6147,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6172
6147
|
* @secure
|
|
6173
6148
|
* @response `200` `DocumentTemplateVersion` Success
|
|
6174
6149
|
*/
|
|
6175
|
-
deleteDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any
|
|
6150
|
+
deleteDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
|
|
6176
6151
|
/**
|
|
6177
6152
|
* No description
|
|
6178
6153
|
*
|
|
@@ -6198,7 +6173,9 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6198
6173
|
* @default 20
|
|
6199
6174
|
*/
|
|
6200
6175
|
pageSize?: number;
|
|
6201
|
-
|
|
6176
|
+
/** @format uuid */
|
|
6177
|
+
loanId?: string;
|
|
6178
|
+
}, params?: RequestParams) => Promise<AxiosResponse<EncompassPackageList, any>>;
|
|
6202
6179
|
/**
|
|
6203
6180
|
* No description
|
|
6204
6181
|
*
|
|
@@ -6210,7 +6187,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6210
6187
|
* @response `401` `EncompassError` Unauthorized
|
|
6211
6188
|
* @response `500` `EncompassError` Server Error
|
|
6212
6189
|
*/
|
|
6213
|
-
getUserRecipients: (params?: RequestParams) => Promise<AxiosResponse<EncompassRecipientItem[], any
|
|
6190
|
+
getUserRecipients: (params?: RequestParams) => Promise<AxiosResponse<EncompassRecipientItem[], any>>;
|
|
6214
6191
|
/**
|
|
6215
6192
|
* No description
|
|
6216
6193
|
*
|
|
@@ -6225,7 +6202,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6225
6202
|
* @response `404` `EncompassError` Not Found
|
|
6226
6203
|
* @response `500` `EncompassError` Server Error
|
|
6227
6204
|
*/
|
|
6228
|
-
createEncompassSession: (data: CreateSessionRequest, params?: RequestParams) => Promise<AxiosResponse<CreateSession, any
|
|
6205
|
+
createEncompassSession: (data: CreateSessionRequest, params?: RequestParams) => Promise<AxiosResponse<CreateSession, any>>;
|
|
6229
6206
|
/**
|
|
6230
6207
|
* No description
|
|
6231
6208
|
*
|
|
@@ -6245,7 +6222,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6245
6222
|
sortDirection?: string;
|
|
6246
6223
|
/** @default false */
|
|
6247
6224
|
includeDeleted?: boolean;
|
|
6248
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FilePaginated, any
|
|
6225
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FilePaginated, any>>;
|
|
6249
6226
|
/**
|
|
6250
6227
|
* No description
|
|
6251
6228
|
*
|
|
@@ -6263,7 +6240,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6263
6240
|
file?: File;
|
|
6264
6241
|
isPublic?: boolean;
|
|
6265
6242
|
bucket?: string;
|
|
6266
|
-
}, params?: RequestParams) => Promise<AxiosResponse<File, any
|
|
6243
|
+
}, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
|
|
6267
6244
|
/**
|
|
6268
6245
|
* No description
|
|
6269
6246
|
*
|
|
@@ -6274,7 +6251,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6274
6251
|
* @secure
|
|
6275
6252
|
* @response `201` `File` Created
|
|
6276
6253
|
*/
|
|
6277
|
-
getFileById: (id: string, params?: RequestParams) => Promise<AxiosResponse<File, any
|
|
6254
|
+
getFileById: (id: string, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
|
|
6278
6255
|
/**
|
|
6279
6256
|
* No description
|
|
6280
6257
|
*
|
|
@@ -6286,7 +6263,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6286
6263
|
* @response `200` `string` Success
|
|
6287
6264
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6288
6265
|
*/
|
|
6289
|
-
replaceFile: (id: string, data: FileRequest, params?: RequestParams) => Promise<AxiosResponse<string, any
|
|
6266
|
+
replaceFile: (id: string, data: FileRequest, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
6290
6267
|
/**
|
|
6291
6268
|
* No description
|
|
6292
6269
|
*
|
|
@@ -6297,7 +6274,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6297
6274
|
* @secure
|
|
6298
6275
|
* @response `204` `void` No Content
|
|
6299
6276
|
*/
|
|
6300
|
-
deleteFile: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
6277
|
+
deleteFile: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6301
6278
|
/**
|
|
6302
6279
|
* No description
|
|
6303
6280
|
*
|
|
@@ -6315,7 +6292,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6315
6292
|
pageNumber?: number;
|
|
6316
6293
|
sortBy?: string;
|
|
6317
6294
|
sortDirection?: string;
|
|
6318
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FilePaginated, any
|
|
6295
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FilePaginated, any>>;
|
|
6319
6296
|
/**
|
|
6320
6297
|
* No description
|
|
6321
6298
|
*
|
|
@@ -6328,7 +6305,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6328
6305
|
*/
|
|
6329
6306
|
getForms: (query?: {
|
|
6330
6307
|
showAll?: boolean;
|
|
6331
|
-
}, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms[], any
|
|
6308
|
+
}, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms[], any>>;
|
|
6332
6309
|
/**
|
|
6333
6310
|
* No description
|
|
6334
6311
|
*
|
|
@@ -6340,7 +6317,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6340
6317
|
* @response `201` `Form` Created
|
|
6341
6318
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6342
6319
|
*/
|
|
6343
|
-
createForm: (data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<Form, any
|
|
6320
|
+
createForm: (data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<Form, any>>;
|
|
6344
6321
|
/**
|
|
6345
6322
|
* No description
|
|
6346
6323
|
*
|
|
@@ -6351,7 +6328,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6351
6328
|
* @secure
|
|
6352
6329
|
* @response `200` `Form` Success
|
|
6353
6330
|
*/
|
|
6354
|
-
getForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<Form, any
|
|
6331
|
+
getForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<Form, any>>;
|
|
6355
6332
|
/**
|
|
6356
6333
|
* No description
|
|
6357
6334
|
*
|
|
@@ -6363,7 +6340,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6363
6340
|
* @response `200` `Form` Success
|
|
6364
6341
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6365
6342
|
*/
|
|
6366
|
-
replaceForm: (id: string, data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<Form, any
|
|
6343
|
+
replaceForm: (id: string, data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<Form, any>>;
|
|
6367
6344
|
/**
|
|
6368
6345
|
* No description
|
|
6369
6346
|
*
|
|
@@ -6374,7 +6351,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6374
6351
|
* @secure
|
|
6375
6352
|
* @response `204` `void` No Content
|
|
6376
6353
|
*/
|
|
6377
|
-
deleteForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
6354
|
+
deleteForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6378
6355
|
/**
|
|
6379
6356
|
* No description
|
|
6380
6357
|
*
|
|
@@ -6385,7 +6362,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6385
6362
|
* @secure
|
|
6386
6363
|
* @response `200` `Form` Success
|
|
6387
6364
|
*/
|
|
6388
|
-
restoreForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<Form, any
|
|
6365
|
+
restoreForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<Form, any>>;
|
|
6389
6366
|
/**
|
|
6390
6367
|
* No description
|
|
6391
6368
|
*
|
|
@@ -6400,7 +6377,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6400
6377
|
/** @format binary */
|
|
6401
6378
|
file?: File;
|
|
6402
6379
|
name?: string;
|
|
6403
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionFile, any
|
|
6380
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionFile, any>>;
|
|
6404
6381
|
/**
|
|
6405
6382
|
* No description
|
|
6406
6383
|
*
|
|
@@ -6411,7 +6388,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6411
6388
|
* @secure
|
|
6412
6389
|
* @response `204` `void` No Content
|
|
6413
6390
|
*/
|
|
6414
|
-
deleteFormSubmissionFile: (formSubmissionFileId: string, formSubmissionId: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
6391
|
+
deleteFormSubmissionFile: (formSubmissionFileId: string, formSubmissionId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6415
6392
|
/**
|
|
6416
6393
|
* No description
|
|
6417
6394
|
*
|
|
@@ -6425,7 +6402,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6425
6402
|
downloadFormSubmissionFile: (formSubmissionFileId: string, formSubmissionId: string, query?: {
|
|
6426
6403
|
/** @format uuid */
|
|
6427
6404
|
siteConfigurationId?: string;
|
|
6428
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FileWithBytes, any
|
|
6405
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FileWithBytes, any>>;
|
|
6429
6406
|
/**
|
|
6430
6407
|
* No description
|
|
6431
6408
|
*
|
|
@@ -6443,7 +6420,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6443
6420
|
pageNumber?: number;
|
|
6444
6421
|
sortBy?: string;
|
|
6445
6422
|
sortDirection?: string;
|
|
6446
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionPaginated, any
|
|
6423
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionPaginated, any>>;
|
|
6447
6424
|
/**
|
|
6448
6425
|
* No description
|
|
6449
6426
|
*
|
|
@@ -6456,7 +6433,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6456
6433
|
*/
|
|
6457
6434
|
createFormSubmission: (data: FormSubmissionRequest, query?: {
|
|
6458
6435
|
formID?: string;
|
|
6459
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any
|
|
6436
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any>>;
|
|
6460
6437
|
/**
|
|
6461
6438
|
* No description
|
|
6462
6439
|
*
|
|
@@ -6467,7 +6444,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6467
6444
|
* @secure
|
|
6468
6445
|
* @response `200` `FormSubmission` Success
|
|
6469
6446
|
*/
|
|
6470
|
-
getFormSubmission: (id: string, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any
|
|
6447
|
+
getFormSubmission: (id: string, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any>>;
|
|
6471
6448
|
/**
|
|
6472
6449
|
* No description
|
|
6473
6450
|
*
|
|
@@ -6478,7 +6455,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6478
6455
|
* @secure
|
|
6479
6456
|
* @response `200` `FormSubmission` Success
|
|
6480
6457
|
*/
|
|
6481
|
-
replaceFormSubmission: (id: string, data: FormSubmissionRequest, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any
|
|
6458
|
+
replaceFormSubmission: (id: string, data: FormSubmissionRequest, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any>>;
|
|
6482
6459
|
/**
|
|
6483
6460
|
* No description
|
|
6484
6461
|
*
|
|
@@ -6489,7 +6466,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6489
6466
|
* @secure
|
|
6490
6467
|
* @response `204` `void` No Content
|
|
6491
6468
|
*/
|
|
6492
|
-
deleteFormSubmission: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
6469
|
+
deleteFormSubmission: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6493
6470
|
/**
|
|
6494
6471
|
* No description
|
|
6495
6472
|
*
|
|
@@ -6507,7 +6484,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6507
6484
|
pageNumber?: number;
|
|
6508
6485
|
sortBy?: string;
|
|
6509
6486
|
sortDirection?: string;
|
|
6510
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionPaginated, any
|
|
6487
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionPaginated, any>>;
|
|
6511
6488
|
/**
|
|
6512
6489
|
* No description
|
|
6513
6490
|
*
|
|
@@ -6518,7 +6495,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6518
6495
|
* @secure
|
|
6519
6496
|
* @response `200` `(FormVersion)[]` Success
|
|
6520
6497
|
*/
|
|
6521
|
-
getFormVersions: (formId: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion[], any
|
|
6498
|
+
getFormVersions: (formId: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion[], any>>;
|
|
6522
6499
|
/**
|
|
6523
6500
|
* No description
|
|
6524
6501
|
*
|
|
@@ -6529,7 +6506,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6529
6506
|
* @secure
|
|
6530
6507
|
* @response `200` `FormVersion` Success
|
|
6531
6508
|
*/
|
|
6532
|
-
createFormVersion: (formId: string, data: FormVersionRequest, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any
|
|
6509
|
+
createFormVersion: (formId: string, data: FormVersionRequest, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
|
|
6533
6510
|
/**
|
|
6534
6511
|
* No description
|
|
6535
6512
|
*
|
|
@@ -6540,7 +6517,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6540
6517
|
* @secure
|
|
6541
6518
|
* @response `200` `FormVersion` Success
|
|
6542
6519
|
*/
|
|
6543
|
-
getFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any
|
|
6520
|
+
getFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
|
|
6544
6521
|
/**
|
|
6545
6522
|
* No description
|
|
6546
6523
|
*
|
|
@@ -6551,7 +6528,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6551
6528
|
* @secure
|
|
6552
6529
|
* @response `200` `FormVersion` Success
|
|
6553
6530
|
*/
|
|
6554
|
-
replaceFormVersion: (formId: string, id: string, data: FormVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any
|
|
6531
|
+
replaceFormVersion: (formId: string, id: string, data: FormVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
|
|
6555
6532
|
/**
|
|
6556
6533
|
* No description
|
|
6557
6534
|
*
|
|
@@ -6562,7 +6539,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6562
6539
|
* @secure
|
|
6563
6540
|
* @response `200` `FormVersion` Success
|
|
6564
6541
|
*/
|
|
6565
|
-
deleteFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any
|
|
6542
|
+
deleteFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
|
|
6566
6543
|
/**
|
|
6567
6544
|
* No description
|
|
6568
6545
|
*
|
|
@@ -6573,7 +6550,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6573
6550
|
* @secure
|
|
6574
6551
|
* @response `200` `Record<string,any>` Success
|
|
6575
6552
|
*/
|
|
6576
|
-
getLoanData: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Record<string, any>, any
|
|
6553
|
+
getLoanData: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Record<string, any>, any>>;
|
|
6577
6554
|
/**
|
|
6578
6555
|
* No description
|
|
6579
6556
|
*
|
|
@@ -6586,7 +6563,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6586
6563
|
* @response `200` `string` Success
|
|
6587
6564
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6588
6565
|
*/
|
|
6589
|
-
updateLoanConsentAndCustomFieldsObsolete: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any
|
|
6566
|
+
updateLoanConsentAndCustomFieldsObsolete: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
6590
6567
|
/**
|
|
6591
6568
|
* No description
|
|
6592
6569
|
*
|
|
@@ -6597,7 +6574,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6597
6574
|
* @secure
|
|
6598
6575
|
* @response `200` `GetReport` Success
|
|
6599
6576
|
*/
|
|
6600
|
-
getLoansReport: (data: GetReportRequest, params?: RequestParams) => Promise<AxiosResponse<GetReport, any
|
|
6577
|
+
getLoansReport: (data: GetReportRequest, params?: RequestParams) => Promise<AxiosResponse<GetReport, any>>;
|
|
6601
6578
|
/**
|
|
6602
6579
|
* No description
|
|
6603
6580
|
*
|
|
@@ -6614,7 +6591,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6614
6591
|
createLoan: (data: any, query?: {
|
|
6615
6592
|
/** @default false */
|
|
6616
6593
|
isPatch?: boolean;
|
|
6617
|
-
}, params?: RequestParams) => Promise<AxiosResponse<string, any
|
|
6594
|
+
}, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
6618
6595
|
/**
|
|
6619
6596
|
* No description
|
|
6620
6597
|
*
|
|
@@ -6630,7 +6607,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6630
6607
|
createLoanInternal: (data: any, query?: {
|
|
6631
6608
|
/** @default false */
|
|
6632
6609
|
isPatch?: boolean;
|
|
6633
|
-
}, params?: RequestParams) => Promise<AxiosResponse<string, any
|
|
6610
|
+
}, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
6634
6611
|
/**
|
|
6635
6612
|
* No description
|
|
6636
6613
|
*
|
|
@@ -6642,7 +6619,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6642
6619
|
* @response `200` `string` Success
|
|
6643
6620
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6644
6621
|
*/
|
|
6645
|
-
updateLoanCustomFields: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any
|
|
6622
|
+
updateLoanCustomFields: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
6646
6623
|
/**
|
|
6647
6624
|
* No description
|
|
6648
6625
|
*
|
|
@@ -6655,7 +6632,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6655
6632
|
* @response `202` `string` Accepted
|
|
6656
6633
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6657
6634
|
*/
|
|
6658
|
-
updateLoanConsent: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any
|
|
6635
|
+
updateLoanConsent: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
6659
6636
|
/**
|
|
6660
6637
|
* No description
|
|
6661
6638
|
*
|
|
@@ -6666,7 +6643,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6666
6643
|
* @secure
|
|
6667
6644
|
* @response `200` `(DocumentData)[]` Success
|
|
6668
6645
|
*/
|
|
6669
|
-
getTaskDocumentsByLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentData[], any
|
|
6646
|
+
getTaskDocumentsByLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentData[], any>>;
|
|
6670
6647
|
/**
|
|
6671
6648
|
* No description
|
|
6672
6649
|
*
|
|
@@ -6680,7 +6657,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6680
6657
|
getLoanDocumentContent: (loanId: string, documentId: string, query?: {
|
|
6681
6658
|
/** @default "base64" */
|
|
6682
6659
|
contentType?: string;
|
|
6683
|
-
}, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
6660
|
+
}, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6684
6661
|
/**
|
|
6685
6662
|
* No description
|
|
6686
6663
|
*
|
|
@@ -6691,7 +6668,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6691
6668
|
* @secure
|
|
6692
6669
|
* @response `204` `void` No Content
|
|
6693
6670
|
*/
|
|
6694
|
-
getLoanRecipients: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
6671
|
+
getLoanRecipients: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6695
6672
|
/**
|
|
6696
6673
|
* No description
|
|
6697
6674
|
*
|
|
@@ -6702,7 +6679,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6702
6679
|
* @secure
|
|
6703
6680
|
* @response `200` `(PreliminaryCondition)[]` Success
|
|
6704
6681
|
*/
|
|
6705
|
-
getPreliminaryConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<PreliminaryCondition[], any
|
|
6682
|
+
getPreliminaryConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<PreliminaryCondition[], any>>;
|
|
6706
6683
|
/**
|
|
6707
6684
|
* No description
|
|
6708
6685
|
*
|
|
@@ -6713,7 +6690,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6713
6690
|
* @secure
|
|
6714
6691
|
* @response `200` `(UnderwritingCondition)[]` Success
|
|
6715
6692
|
*/
|
|
6716
|
-
getUnderwritingConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UnderwritingCondition[], any
|
|
6693
|
+
getUnderwritingConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UnderwritingCondition[], any>>;
|
|
6717
6694
|
/**
|
|
6718
6695
|
* No description
|
|
6719
6696
|
*
|
|
@@ -6724,7 +6701,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6724
6701
|
* @secure
|
|
6725
6702
|
* @response `200` `string` Success
|
|
6726
6703
|
*/
|
|
6727
|
-
getLoanEmbeddedSigningLink: (envelopeId: string, userName: string, email: string, params?: RequestParams) => Promise<AxiosResponse<string, any
|
|
6704
|
+
getLoanEmbeddedSigningLink: (envelopeId: string, userName: string, email: string, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
6728
6705
|
/**
|
|
6729
6706
|
* No description
|
|
6730
6707
|
*
|
|
@@ -6736,7 +6713,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6736
6713
|
* @secure
|
|
6737
6714
|
* @response `200` `DocumentDataRequest` Success
|
|
6738
6715
|
*/
|
|
6739
|
-
createLegacyLoanDocument: (data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any
|
|
6716
|
+
createLegacyLoanDocument: (data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any>>;
|
|
6740
6717
|
/**
|
|
6741
6718
|
* No description
|
|
6742
6719
|
*
|
|
@@ -6753,7 +6730,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6753
6730
|
createEditDraftForLoan: (loanId: string, query?: {
|
|
6754
6731
|
/** @default false */
|
|
6755
6732
|
isCoBorrower?: boolean;
|
|
6756
|
-
}, params?: RequestParams) => Promise<AxiosResponse<Draft, any
|
|
6733
|
+
}, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
|
|
6757
6734
|
/**
|
|
6758
6735
|
* No description
|
|
6759
6736
|
*
|
|
@@ -6769,7 +6746,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6769
6746
|
file?: File;
|
|
6770
6747
|
/** @format int32 */
|
|
6771
6748
|
weight?: number;
|
|
6772
|
-
}, params?: RequestParams) => Promise<AxiosResponse<ListingFile, any
|
|
6749
|
+
}, params?: RequestParams) => Promise<AxiosResponse<ListingFile, any>>;
|
|
6773
6750
|
/**
|
|
6774
6751
|
* No description
|
|
6775
6752
|
*
|
|
@@ -6780,7 +6757,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6780
6757
|
* @secure
|
|
6781
6758
|
* @response `200` `ListingFile` Success
|
|
6782
6759
|
*/
|
|
6783
|
-
updateListingFiles: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingFile, any
|
|
6760
|
+
updateListingFiles: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingFile, any>>;
|
|
6784
6761
|
/**
|
|
6785
6762
|
* No description
|
|
6786
6763
|
*
|
|
@@ -6791,7 +6768,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6791
6768
|
* @secure
|
|
6792
6769
|
* @response `204` `Listing` No Content
|
|
6793
6770
|
*/
|
|
6794
|
-
removeListingFile: (listingId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any
|
|
6771
|
+
removeListingFile: (listingId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
|
|
6795
6772
|
/**
|
|
6796
6773
|
* No description
|
|
6797
6774
|
*
|
|
@@ -6809,7 +6786,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6809
6786
|
file?: File;
|
|
6810
6787
|
/** @format int32 */
|
|
6811
6788
|
weight?: number;
|
|
6812
|
-
}, params?: RequestParams) => Promise<AxiosResponse<ListingPhoto, any
|
|
6789
|
+
}, params?: RequestParams) => Promise<AxiosResponse<ListingPhoto, any>>;
|
|
6813
6790
|
/**
|
|
6814
6791
|
* No description
|
|
6815
6792
|
*
|
|
@@ -6820,7 +6797,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6820
6797
|
* @secure
|
|
6821
6798
|
* @response `200` `(ListingPhoto)[]` Success
|
|
6822
6799
|
*/
|
|
6823
|
-
updateListingPhotos: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingPhoto[], any
|
|
6800
|
+
updateListingPhotos: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingPhoto[], any>>;
|
|
6824
6801
|
/**
|
|
6825
6802
|
* No description
|
|
6826
6803
|
*
|
|
@@ -6831,7 +6808,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6831
6808
|
* @secure
|
|
6832
6809
|
* @response `204` `Listing` No Content
|
|
6833
6810
|
*/
|
|
6834
|
-
removeListingPhoto: (listingId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any
|
|
6811
|
+
removeListingPhoto: (listingId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
|
|
6835
6812
|
/**
|
|
6836
6813
|
* No description
|
|
6837
6814
|
*
|
|
@@ -6849,7 +6826,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6849
6826
|
pageNumber?: number;
|
|
6850
6827
|
sortBy?: string;
|
|
6851
6828
|
sortDirection?: string;
|
|
6852
|
-
}, params?: RequestParams) => Promise<AxiosResponse<ListingPaginated, any
|
|
6829
|
+
}, params?: RequestParams) => Promise<AxiosResponse<ListingPaginated, any>>;
|
|
6853
6830
|
/**
|
|
6854
6831
|
* No description
|
|
6855
6832
|
*
|
|
@@ -6860,7 +6837,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6860
6837
|
* @secure
|
|
6861
6838
|
* @response `201` `Listing` Created
|
|
6862
6839
|
*/
|
|
6863
|
-
createListing: (data: ListingRequest, params?: RequestParams) => Promise<AxiosResponse<Listing, any
|
|
6840
|
+
createListing: (data: ListingRequest, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
|
|
6864
6841
|
/**
|
|
6865
6842
|
* No description
|
|
6866
6843
|
*
|
|
@@ -6871,7 +6848,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6871
6848
|
* @secure
|
|
6872
6849
|
* @response `200` `Listing` Success
|
|
6873
6850
|
*/
|
|
6874
|
-
getListingBySlug: (slug: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any
|
|
6851
|
+
getListingBySlug: (slug: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
|
|
6875
6852
|
/**
|
|
6876
6853
|
* No description
|
|
6877
6854
|
*
|
|
@@ -6882,7 +6859,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6882
6859
|
* @secure
|
|
6883
6860
|
* @response `200` `Listing` Success
|
|
6884
6861
|
*/
|
|
6885
|
-
getListing: (id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any
|
|
6862
|
+
getListing: (id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
|
|
6886
6863
|
/**
|
|
6887
6864
|
* No description
|
|
6888
6865
|
*
|
|
@@ -6893,7 +6870,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6893
6870
|
* @secure
|
|
6894
6871
|
* @response `200` `Listing` Success
|
|
6895
6872
|
*/
|
|
6896
|
-
replaceListing: (id: string, data: ListingRequest, params?: RequestParams) => Promise<AxiosResponse<Listing, any
|
|
6873
|
+
replaceListing: (id: string, data: ListingRequest, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
|
|
6897
6874
|
/**
|
|
6898
6875
|
* No description
|
|
6899
6876
|
*
|
|
@@ -6904,7 +6881,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6904
6881
|
* @secure
|
|
6905
6882
|
* @response `204` `void` No Content
|
|
6906
6883
|
*/
|
|
6907
|
-
deleteListing: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
6884
|
+
deleteListing: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6908
6885
|
/**
|
|
6909
6886
|
* No description
|
|
6910
6887
|
*
|
|
@@ -6922,7 +6899,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6922
6899
|
pageNumber?: number;
|
|
6923
6900
|
sortBy?: string;
|
|
6924
6901
|
sortDirection?: string;
|
|
6925
|
-
}, params?: RequestParams) => Promise<AxiosResponse<ListingPaginated, any
|
|
6902
|
+
}, params?: RequestParams) => Promise<AxiosResponse<ListingPaginated, any>>;
|
|
6926
6903
|
/**
|
|
6927
6904
|
* No description
|
|
6928
6905
|
*
|
|
@@ -6936,7 +6913,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6936
6913
|
updateListingBackgroundImage: (id: string, data: {
|
|
6937
6914
|
/** @format binary */
|
|
6938
6915
|
file?: File;
|
|
6939
|
-
}, params?: RequestParams) => Promise<AxiosResponse<File, any
|
|
6916
|
+
}, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
|
|
6940
6917
|
/**
|
|
6941
6918
|
* No description
|
|
6942
6919
|
*
|
|
@@ -6947,7 +6924,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6947
6924
|
* @secure
|
|
6948
6925
|
* @response `204` `void` No Content
|
|
6949
6926
|
*/
|
|
6950
|
-
deleteListingBackgroundImage: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
6927
|
+
deleteListingBackgroundImage: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6951
6928
|
/**
|
|
6952
6929
|
* No description
|
|
6953
6930
|
*
|
|
@@ -6958,7 +6935,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6958
6935
|
* @secure
|
|
6959
6936
|
* @response `200` `File` Success
|
|
6960
6937
|
*/
|
|
6961
|
-
getListingOpenHouseFlyer: (id: string, params?: RequestParams) => Promise<AxiosResponse<File, any
|
|
6938
|
+
getListingOpenHouseFlyer: (id: string, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
|
|
6962
6939
|
/**
|
|
6963
6940
|
* No description
|
|
6964
6941
|
*
|
|
@@ -6969,7 +6946,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6969
6946
|
* @secure
|
|
6970
6947
|
* @response `200` `RunLOCalculation` Success
|
|
6971
6948
|
*/
|
|
6972
|
-
getLoanCalculator: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any
|
|
6949
|
+
getLoanCalculator: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any>>;
|
|
6973
6950
|
/**
|
|
6974
6951
|
* No description
|
|
6975
6952
|
*
|
|
@@ -6982,7 +6959,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6982
6959
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6983
6960
|
* @response `423` `UnprocessableEntity` Client Error
|
|
6984
6961
|
*/
|
|
6985
|
-
runLoanCalculator: (loanId: string, data: RunLOCalculationRequest, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any
|
|
6962
|
+
runLoanCalculator: (loanId: string, data: RunLOCalculationRequest, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any>>;
|
|
6986
6963
|
/**
|
|
6987
6964
|
* No description
|
|
6988
6965
|
*
|
|
@@ -6993,7 +6970,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6993
6970
|
* @secure
|
|
6994
6971
|
* @response `200` `LoanComparison` Success
|
|
6995
6972
|
*/
|
|
6996
|
-
getLoanComparisons: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<LoanComparison, any
|
|
6973
|
+
getLoanComparisons: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<LoanComparison, any>>;
|
|
6997
6974
|
/**
|
|
6998
6975
|
* No description
|
|
6999
6976
|
*
|
|
@@ -7006,7 +6983,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7006
6983
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7007
6984
|
* @response `423` `UnprocessableEntity` Client Error
|
|
7008
6985
|
*/
|
|
7009
|
-
createLoanComparison: (loanId: string, index: number, data: LoanComparisonScenario, params?: RequestParams) => Promise<AxiosResponse<LoanComparisonScenario, any
|
|
6986
|
+
createLoanComparison: (loanId: string, index: number, data: LoanComparisonScenario, params?: RequestParams) => Promise<AxiosResponse<LoanComparisonScenario, any>>;
|
|
7010
6987
|
/**
|
|
7011
6988
|
* No description
|
|
7012
6989
|
*
|
|
@@ -7017,7 +6994,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7017
6994
|
* @secure
|
|
7018
6995
|
* @response `204` `void` No Content
|
|
7019
6996
|
*/
|
|
7020
|
-
deleteLoanComparison: (loanId: string, index: number, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
6997
|
+
deleteLoanComparison: (loanId: string, index: number, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7021
6998
|
/**
|
|
7022
6999
|
* No description
|
|
7023
7000
|
*
|
|
@@ -7029,7 +7006,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7029
7006
|
* @response `204` `void` No Content
|
|
7030
7007
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7031
7008
|
*/
|
|
7032
|
-
createLoanComparisonPdf: (loanId: string, data: PostLoanComparisonPdfRequest, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
7009
|
+
createLoanComparisonPdf: (loanId: string, data: PostLoanComparisonPdfRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7033
7010
|
/**
|
|
7034
7011
|
* No description
|
|
7035
7012
|
*
|
|
@@ -7040,7 +7017,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7040
7017
|
* @secure
|
|
7041
7018
|
* @response `200` `(string)[]` Success
|
|
7042
7019
|
*/
|
|
7043
|
-
getLoanDocumentBuckets: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<string[], any
|
|
7020
|
+
getLoanDocumentBuckets: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<string[], any>>;
|
|
7044
7021
|
/**
|
|
7045
7022
|
* No description
|
|
7046
7023
|
*
|
|
@@ -7051,7 +7028,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7051
7028
|
* @secure
|
|
7052
7029
|
* @response `201` `(string)[]` Created
|
|
7053
7030
|
*/
|
|
7054
|
-
createLoanDocumentBuckets: (loanId: string, data: string[], params?: RequestParams) => Promise<AxiosResponse<string[], any
|
|
7031
|
+
createLoanDocumentBuckets: (loanId: string, data: string[], params?: RequestParams) => Promise<AxiosResponse<string[], any>>;
|
|
7055
7032
|
/**
|
|
7056
7033
|
* No description
|
|
7057
7034
|
*
|
|
@@ -7066,7 +7043,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7066
7043
|
getLoanDocument: (loanId: string, documentId: string, query?: {
|
|
7067
7044
|
/** @default false */
|
|
7068
7045
|
preview?: boolean;
|
|
7069
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any
|
|
7046
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any>>;
|
|
7070
7047
|
/**
|
|
7071
7048
|
* No description
|
|
7072
7049
|
*
|
|
@@ -7084,7 +7061,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7084
7061
|
pageNumber?: number;
|
|
7085
7062
|
sortBy?: string;
|
|
7086
7063
|
sortDirection?: string;
|
|
7087
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanDocumentSearchPaginated, any
|
|
7064
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanDocumentSearchPaginated, any>>;
|
|
7088
7065
|
/**
|
|
7089
7066
|
* @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).
|
|
7090
7067
|
*
|
|
@@ -7098,7 +7075,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7098
7075
|
getLoanDocumentFolders: (loanId: string, data: DocumentFoldersRequest, query?: {
|
|
7099
7076
|
/** @default false */
|
|
7100
7077
|
folderNamesOnly?: boolean;
|
|
7101
|
-
}, params?: RequestParams) => Promise<AxiosResponse<DocumentFolder[], any
|
|
7078
|
+
}, params?: RequestParams) => Promise<AxiosResponse<DocumentFolder[], any>>;
|
|
7102
7079
|
/**
|
|
7103
7080
|
* No description
|
|
7104
7081
|
*
|
|
@@ -7110,7 +7087,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7110
7087
|
* @response `200` `string` Success
|
|
7111
7088
|
* @response `404` `ProblemDetails` Not Found
|
|
7112
7089
|
*/
|
|
7113
|
-
downloadLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<string, any
|
|
7090
|
+
downloadLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
7114
7091
|
/**
|
|
7115
7092
|
* No description
|
|
7116
7093
|
*
|
|
@@ -7128,7 +7105,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7128
7105
|
/** @format binary */
|
|
7129
7106
|
file?: File;
|
|
7130
7107
|
bucket?: string;
|
|
7131
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any
|
|
7108
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any>>;
|
|
7132
7109
|
/**
|
|
7133
7110
|
* No description
|
|
7134
7111
|
*
|
|
@@ -7141,7 +7118,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7141
7118
|
* @response `404` `ProblemDetails` Not Found
|
|
7142
7119
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7143
7120
|
*/
|
|
7144
|
-
retryFailedLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any
|
|
7121
|
+
retryFailedLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any>>;
|
|
7145
7122
|
/**
|
|
7146
7123
|
* No description
|
|
7147
7124
|
*
|
|
@@ -7152,7 +7129,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7152
7129
|
* @secure
|
|
7153
7130
|
* @response `200` `DocumentDataRequest` Success
|
|
7154
7131
|
*/
|
|
7155
|
-
generateLoanDocument: (loanId: string, data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any
|
|
7132
|
+
generateLoanDocument: (loanId: string, data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any>>;
|
|
7156
7133
|
/**
|
|
7157
7134
|
* No description
|
|
7158
7135
|
*
|
|
@@ -7165,7 +7142,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7165
7142
|
* @response `400` `ProblemDetails` Bad Request
|
|
7166
7143
|
* @response `404` `ProblemDetails` Not Found
|
|
7167
7144
|
*/
|
|
7168
|
-
sendLoanDocuments: (loanId: string, data: SendLoanDocumentsRequest, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
7145
|
+
sendLoanDocuments: (loanId: string, data: SendLoanDocumentsRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7169
7146
|
/**
|
|
7170
7147
|
* @description Fetches all documents from Encompass that don't exist locally and stores them in S3
|
|
7171
7148
|
*
|
|
@@ -7177,7 +7154,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7177
7154
|
* @response `200` `DocumentSync` Success
|
|
7178
7155
|
* @response `404` `ProblemDetails` Not Found
|
|
7179
7156
|
*/
|
|
7180
|
-
syncLoanDocumentsFromLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentSync, any
|
|
7157
|
+
syncLoanDocumentsFromLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentSync, any>>;
|
|
7181
7158
|
/**
|
|
7182
7159
|
* @description Re-attempts to push a failed document to LOS
|
|
7183
7160
|
*
|
|
@@ -7190,7 +7167,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7190
7167
|
* @response `404` `ProblemDetails` Not Found
|
|
7191
7168
|
* @response `423` `ProblemDetails` Client Error
|
|
7192
7169
|
*/
|
|
7193
|
-
retrySyncLoanDocumentToLos: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
7170
|
+
retrySyncLoanDocumentToLos: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7194
7171
|
/**
|
|
7195
7172
|
* No description
|
|
7196
7173
|
*
|
|
@@ -7201,7 +7178,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7201
7178
|
* @secure
|
|
7202
7179
|
* @response `201` `Draft` Created
|
|
7203
7180
|
*/
|
|
7204
|
-
createLoanDraft: (data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any
|
|
7181
|
+
createLoanDraft: (data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
|
|
7205
7182
|
/**
|
|
7206
7183
|
* No description
|
|
7207
7184
|
*
|
|
@@ -7212,7 +7189,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7212
7189
|
* @secure
|
|
7213
7190
|
* @response `200` `(DraftContent)[]` Success
|
|
7214
7191
|
*/
|
|
7215
|
-
getLoanDrafts: (params?: RequestParams) => Promise<AxiosResponse<DraftContent[], any
|
|
7192
|
+
getLoanDrafts: (params?: RequestParams) => Promise<AxiosResponse<DraftContent[], any>>;
|
|
7216
7193
|
/**
|
|
7217
7194
|
* No description
|
|
7218
7195
|
*
|
|
@@ -7223,7 +7200,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7223
7200
|
* @secure
|
|
7224
7201
|
* @response `200` `DraftContent` Success
|
|
7225
7202
|
*/
|
|
7226
|
-
getLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<DraftContent, any
|
|
7203
|
+
getLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<DraftContent, any>>;
|
|
7227
7204
|
/**
|
|
7228
7205
|
* No description
|
|
7229
7206
|
*
|
|
@@ -7234,7 +7211,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7234
7211
|
* @secure
|
|
7235
7212
|
* @response `200` `Draft` Success
|
|
7236
7213
|
*/
|
|
7237
|
-
replaceLoanDraft: (draftId: string, data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any
|
|
7214
|
+
replaceLoanDraft: (draftId: string, data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
|
|
7238
7215
|
/**
|
|
7239
7216
|
* No description
|
|
7240
7217
|
*
|
|
@@ -7245,7 +7222,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7245
7222
|
* @secure
|
|
7246
7223
|
* @response `204` `void` No Content
|
|
7247
7224
|
*/
|
|
7248
|
-
deleteLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
7225
|
+
deleteLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7249
7226
|
/**
|
|
7250
7227
|
* No description
|
|
7251
7228
|
*
|
|
@@ -7263,7 +7240,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7263
7240
|
pageNumber?: number;
|
|
7264
7241
|
sortBy?: string;
|
|
7265
7242
|
sortDirection?: string;
|
|
7266
|
-
}, params?: RequestParams) => Promise<AxiosResponse<DraftContentPaginated, any
|
|
7243
|
+
}, params?: RequestParams) => Promise<AxiosResponse<DraftContentPaginated, any>>;
|
|
7267
7244
|
/**
|
|
7268
7245
|
* No description
|
|
7269
7246
|
*
|
|
@@ -7274,7 +7251,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7274
7251
|
* @secure
|
|
7275
7252
|
* @response `200` `Draft` Success
|
|
7276
7253
|
*/
|
|
7277
|
-
reassignLoanOfficer: (draftId: string, data: DraftLoanOfficerReassignRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any
|
|
7254
|
+
reassignLoanOfficer: (draftId: string, data: DraftLoanOfficerReassignRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
|
|
7278
7255
|
/**
|
|
7279
7256
|
* No description
|
|
7280
7257
|
*
|
|
@@ -7285,7 +7262,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7285
7262
|
* @secure
|
|
7286
7263
|
* @response `200` `Draft` Success
|
|
7287
7264
|
*/
|
|
7288
|
-
restoreLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<Draft, any
|
|
7265
|
+
restoreLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
|
|
7289
7266
|
/**
|
|
7290
7267
|
* No description
|
|
7291
7268
|
*
|
|
@@ -7305,7 +7282,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7305
7282
|
pageNumber?: number;
|
|
7306
7283
|
sortBy?: string;
|
|
7307
7284
|
sortDirection?: string;
|
|
7308
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanImportPaginated, any
|
|
7285
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanImportPaginated, any>>;
|
|
7309
7286
|
/**
|
|
7310
7287
|
* No description
|
|
7311
7288
|
*
|
|
@@ -7316,7 +7293,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7316
7293
|
* @secure
|
|
7317
7294
|
* @response `201` `LoanImport` Created
|
|
7318
7295
|
*/
|
|
7319
|
-
createLoanImport: (data: CreateLoanImportRequest, params?: RequestParams) => Promise<AxiosResponse<LoanImport, any
|
|
7296
|
+
createLoanImport: (data: CreateLoanImportRequest, params?: RequestParams) => Promise<AxiosResponse<LoanImport, any>>;
|
|
7320
7297
|
/**
|
|
7321
7298
|
* No description
|
|
7322
7299
|
*
|
|
@@ -7327,7 +7304,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7327
7304
|
* @secure
|
|
7328
7305
|
* @response `200` `LoanImport` Success
|
|
7329
7306
|
*/
|
|
7330
|
-
getLoanImport: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanImport, any
|
|
7307
|
+
getLoanImport: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanImport, any>>;
|
|
7331
7308
|
/**
|
|
7332
7309
|
* No description
|
|
7333
7310
|
*
|
|
@@ -7345,7 +7322,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7345
7322
|
pageNumber?: number;
|
|
7346
7323
|
sortBy?: string;
|
|
7347
7324
|
sortDirection?: string;
|
|
7348
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanImportLogPaginated, any
|
|
7325
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanImportLogPaginated, any>>;
|
|
7349
7326
|
/**
|
|
7350
7327
|
* No description
|
|
7351
7328
|
*
|
|
@@ -7357,7 +7334,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7357
7334
|
* @response `200` `(Invite)[]` Success
|
|
7358
7335
|
* @response `404` `ProblemDetails` Not Found
|
|
7359
7336
|
*/
|
|
7360
|
-
getLoanInvites: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Invite[], any
|
|
7337
|
+
getLoanInvites: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Invite[], any>>;
|
|
7361
7338
|
/**
|
|
7362
7339
|
* No description
|
|
7363
7340
|
*
|
|
@@ -7369,7 +7346,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7369
7346
|
* @response `200` `(Invite)[]` Success
|
|
7370
7347
|
* @response `404` `ProblemDetails` Not Found
|
|
7371
7348
|
*/
|
|
7372
|
-
inviteLoanContacts: (loanId: string, data: string[], params?: RequestParams) => Promise<AxiosResponse<Invite[], any
|
|
7349
|
+
inviteLoanContacts: (loanId: string, data: string[], params?: RequestParams) => Promise<AxiosResponse<Invite[], any>>;
|
|
7373
7350
|
/**
|
|
7374
7351
|
* No description
|
|
7375
7352
|
*
|
|
@@ -7387,7 +7364,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7387
7364
|
pageNumber?: number;
|
|
7388
7365
|
sortBy?: string;
|
|
7389
7366
|
sortDirection?: string;
|
|
7390
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanLogPaginated, any
|
|
7367
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanLogPaginated, any>>;
|
|
7391
7368
|
/**
|
|
7392
7369
|
* No description
|
|
7393
7370
|
*
|
|
@@ -7399,7 +7376,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7399
7376
|
* @response `200` `LoanLogDetail` Success
|
|
7400
7377
|
* @response `404` `ProblemDetails` Not Found
|
|
7401
7378
|
*/
|
|
7402
|
-
getLoanLogById: (loanId: string, loanLogId: string, params?: RequestParams) => Promise<AxiosResponse<LoanLogDetail, any
|
|
7379
|
+
getLoanLogById: (loanId: string, loanLogId: string, params?: RequestParams) => Promise<AxiosResponse<LoanLogDetail, any>>;
|
|
7403
7380
|
/**
|
|
7404
7381
|
* No description
|
|
7405
7382
|
*
|
|
@@ -7418,7 +7395,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7418
7395
|
pageNumber?: number;
|
|
7419
7396
|
sortBy?: string;
|
|
7420
7397
|
sortDirection?: string;
|
|
7421
|
-
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any
|
|
7398
|
+
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any>>;
|
|
7422
7399
|
/**
|
|
7423
7400
|
* No description
|
|
7424
7401
|
*
|
|
@@ -7436,7 +7413,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7436
7413
|
pageNumber?: number;
|
|
7437
7414
|
sortBy?: string;
|
|
7438
7415
|
sortDirection?: string;
|
|
7439
|
-
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any
|
|
7416
|
+
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any>>;
|
|
7440
7417
|
/**
|
|
7441
7418
|
* No description
|
|
7442
7419
|
*
|
|
@@ -7447,7 +7424,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7447
7424
|
* @secure
|
|
7448
7425
|
* @response `200` `BranchUser` Success
|
|
7449
7426
|
*/
|
|
7450
|
-
getLoanOfficer: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any
|
|
7427
|
+
getLoanOfficer: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any>>;
|
|
7451
7428
|
/**
|
|
7452
7429
|
* No description
|
|
7453
7430
|
*
|
|
@@ -7459,7 +7436,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7459
7436
|
* @response `200` `SiteConfiguration` Success
|
|
7460
7437
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7461
7438
|
*/
|
|
7462
|
-
createLoanOfficerSiteConfiguration: (loanOfficerId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any
|
|
7439
|
+
createLoanOfficerSiteConfiguration: (loanOfficerId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
7463
7440
|
/**
|
|
7464
7441
|
* No description
|
|
7465
7442
|
*
|
|
@@ -7470,7 +7447,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7470
7447
|
* @secure
|
|
7471
7448
|
* @response `200` `SiteConfigurationWithInherited` Success
|
|
7472
7449
|
*/
|
|
7473
|
-
getLoanOfficerSiteConfiguration: (loanOfficerId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any
|
|
7450
|
+
getLoanOfficerSiteConfiguration: (loanOfficerId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
|
|
7474
7451
|
/**
|
|
7475
7452
|
* No description
|
|
7476
7453
|
*
|
|
@@ -7484,7 +7461,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7484
7461
|
*/
|
|
7485
7462
|
replaceLoanOfficerSiteConfiguration: (loanOfficerId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
|
|
7486
7463
|
applyToChildren?: boolean;
|
|
7487
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any
|
|
7464
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
7488
7465
|
/**
|
|
7489
7466
|
* No description
|
|
7490
7467
|
*
|
|
@@ -7502,7 +7479,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7502
7479
|
pageNumber?: number;
|
|
7503
7480
|
sortBy?: string;
|
|
7504
7481
|
sortDirection?: string;
|
|
7505
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanQueuePaginated, any
|
|
7482
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanQueuePaginated, any>>;
|
|
7506
7483
|
/**
|
|
7507
7484
|
* No description
|
|
7508
7485
|
*
|
|
@@ -7514,7 +7491,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7514
7491
|
* @response `200` `any` Success
|
|
7515
7492
|
* @response `404` `ProblemDetails` Not Found
|
|
7516
7493
|
*/
|
|
7517
|
-
getLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<any, any
|
|
7494
|
+
getLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<any, any>>;
|
|
7518
7495
|
/**
|
|
7519
7496
|
* No description
|
|
7520
7497
|
*
|
|
@@ -7526,7 +7503,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7526
7503
|
* @response `200` `LoanQueueWithData` Success
|
|
7527
7504
|
* @response `404` `ProblemDetails` Not Found
|
|
7528
7505
|
*/
|
|
7529
|
-
replaceLoanQueue: (loanQueueId: string, data: UpdateLoanQueueRequest, params?: RequestParams) => Promise<AxiosResponse<LoanQueueWithData, any
|
|
7506
|
+
replaceLoanQueue: (loanQueueId: string, data: UpdateLoanQueueRequest, params?: RequestParams) => Promise<AxiosResponse<LoanQueueWithData, any>>;
|
|
7530
7507
|
/**
|
|
7531
7508
|
* No description
|
|
7532
7509
|
*
|
|
@@ -7538,7 +7515,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7538
7515
|
* @response `204` `void` No Content
|
|
7539
7516
|
* @response `404` `ProblemDetails` Not Found
|
|
7540
7517
|
*/
|
|
7541
|
-
deleteLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
7518
|
+
deleteLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7542
7519
|
/**
|
|
7543
7520
|
* No description
|
|
7544
7521
|
*
|
|
@@ -7550,7 +7527,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7550
7527
|
* @response `204` `void` No Content
|
|
7551
7528
|
* @response `404` `ProblemDetails` Not Found
|
|
7552
7529
|
*/
|
|
7553
|
-
retryLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
7530
|
+
retryLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7554
7531
|
/**
|
|
7555
7532
|
* No description
|
|
7556
7533
|
*
|
|
@@ -7562,7 +7539,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7562
7539
|
* @response `200` `Loan` Success
|
|
7563
7540
|
* @response `404` `ProblemDetails` Not Found
|
|
7564
7541
|
*/
|
|
7565
|
-
getLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any
|
|
7542
|
+
getLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any>>;
|
|
7566
7543
|
/**
|
|
7567
7544
|
* No description
|
|
7568
7545
|
*
|
|
@@ -7573,7 +7550,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7573
7550
|
* @secure
|
|
7574
7551
|
* @response `200` `GetApplications` Success
|
|
7575
7552
|
*/
|
|
7576
|
-
getLoans: (params?: RequestParams) => Promise<AxiosResponse<GetApplications, any
|
|
7553
|
+
getLoans: (params?: RequestParams) => Promise<AxiosResponse<GetApplications, any>>;
|
|
7577
7554
|
/**
|
|
7578
7555
|
* No description
|
|
7579
7556
|
*
|
|
@@ -7587,7 +7564,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7587
7564
|
* @response `401` `ProblemDetails` Unauthorized
|
|
7588
7565
|
* @response `403` `ProblemDetails` Forbidden
|
|
7589
7566
|
*/
|
|
7590
|
-
createLoanv3: (data: LoanApplicationRequest, params?: RequestParams) => Promise<AxiosResponse<LoanApplication, any
|
|
7567
|
+
createLoanv3: (data: LoanApplicationRequest, params?: RequestParams) => Promise<AxiosResponse<LoanApplication, any>>;
|
|
7591
7568
|
/**
|
|
7592
7569
|
* No description
|
|
7593
7570
|
*
|
|
@@ -7605,7 +7582,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7605
7582
|
pageNumber?: number;
|
|
7606
7583
|
sortBy?: string;
|
|
7607
7584
|
sortDirection?: string;
|
|
7608
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanListPaginated, any
|
|
7585
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanListPaginated, any>>;
|
|
7609
7586
|
/**
|
|
7610
7587
|
* No description
|
|
7611
7588
|
*
|
|
@@ -7621,7 +7598,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7621
7598
|
* @response `404` `ProblemDetails` Not Found
|
|
7622
7599
|
* @response `409` `any` Conflict
|
|
7623
7600
|
*/
|
|
7624
|
-
updateLoan: (loanId: string, data: any, params?: RequestParams) => Promise<AxiosResponse<Loan, any
|
|
7601
|
+
updateLoan: (loanId: string, data: any, params?: RequestParams) => Promise<AxiosResponse<Loan, any>>;
|
|
7625
7602
|
/**
|
|
7626
7603
|
* No description
|
|
7627
7604
|
*
|
|
@@ -7634,7 +7611,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7634
7611
|
* @response `400` `ProblemDetails` Bad Request
|
|
7635
7612
|
* @response `404` `ProblemDetails` Not Found
|
|
7636
7613
|
*/
|
|
7637
|
-
completeBorrowerApplication: (loanId: string, borrowerId: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
7614
|
+
completeBorrowerApplication: (loanId: string, borrowerId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7638
7615
|
/**
|
|
7639
7616
|
* No description
|
|
7640
7617
|
*
|
|
@@ -7645,7 +7622,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7645
7622
|
* @secure
|
|
7646
7623
|
* @response `200` `Loan` Success
|
|
7647
7624
|
*/
|
|
7648
|
-
importLoanFromLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any
|
|
7625
|
+
importLoanFromLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any>>;
|
|
7649
7626
|
/**
|
|
7650
7627
|
* No description
|
|
7651
7628
|
*
|
|
@@ -7657,7 +7634,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7657
7634
|
* @response `202` `void` Accepted
|
|
7658
7635
|
* @response `404` `ProblemDetails` Not Found
|
|
7659
7636
|
*/
|
|
7660
|
-
syncLoanToLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
7637
|
+
syncLoanToLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7661
7638
|
/**
|
|
7662
7639
|
* No description
|
|
7663
7640
|
*
|
|
@@ -7676,7 +7653,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7676
7653
|
pageNumber?: number;
|
|
7677
7654
|
sortBy?: string;
|
|
7678
7655
|
sortDirection?: string;
|
|
7679
|
-
}, params?: RequestParams) => Promise<AxiosResponse<TaskCommentPaginated, any
|
|
7656
|
+
}, params?: RequestParams) => Promise<AxiosResponse<TaskCommentPaginated, any>>;
|
|
7680
7657
|
/**
|
|
7681
7658
|
* No description
|
|
7682
7659
|
*
|
|
@@ -7688,7 +7665,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7688
7665
|
* @response `200` `TaskComment` Success
|
|
7689
7666
|
* @response `404` `ProblemDetails` Not Found
|
|
7690
7667
|
*/
|
|
7691
|
-
getLoanTaskComment: (id: string, loanId: string, userLoanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any
|
|
7668
|
+
getLoanTaskComment: (id: string, loanId: string, userLoanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any>>;
|
|
7692
7669
|
/**
|
|
7693
7670
|
* No description
|
|
7694
7671
|
*
|
|
@@ -7700,7 +7677,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7700
7677
|
* @response `201` `TaskComment` Created
|
|
7701
7678
|
* @response `404` `ProblemDetails` Not Found
|
|
7702
7679
|
*/
|
|
7703
|
-
createLoanTaskComment: (loanId: string, userLoanTaskId: string, data: TaskCommentRequest, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any
|
|
7680
|
+
createLoanTaskComment: (loanId: string, userLoanTaskId: string, data: TaskCommentRequest, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any>>;
|
|
7704
7681
|
/**
|
|
7705
7682
|
* No description
|
|
7706
7683
|
*
|
|
@@ -7712,7 +7689,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7712
7689
|
* @response `200` `TaskComment` Success
|
|
7713
7690
|
* @response `404` `ProblemDetails` Not Found
|
|
7714
7691
|
*/
|
|
7715
|
-
replaceLoanTaskComment: (loanId: string, userLoanTaskId: string, commentId: string, data: TaskCommentRequest, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any
|
|
7692
|
+
replaceLoanTaskComment: (loanId: string, userLoanTaskId: string, commentId: string, data: TaskCommentRequest, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any>>;
|
|
7716
7693
|
/**
|
|
7717
7694
|
* No description
|
|
7718
7695
|
*
|
|
@@ -7724,7 +7701,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7724
7701
|
* @response `204` `void` No Content
|
|
7725
7702
|
* @response `404` `ProblemDetails` Not Found
|
|
7726
7703
|
*/
|
|
7727
|
-
deleteLoanTaskComment: (loanId: string, userLoanTaskId: string, commentId: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
7704
|
+
deleteLoanTaskComment: (loanId: string, userLoanTaskId: string, commentId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7728
7705
|
/**
|
|
7729
7706
|
* No description
|
|
7730
7707
|
*
|
|
@@ -7742,7 +7719,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7742
7719
|
/** @format binary */
|
|
7743
7720
|
file?: File;
|
|
7744
7721
|
bucket?: string;
|
|
7745
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any
|
|
7722
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
|
|
7746
7723
|
/**
|
|
7747
7724
|
* No description
|
|
7748
7725
|
*
|
|
@@ -7754,7 +7731,19 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7754
7731
|
* @response `204` `UserLoanTask` No Content
|
|
7755
7732
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7756
7733
|
*/
|
|
7757
|
-
createLoanTaskDocumentBucket: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any
|
|
7734
|
+
createLoanTaskDocumentBucket: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
|
|
7735
|
+
/**
|
|
7736
|
+
* No description
|
|
7737
|
+
*
|
|
7738
|
+
* @tags LoanTaskNotifications
|
|
7739
|
+
* @name SendOutstandingLoanTaskNotification
|
|
7740
|
+
* @summary Send Outstanding Task Notification
|
|
7741
|
+
* @request POST:/api/loans/{loanID}/tasks/reminders/outstanding
|
|
7742
|
+
* @secure
|
|
7743
|
+
* @response `204` `void` No Content
|
|
7744
|
+
* @response `404` `ProblemDetails` Not Found
|
|
7745
|
+
*/
|
|
7746
|
+
sendOutstandingLoanTaskNotification: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7758
7747
|
/**
|
|
7759
7748
|
* No description
|
|
7760
7749
|
*
|
|
@@ -7766,7 +7755,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7766
7755
|
* @response `200` `(UserLoanTask)[]` Success
|
|
7767
7756
|
* @response `404` `ProblemDetails` Not Found
|
|
7768
7757
|
*/
|
|
7769
|
-
getLoanTasks: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any
|
|
7758
|
+
getLoanTasks: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any>>;
|
|
7770
7759
|
/**
|
|
7771
7760
|
* No description
|
|
7772
7761
|
*
|
|
@@ -7778,7 +7767,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7778
7767
|
* @response `200` `UserLoanTask` Success
|
|
7779
7768
|
* @response `404` `ProblemDetails` Not Found
|
|
7780
7769
|
*/
|
|
7781
|
-
getLoanTask: (id: string, loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any
|
|
7770
|
+
getLoanTask: (id: string, loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
|
|
7782
7771
|
/**
|
|
7783
7772
|
* @description Get the difference between the current loan tasks and the tasks generated by business rules
|
|
7784
7773
|
*
|
|
@@ -7790,7 +7779,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7790
7779
|
* @response `200` `(UserLoanTask)[]` Success
|
|
7791
7780
|
* @response `404` `ProblemDetails` Not Found
|
|
7792
7781
|
*/
|
|
7793
|
-
getLoanTaskDifference: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any
|
|
7782
|
+
getLoanTaskDifference: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any>>;
|
|
7794
7783
|
/**
|
|
7795
7784
|
* No description
|
|
7796
7785
|
*
|
|
@@ -7802,7 +7791,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7802
7791
|
* @response `201` `UserLoanTask` Created
|
|
7803
7792
|
* @response `404` `ProblemDetails` Not Found
|
|
7804
7793
|
*/
|
|
7805
|
-
createLoanTask: (loanId: string, taskId: string, data: UserLoanTaskRequest, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any
|
|
7794
|
+
createLoanTask: (loanId: string, taskId: string, data: UserLoanTaskRequest, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
|
|
7806
7795
|
/**
|
|
7807
7796
|
* No description
|
|
7808
7797
|
*
|
|
@@ -7814,7 +7803,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7814
7803
|
* @response `201` `(UserLoanTask)[]` Created
|
|
7815
7804
|
* @response `404` `ProblemDetails` Not Found
|
|
7816
7805
|
*/
|
|
7817
|
-
importLoanTask: (loanId: string, data: ImportUserLoanTaskRequest[], params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any
|
|
7806
|
+
importLoanTask: (loanId: string, data: ImportUserLoanTaskRequest[], params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any>>;
|
|
7818
7807
|
/**
|
|
7819
7808
|
* No description
|
|
7820
7809
|
*
|
|
@@ -7826,7 +7815,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7826
7815
|
* @response `200` `UserLoanTask` Success
|
|
7827
7816
|
* @response `404` `ProblemDetails` Not Found
|
|
7828
7817
|
*/
|
|
7829
|
-
replaceLoanTask: (loanId: string, userLoanTaskId: string, data: UserLoanTaskUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any
|
|
7818
|
+
replaceLoanTask: (loanId: string, userLoanTaskId: string, data: UserLoanTaskUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
|
|
7830
7819
|
/**
|
|
7831
7820
|
* No description
|
|
7832
7821
|
*
|
|
@@ -7838,19 +7827,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7838
7827
|
* @response `204` `void` No Content
|
|
7839
7828
|
* @response `404` `ProblemDetails` Not Found
|
|
7840
7829
|
*/
|
|
7841
|
-
deleteLoanTask: (loanId: string, userLoanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
7842
|
-
/**
|
|
7843
|
-
* No description
|
|
7844
|
-
*
|
|
7845
|
-
* @tags LoanTasks
|
|
7846
|
-
* @name SendOutstandingLoanTaskNotification
|
|
7847
|
-
* @summary Send Outstanding Task Notification
|
|
7848
|
-
* @request POST:/api/loans/{loanID}/tasks/reminders/outstanding
|
|
7849
|
-
* @secure
|
|
7850
|
-
* @response `204` `void` No Content
|
|
7851
|
-
* @response `404` `ProblemDetails` Not Found
|
|
7852
|
-
*/
|
|
7853
|
-
sendOutstandingLoanTaskNotification: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7830
|
+
deleteLoanTask: (loanId: string, userLoanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7854
7831
|
/**
|
|
7855
7832
|
* No description
|
|
7856
7833
|
*
|
|
@@ -7863,7 +7840,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7863
7840
|
* @response `404` `ProblemDetails` Not Found
|
|
7864
7841
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7865
7842
|
*/
|
|
7866
|
-
createLoanTaskVerification: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any
|
|
7843
|
+
createLoanTaskVerification: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
|
|
7867
7844
|
/**
|
|
7868
7845
|
* No description
|
|
7869
7846
|
*
|
|
@@ -7874,7 +7851,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7874
7851
|
* @secure
|
|
7875
7852
|
* @response `200` `(UserLoanConsent)[]` Success
|
|
7876
7853
|
*/
|
|
7877
|
-
getLoanUserConsents: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanConsent[], any
|
|
7854
|
+
getLoanUserConsents: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanConsent[], any>>;
|
|
7878
7855
|
/**
|
|
7879
7856
|
* No description
|
|
7880
7857
|
*
|
|
@@ -7885,7 +7862,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7885
7862
|
* @secure
|
|
7886
7863
|
* @response `200` `LoanUser` Success
|
|
7887
7864
|
*/
|
|
7888
|
-
getLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any
|
|
7865
|
+
getLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any>>;
|
|
7889
7866
|
/**
|
|
7890
7867
|
* No description
|
|
7891
7868
|
*
|
|
@@ -7896,7 +7873,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7896
7873
|
* @secure
|
|
7897
7874
|
* @response `201` `LoanUser` Created
|
|
7898
7875
|
*/
|
|
7899
|
-
addLoanUser: (loanId: string, userId: string, data: CreateUserLoan, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any
|
|
7876
|
+
addLoanUser: (loanId: string, userId: string, data: CreateUserLoan, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any>>;
|
|
7900
7877
|
/**
|
|
7901
7878
|
* No description
|
|
7902
7879
|
*
|
|
@@ -7907,7 +7884,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7907
7884
|
* @secure
|
|
7908
7885
|
* @response `204` `LoanUser` No Content
|
|
7909
7886
|
*/
|
|
7910
|
-
removeLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any
|
|
7887
|
+
removeLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any>>;
|
|
7911
7888
|
/**
|
|
7912
7889
|
* No description
|
|
7913
7890
|
*
|
|
@@ -7918,7 +7895,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7918
7895
|
* @secure
|
|
7919
7896
|
* @response `204` `void` No Content
|
|
7920
7897
|
*/
|
|
7921
|
-
sendLoanUserInviteReminderNotification: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
7898
|
+
sendLoanUserInviteReminderNotification: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7922
7899
|
/**
|
|
7923
7900
|
* No description
|
|
7924
7901
|
*
|
|
@@ -7929,7 +7906,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7929
7906
|
* @secure
|
|
7930
7907
|
* @response `200` `(MilestoneConfiguration)[]` Success
|
|
7931
7908
|
*/
|
|
7932
|
-
getMilestones: (params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration[], any
|
|
7909
|
+
getMilestones: (params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration[], any>>;
|
|
7933
7910
|
/**
|
|
7934
7911
|
* No description
|
|
7935
7912
|
*
|
|
@@ -7941,7 +7918,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7941
7918
|
* @response `201` `MilestoneConfiguration` Created
|
|
7942
7919
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7943
7920
|
*/
|
|
7944
|
-
createMilestone: (data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any
|
|
7921
|
+
createMilestone: (data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any>>;
|
|
7945
7922
|
/**
|
|
7946
7923
|
* No description
|
|
7947
7924
|
*
|
|
@@ -7953,7 +7930,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7953
7930
|
* @response `200` `MilestoneConfiguration` Success
|
|
7954
7931
|
* @response `404` `Error` Not Found
|
|
7955
7932
|
*/
|
|
7956
|
-
getMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any
|
|
7933
|
+
getMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any>>;
|
|
7957
7934
|
/**
|
|
7958
7935
|
* No description
|
|
7959
7936
|
*
|
|
@@ -7966,7 +7943,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7966
7943
|
* @response `404` `Error` Not Found
|
|
7967
7944
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7968
7945
|
*/
|
|
7969
|
-
replaceMilestone: (id: string, data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any
|
|
7946
|
+
replaceMilestone: (id: string, data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any>>;
|
|
7970
7947
|
/**
|
|
7971
7948
|
* No description
|
|
7972
7949
|
*
|
|
@@ -7978,7 +7955,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7978
7955
|
* @response `204` `void` No Content
|
|
7979
7956
|
* @response `404` `Error` Not Found
|
|
7980
7957
|
*/
|
|
7981
|
-
deleteMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
7958
|
+
deleteMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7982
7959
|
/**
|
|
7983
7960
|
* No description
|
|
7984
7961
|
*
|
|
@@ -7990,7 +7967,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7990
7967
|
* @response `200` `MonthlyPaymentCalculator` Success
|
|
7991
7968
|
* @response `422` `ProblemDetails` Client Error
|
|
7992
7969
|
*/
|
|
7993
|
-
calculateMortgageMonthlyPayment: (data: MonthlyPaymentCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<MonthlyPaymentCalculator, any
|
|
7970
|
+
calculateMortgageMonthlyPayment: (data: MonthlyPaymentCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<MonthlyPaymentCalculator, any>>;
|
|
7994
7971
|
/**
|
|
7995
7972
|
* No description
|
|
7996
7973
|
*
|
|
@@ -8002,7 +7979,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8002
7979
|
* @response `200` `AffordabilityCalculator` Success
|
|
8003
7980
|
* @response `422` `ProblemDetails` Client Error
|
|
8004
7981
|
*/
|
|
8005
|
-
calculateMortgageAffordability: (data: AffordabilityCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<AffordabilityCalculator, any
|
|
7982
|
+
calculateMortgageAffordability: (data: AffordabilityCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<AffordabilityCalculator, any>>;
|
|
8006
7983
|
/**
|
|
8007
7984
|
* No description
|
|
8008
7985
|
*
|
|
@@ -8014,7 +7991,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8014
7991
|
* @response `200` `LoanComparisonCalculator` Success
|
|
8015
7992
|
* @response `422` `ProblemDetails` Client Error
|
|
8016
7993
|
*/
|
|
8017
|
-
calculateMortgageLoanComparison: (data: LoanComparisonCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<LoanComparisonCalculator, any
|
|
7994
|
+
calculateMortgageLoanComparison: (data: LoanComparisonCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<LoanComparisonCalculator, any>>;
|
|
8018
7995
|
/**
|
|
8019
7996
|
* No description
|
|
8020
7997
|
*
|
|
@@ -8026,7 +8003,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8026
8003
|
* @response `200` `RefinanceCalculator` Success
|
|
8027
8004
|
* @response `422` `ProblemDetails` Client Error
|
|
8028
8005
|
*/
|
|
8029
|
-
calculateMortgageRefinance: (data: RefinanceCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<RefinanceCalculator, any
|
|
8006
|
+
calculateMortgageRefinance: (data: RefinanceCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<RefinanceCalculator, any>>;
|
|
8030
8007
|
/**
|
|
8031
8008
|
* No description
|
|
8032
8009
|
*
|
|
@@ -8038,7 +8015,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8038
8015
|
* @response `200` `void` Success
|
|
8039
8016
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8040
8017
|
*/
|
|
8041
|
-
sendNotificationForLoan: (data: SendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
8018
|
+
sendNotificationForLoan: (data: SendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8042
8019
|
/**
|
|
8043
8020
|
* No description
|
|
8044
8021
|
*
|
|
@@ -8050,7 +8027,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8050
8027
|
* @response `200` `void` Success
|
|
8051
8028
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8052
8029
|
*/
|
|
8053
|
-
sendTestNotificationForLoan: (data: TestSendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
8030
|
+
sendTestNotificationForLoan: (data: TestSendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8054
8031
|
/**
|
|
8055
8032
|
* No description
|
|
8056
8033
|
*
|
|
@@ -8063,7 +8040,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8063
8040
|
*/
|
|
8064
8041
|
getNotificationTemplates: (query?: {
|
|
8065
8042
|
showAll?: boolean;
|
|
8066
|
-
}, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateBase[], any
|
|
8043
|
+
}, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateBase[], any>>;
|
|
8067
8044
|
/**
|
|
8068
8045
|
* No description
|
|
8069
8046
|
*
|
|
@@ -8075,7 +8052,25 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8075
8052
|
* @response `201` `NotificationTemplate` Created
|
|
8076
8053
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8077
8054
|
*/
|
|
8078
|
-
createNotificationTemplate: (data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any
|
|
8055
|
+
createNotificationTemplate: (data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
|
|
8056
|
+
/**
|
|
8057
|
+
* No description
|
|
8058
|
+
*
|
|
8059
|
+
* @tags NotificationTemplates
|
|
8060
|
+
* @name SearchNotificationTemplates
|
|
8061
|
+
* @summary Search
|
|
8062
|
+
* @request POST:/api/notification-templates/search
|
|
8063
|
+
* @secure
|
|
8064
|
+
* @response `200` `NotificationTemplateBasePaginated` Success
|
|
8065
|
+
*/
|
|
8066
|
+
searchNotificationTemplates: (data: NotificationTemplateSearchCriteria, query?: {
|
|
8067
|
+
/** @format int32 */
|
|
8068
|
+
pageSize?: number;
|
|
8069
|
+
/** @format int32 */
|
|
8070
|
+
pageNumber?: number;
|
|
8071
|
+
sortBy?: string;
|
|
8072
|
+
sortDirection?: string;
|
|
8073
|
+
}, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateBasePaginated, any>>;
|
|
8079
8074
|
/**
|
|
8080
8075
|
* No description
|
|
8081
8076
|
*
|
|
@@ -8086,7 +8081,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8086
8081
|
* @secure
|
|
8087
8082
|
* @response `200` `NotificationTemplate` Success
|
|
8088
8083
|
*/
|
|
8089
|
-
getNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any
|
|
8084
|
+
getNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
|
|
8090
8085
|
/**
|
|
8091
8086
|
* No description
|
|
8092
8087
|
*
|
|
@@ -8098,7 +8093,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8098
8093
|
* @response `200` `NotificationTemplate` Success
|
|
8099
8094
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8100
8095
|
*/
|
|
8101
|
-
replaceNotificationTemplate: (id: string, data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any
|
|
8096
|
+
replaceNotificationTemplate: (id: string, data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
|
|
8102
8097
|
/**
|
|
8103
8098
|
* No description
|
|
8104
8099
|
*
|
|
@@ -8109,7 +8104,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8109
8104
|
* @secure
|
|
8110
8105
|
* @response `204` `void` No Content
|
|
8111
8106
|
*/
|
|
8112
|
-
deleteNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
8107
|
+
deleteNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8113
8108
|
/**
|
|
8114
8109
|
* No description
|
|
8115
8110
|
*
|
|
@@ -8120,7 +8115,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8120
8115
|
* @secure
|
|
8121
8116
|
* @response `200` `NotificationTemplate` Success
|
|
8122
8117
|
*/
|
|
8123
|
-
restoreNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any
|
|
8118
|
+
restoreNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
|
|
8124
8119
|
/**
|
|
8125
8120
|
* No description
|
|
8126
8121
|
*
|
|
@@ -8131,7 +8126,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8131
8126
|
* @secure
|
|
8132
8127
|
* @response `200` `(NotificationTemplateVersion)[]` Success
|
|
8133
8128
|
*/
|
|
8134
|
-
getNotificationTemplateVersions: (notificationId: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion[], any
|
|
8129
|
+
getNotificationTemplateVersions: (notificationId: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion[], any>>;
|
|
8135
8130
|
/**
|
|
8136
8131
|
* No description
|
|
8137
8132
|
*
|
|
@@ -8142,7 +8137,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8142
8137
|
* @secure
|
|
8143
8138
|
* @response `200` `NotificationTemplateVersion` Success
|
|
8144
8139
|
*/
|
|
8145
|
-
createNotificationTemplateVersion: (notificationId: string, data: NotificationTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any
|
|
8140
|
+
createNotificationTemplateVersion: (notificationId: string, data: NotificationTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
|
|
8146
8141
|
/**
|
|
8147
8142
|
* No description
|
|
8148
8143
|
*
|
|
@@ -8153,7 +8148,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8153
8148
|
* @secure
|
|
8154
8149
|
* @response `200` `NotificationTemplateVersion` Success
|
|
8155
8150
|
*/
|
|
8156
|
-
getNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any
|
|
8151
|
+
getNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
|
|
8157
8152
|
/**
|
|
8158
8153
|
* No description
|
|
8159
8154
|
*
|
|
@@ -8164,7 +8159,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8164
8159
|
* @secure
|
|
8165
8160
|
* @response `200` `NotificationTemplateVersion` Success
|
|
8166
8161
|
*/
|
|
8167
|
-
replaceNotificationTemplateVersion: (notificationId: string, id: string, data: NotificationTemplateVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any
|
|
8162
|
+
replaceNotificationTemplateVersion: (notificationId: string, id: string, data: NotificationTemplateVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
|
|
8168
8163
|
/**
|
|
8169
8164
|
* No description
|
|
8170
8165
|
*
|
|
@@ -8175,7 +8170,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8175
8170
|
* @secure
|
|
8176
8171
|
* @response `200` `NotificationTemplateVersion` Success
|
|
8177
8172
|
*/
|
|
8178
|
-
deleteNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any
|
|
8173
|
+
deleteNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
|
|
8179
8174
|
/**
|
|
8180
8175
|
* No description
|
|
8181
8176
|
*
|
|
@@ -8189,14 +8184,14 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8189
8184
|
getPartners: (query?: {
|
|
8190
8185
|
showAll?: boolean;
|
|
8191
8186
|
/** @default "Realtor" */
|
|
8192
|
-
role?:
|
|
8187
|
+
role?: "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
|
|
8193
8188
|
/** @format int32 */
|
|
8194
8189
|
pageSize?: number;
|
|
8195
8190
|
/** @format int32 */
|
|
8196
8191
|
pageNumber?: number;
|
|
8197
8192
|
sortBy?: string;
|
|
8198
8193
|
sortDirection?: string;
|
|
8199
|
-
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any
|
|
8194
|
+
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any>>;
|
|
8200
8195
|
/**
|
|
8201
8196
|
* No description
|
|
8202
8197
|
*
|
|
@@ -8214,7 +8209,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8214
8209
|
pageNumber?: number;
|
|
8215
8210
|
sortBy?: string;
|
|
8216
8211
|
sortDirection?: string;
|
|
8217
|
-
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any
|
|
8212
|
+
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any>>;
|
|
8218
8213
|
/**
|
|
8219
8214
|
* No description
|
|
8220
8215
|
*
|
|
@@ -8225,7 +8220,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8225
8220
|
* @secure
|
|
8226
8221
|
* @response `200` `BranchUser` Success
|
|
8227
8222
|
*/
|
|
8228
|
-
getPartner: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any
|
|
8223
|
+
getPartner: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any>>;
|
|
8229
8224
|
/**
|
|
8230
8225
|
* No description
|
|
8231
8226
|
*
|
|
@@ -8237,7 +8232,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8237
8232
|
* @response `200` `SiteConfiguration` Success
|
|
8238
8233
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8239
8234
|
*/
|
|
8240
|
-
createPartnerSiteConfiguration: (realtorId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any
|
|
8235
|
+
createPartnerSiteConfiguration: (realtorId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
8241
8236
|
/**
|
|
8242
8237
|
* No description
|
|
8243
8238
|
*
|
|
@@ -8248,7 +8243,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8248
8243
|
* @secure
|
|
8249
8244
|
* @response `200` `SiteConfigurationWithInherited` Success
|
|
8250
8245
|
*/
|
|
8251
|
-
getPartnerSiteConfiguration: (realtorId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any
|
|
8246
|
+
getPartnerSiteConfiguration: (realtorId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
|
|
8252
8247
|
/**
|
|
8253
8248
|
* No description
|
|
8254
8249
|
*
|
|
@@ -8262,7 +8257,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8262
8257
|
*/
|
|
8263
8258
|
replacePartnerSiteConfiguration: (realtorId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
|
|
8264
8259
|
applyToChildren?: boolean;
|
|
8265
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any
|
|
8260
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
8266
8261
|
/**
|
|
8267
8262
|
* No description
|
|
8268
8263
|
*
|
|
@@ -8273,7 +8268,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8273
8268
|
* @secure
|
|
8274
8269
|
* @response `200` `SiteConfiguration` Success
|
|
8275
8270
|
*/
|
|
8276
|
-
getSiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any
|
|
8271
|
+
getSiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
8277
8272
|
/**
|
|
8278
8273
|
* No description
|
|
8279
8274
|
*
|
|
@@ -8286,7 +8281,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8286
8281
|
* @response `200` `SiteConfigurationByUrl` Success
|
|
8287
8282
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8288
8283
|
*/
|
|
8289
|
-
searchSiteConfigurationByUrl: (data: GetSiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationByUrl, any
|
|
8284
|
+
searchSiteConfigurationByUrl: (data: GetSiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationByUrl, any>>;
|
|
8290
8285
|
/**
|
|
8291
8286
|
* No description
|
|
8292
8287
|
*
|
|
@@ -8300,7 +8295,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8300
8295
|
*/
|
|
8301
8296
|
getSiteConfigurationByUrl: (query?: {
|
|
8302
8297
|
url?: string;
|
|
8303
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationByUrl, any
|
|
8298
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationByUrl, any>>;
|
|
8304
8299
|
/**
|
|
8305
8300
|
* No description
|
|
8306
8301
|
*
|
|
@@ -8313,7 +8308,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8313
8308
|
* @response `200` `SiteConfiguration` Success
|
|
8314
8309
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8315
8310
|
*/
|
|
8316
|
-
searchSiteConfigurationByLoanOfficerUser: (data: GetSiteConfigurationByLOUserIDRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any
|
|
8311
|
+
searchSiteConfigurationByLoanOfficerUser: (data: GetSiteConfigurationByLOUserIDRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
8317
8312
|
/**
|
|
8318
8313
|
* No description
|
|
8319
8314
|
*
|
|
@@ -8325,7 +8320,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8325
8320
|
* @response `200` `SiteConfiguration` Success
|
|
8326
8321
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8327
8322
|
*/
|
|
8328
|
-
getSiteConfigurationByLoanOfficerUser: (loUserId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any
|
|
8323
|
+
getSiteConfigurationByLoanOfficerUser: (loUserId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
8329
8324
|
/**
|
|
8330
8325
|
* No description
|
|
8331
8326
|
*
|
|
@@ -8344,7 +8339,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8344
8339
|
pageNumber?: number;
|
|
8345
8340
|
sortBy?: string;
|
|
8346
8341
|
sortDirection?: string;
|
|
8347
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationSummaryPaginated, any
|
|
8342
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationSummaryPaginated, any>>;
|
|
8348
8343
|
/**
|
|
8349
8344
|
* No description
|
|
8350
8345
|
*
|
|
@@ -8355,7 +8350,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8355
8350
|
* @secure
|
|
8356
8351
|
* @response `200` `(AdminAccessGetForms)[]` Success
|
|
8357
8352
|
*/
|
|
8358
|
-
getFormsBySiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms[], any
|
|
8353
|
+
getFormsBySiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms[], any>>;
|
|
8359
8354
|
/**
|
|
8360
8355
|
* No description
|
|
8361
8356
|
*
|
|
@@ -8367,7 +8362,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8367
8362
|
* @response `200` `File` Success
|
|
8368
8363
|
* @response `404` `ProblemDetails` Not Found
|
|
8369
8364
|
*/
|
|
8370
|
-
getSamlMetadata: (sSoIntegration:
|
|
8365
|
+
getSamlMetadata: (sSoIntegration: "ConsumerConnect" | "TheBigPOS" | "POSF", ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
|
|
8371
8366
|
/**
|
|
8372
8367
|
* No description
|
|
8373
8368
|
*
|
|
@@ -8378,7 +8373,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8378
8373
|
* @secure
|
|
8379
8374
|
* @response `200` `File` Success
|
|
8380
8375
|
*/
|
|
8381
|
-
createOrReplaceSamlMetadata: (sSoIntegration:
|
|
8376
|
+
createOrReplaceSamlMetadata: (sSoIntegration: "ConsumerConnect" | "TheBigPOS" | "POSF", ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
|
|
8382
8377
|
/**
|
|
8383
8378
|
* No description
|
|
8384
8379
|
*
|
|
@@ -8389,7 +8384,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8389
8384
|
* @secure
|
|
8390
8385
|
* @response `200` `(SiteConfigurationForm)[]` Success
|
|
8391
8386
|
*/
|
|
8392
|
-
getWorkflowSiteConfigurations: (workflowId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm[], any
|
|
8387
|
+
getWorkflowSiteConfigurations: (workflowId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm[], any>>;
|
|
8393
8388
|
/**
|
|
8394
8389
|
* No description
|
|
8395
8390
|
*
|
|
@@ -8401,7 +8396,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8401
8396
|
* @response `200` `SiteConfigurationForm` Success
|
|
8402
8397
|
* @response `404` `ProblemDetails` Not Found
|
|
8403
8398
|
*/
|
|
8404
|
-
getWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any
|
|
8399
|
+
getWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any>>;
|
|
8405
8400
|
/**
|
|
8406
8401
|
* No description
|
|
8407
8402
|
*
|
|
@@ -8414,7 +8409,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8414
8409
|
* @response `409` `ProblemDetails` Conflict
|
|
8415
8410
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8416
8411
|
*/
|
|
8417
|
-
createWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any
|
|
8412
|
+
createWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any>>;
|
|
8418
8413
|
/**
|
|
8419
8414
|
* No description
|
|
8420
8415
|
*
|
|
@@ -8425,7 +8420,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8425
8420
|
* @secure
|
|
8426
8421
|
* @response `204` `void` No Content
|
|
8427
8422
|
*/
|
|
8428
|
-
deleteWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
8423
|
+
deleteWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8429
8424
|
/**
|
|
8430
8425
|
* No description
|
|
8431
8426
|
*
|
|
@@ -8436,7 +8431,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8436
8431
|
* @secure
|
|
8437
8432
|
* @response `200` `GetForm` Success
|
|
8438
8433
|
*/
|
|
8439
|
-
getFormBySiteConfigurationSlug: (data: GetSiteFormRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any
|
|
8434
|
+
getFormBySiteConfigurationSlug: (data: GetSiteFormRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any>>;
|
|
8440
8435
|
/**
|
|
8441
8436
|
* No description
|
|
8442
8437
|
*
|
|
@@ -8450,7 +8445,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8450
8445
|
getSurveysByUsers: (query?: {
|
|
8451
8446
|
/** @format int32 */
|
|
8452
8447
|
limit?: number;
|
|
8453
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SocialSurveyRecord[], any
|
|
8448
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SocialSurveyRecord[], any>>;
|
|
8454
8449
|
/**
|
|
8455
8450
|
* No description
|
|
8456
8451
|
*
|
|
@@ -8462,7 +8457,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8462
8457
|
* @response `200` `(SocialSurveyRecord)[]` Success
|
|
8463
8458
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8464
8459
|
*/
|
|
8465
|
-
getSurveysByUser: (data: SurveyEmailRequest, params?: RequestParams) => Promise<AxiosResponse<SocialSurveyRecord[], any
|
|
8460
|
+
getSurveysByUser: (data: SurveyEmailRequest, params?: RequestParams) => Promise<AxiosResponse<SocialSurveyRecord[], any>>;
|
|
8466
8461
|
/**
|
|
8467
8462
|
* No description
|
|
8468
8463
|
*
|
|
@@ -8481,7 +8476,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8481
8476
|
pageNumber?: number;
|
|
8482
8477
|
sortBy?: string;
|
|
8483
8478
|
sortDirection?: string;
|
|
8484
|
-
}, params?: RequestParams) => Promise<AxiosResponse<Task, any
|
|
8479
|
+
}, params?: RequestParams) => Promise<AxiosResponse<Task, any>>;
|
|
8485
8480
|
/**
|
|
8486
8481
|
* No description
|
|
8487
8482
|
*
|
|
@@ -8492,7 +8487,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8492
8487
|
* @secure
|
|
8493
8488
|
* @response `201` `Task` Created
|
|
8494
8489
|
*/
|
|
8495
|
-
createTask: (data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<Task, any
|
|
8490
|
+
createTask: (data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<Task, any>>;
|
|
8496
8491
|
/**
|
|
8497
8492
|
* No description
|
|
8498
8493
|
*
|
|
@@ -8504,7 +8499,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8504
8499
|
* @response `200` `Task` Success
|
|
8505
8500
|
* @response `404` `ProblemDetails` Not Found
|
|
8506
8501
|
*/
|
|
8507
|
-
getTask: (id: string, params?: RequestParams) => Promise<AxiosResponse<Task, any
|
|
8502
|
+
getTask: (id: string, params?: RequestParams) => Promise<AxiosResponse<Task, any>>;
|
|
8508
8503
|
/**
|
|
8509
8504
|
* No description
|
|
8510
8505
|
*
|
|
@@ -8516,7 +8511,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8516
8511
|
* @response `200` `void` Success
|
|
8517
8512
|
* @response `404` `ProblemDetails` Not Found
|
|
8518
8513
|
*/
|
|
8519
|
-
replaceTask: (id: string, data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
8514
|
+
replaceTask: (id: string, data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8520
8515
|
/**
|
|
8521
8516
|
* No description
|
|
8522
8517
|
*
|
|
@@ -8528,7 +8523,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8528
8523
|
* @response `204` `void` No Content
|
|
8529
8524
|
* @response `404` `ProblemDetails` Not Found
|
|
8530
8525
|
*/
|
|
8531
|
-
deleteTask: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
8526
|
+
deleteTask: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8532
8527
|
/**
|
|
8533
8528
|
* No description
|
|
8534
8529
|
*
|
|
@@ -8546,7 +8541,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8546
8541
|
pageNumber?: number;
|
|
8547
8542
|
sortBy?: string;
|
|
8548
8543
|
sortDirection?: string;
|
|
8549
|
-
}, params?: RequestParams) => Promise<AxiosResponse<TaskPaginated, any
|
|
8544
|
+
}, params?: RequestParams) => Promise<AxiosResponse<TaskPaginated, any>>;
|
|
8550
8545
|
/**
|
|
8551
8546
|
* No description
|
|
8552
8547
|
*
|
|
@@ -8556,7 +8551,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8556
8551
|
* @secure
|
|
8557
8552
|
* @response `200` `void` Success
|
|
8558
8553
|
*/
|
|
8559
|
-
integrationsLosLoansCreate: (data: LosLoanCreationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
8554
|
+
integrationsLosLoansCreate: (data: LosLoanCreationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8560
8555
|
/**
|
|
8561
8556
|
* No description
|
|
8562
8557
|
*
|
|
@@ -8573,7 +8568,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8573
8568
|
pageNumber: number;
|
|
8574
8569
|
sortBy?: string;
|
|
8575
8570
|
sortDirection?: string;
|
|
8576
|
-
}, data: EncompassLogSearchCriteria, params?: RequestParams) => Promise<AxiosResponse<EncompassRequestLogPaginated, any
|
|
8571
|
+
}, data: EncompassLogSearchCriteria, params?: RequestParams) => Promise<AxiosResponse<EncompassRequestLogPaginated, any>>;
|
|
8577
8572
|
/**
|
|
8578
8573
|
* No description
|
|
8579
8574
|
*
|
|
@@ -8585,7 +8580,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8585
8580
|
* @response `200` `UsageReport` Success
|
|
8586
8581
|
* @response `404` `ProblemDetails` Not Found
|
|
8587
8582
|
*/
|
|
8588
|
-
getUsageReportById: (id: string, params?: RequestParams) => Promise<AxiosResponse<UsageReport, any
|
|
8583
|
+
getUsageReportById: (id: string, params?: RequestParams) => Promise<AxiosResponse<UsageReport, any>>;
|
|
8589
8584
|
/**
|
|
8590
8585
|
* No description
|
|
8591
8586
|
*
|
|
@@ -8602,7 +8597,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8602
8597
|
month?: number;
|
|
8603
8598
|
/** @format int32 */
|
|
8604
8599
|
year?: number;
|
|
8605
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UsageReport[], any
|
|
8600
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UsageReport[], any>>;
|
|
8606
8601
|
/**
|
|
8607
8602
|
* No description
|
|
8608
8603
|
*
|
|
@@ -8619,7 +8614,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8619
8614
|
month?: number;
|
|
8620
8615
|
/** @format int32 */
|
|
8621
8616
|
year?: number;
|
|
8622
|
-
}, params?: RequestParams) => Promise<AxiosResponse<any, any
|
|
8617
|
+
}, params?: RequestParams) => Promise<AxiosResponse<any, any>>;
|
|
8623
8618
|
/**
|
|
8624
8619
|
* No description
|
|
8625
8620
|
*
|
|
@@ -8630,7 +8625,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8630
8625
|
* @secure
|
|
8631
8626
|
* @response `200` `UsageReportDashboard` Success
|
|
8632
8627
|
*/
|
|
8633
|
-
getUsageReportDashboard: (params?: RequestParams) => Promise<AxiosResponse<UsageReportDashboard, any
|
|
8628
|
+
getUsageReportDashboard: (params?: RequestParams) => Promise<AxiosResponse<UsageReportDashboard, any>>;
|
|
8634
8629
|
/**
|
|
8635
8630
|
* No description
|
|
8636
8631
|
*
|
|
@@ -8642,7 +8637,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8642
8637
|
* @response `200` `UsageReportExecution` Success
|
|
8643
8638
|
* @response `404` `ProblemDetails` Not Found
|
|
8644
8639
|
*/
|
|
8645
|
-
getUsageReportExecution: (correlationId: string, params?: RequestParams) => Promise<AxiosResponse<UsageReportExecution, any
|
|
8640
|
+
getUsageReportExecution: (correlationId: string, params?: RequestParams) => Promise<AxiosResponse<UsageReportExecution, any>>;
|
|
8646
8641
|
/**
|
|
8647
8642
|
* No description
|
|
8648
8643
|
*
|
|
@@ -8659,7 +8654,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8659
8654
|
month?: number;
|
|
8660
8655
|
/** @format int32 */
|
|
8661
8656
|
year?: number;
|
|
8662
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UsageReportExecution[], any
|
|
8657
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UsageReportExecution[], any>>;
|
|
8663
8658
|
/**
|
|
8664
8659
|
* No description
|
|
8665
8660
|
*
|
|
@@ -8671,7 +8666,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8671
8666
|
* @response `201` `UserDevice` Created
|
|
8672
8667
|
* @response `400` `ProblemDetails` Bad Request
|
|
8673
8668
|
*/
|
|
8674
|
-
createUserDevice: (data: CreateUserDeviceRequest, params?: RequestParams) => Promise<AxiosResponse<UserDevice, any
|
|
8669
|
+
createUserDevice: (data: CreateUserDeviceRequest, params?: RequestParams) => Promise<AxiosResponse<UserDevice, any>>;
|
|
8675
8670
|
/**
|
|
8676
8671
|
* No description
|
|
8677
8672
|
*
|
|
@@ -8683,7 +8678,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8683
8678
|
* @response `204` `void` No Content
|
|
8684
8679
|
* @response `404` `ProblemDetails` Not Found
|
|
8685
8680
|
*/
|
|
8686
|
-
deleteUserDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
8681
|
+
deleteUserDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8687
8682
|
/**
|
|
8688
8683
|
* No description
|
|
8689
8684
|
*
|
|
@@ -8701,7 +8696,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8701
8696
|
pageNumber?: number;
|
|
8702
8697
|
sortBy?: string;
|
|
8703
8698
|
sortDirection?: string;
|
|
8704
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UserDraftPaginated, any
|
|
8699
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UserDraftPaginated, any>>;
|
|
8705
8700
|
/**
|
|
8706
8701
|
* No description
|
|
8707
8702
|
*
|
|
@@ -8712,7 +8707,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8712
8707
|
* @secure
|
|
8713
8708
|
* @response `200` `UserDraft` Success
|
|
8714
8709
|
*/
|
|
8715
|
-
getDraftUser: (draftId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<UserDraft, any
|
|
8710
|
+
getDraftUser: (draftId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<UserDraft, any>>;
|
|
8716
8711
|
/**
|
|
8717
8712
|
* No description
|
|
8718
8713
|
*
|
|
@@ -8723,7 +8718,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8723
8718
|
* @secure
|
|
8724
8719
|
* @response `200` `UserDraft` Success
|
|
8725
8720
|
*/
|
|
8726
|
-
addDraftUsers: (draftId: string, userId: string, data: CreateUserDraft, params?: RequestParams) => Promise<AxiosResponse<UserDraft, any
|
|
8721
|
+
addDraftUsers: (draftId: string, userId: string, data: CreateUserDraft, params?: RequestParams) => Promise<AxiosResponse<UserDraft, any>>;
|
|
8727
8722
|
/**
|
|
8728
8723
|
* No description
|
|
8729
8724
|
*
|
|
@@ -8734,7 +8729,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8734
8729
|
* @secure
|
|
8735
8730
|
* @response `204` `void` No Content
|
|
8736
8731
|
*/
|
|
8737
|
-
deleteDraftUser: (draftId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
8732
|
+
deleteDraftUser: (draftId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8738
8733
|
/**
|
|
8739
8734
|
* No description
|
|
8740
8735
|
*
|
|
@@ -8745,7 +8740,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8745
8740
|
* @secure
|
|
8746
8741
|
* @response `200` `(UserGroupAccessScope)[]` Success
|
|
8747
8742
|
*/
|
|
8748
|
-
getUserGroupAccessScopes: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope[], any
|
|
8743
|
+
getUserGroupAccessScopes: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope[], any>>;
|
|
8749
8744
|
/**
|
|
8750
8745
|
* No description
|
|
8751
8746
|
*
|
|
@@ -8756,7 +8751,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8756
8751
|
* @secure
|
|
8757
8752
|
* @response `200` `UserGroupAccessScope` Success
|
|
8758
8753
|
*/
|
|
8759
|
-
createUserGroupAccessScope: (groupId: string, data: CreateAccessScopeRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope, any
|
|
8754
|
+
createUserGroupAccessScope: (groupId: string, data: CreateAccessScopeRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope, any>>;
|
|
8760
8755
|
/**
|
|
8761
8756
|
* No description
|
|
8762
8757
|
*
|
|
@@ -8767,7 +8762,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8767
8762
|
* @secure
|
|
8768
8763
|
* @response `204` `void` No Content
|
|
8769
8764
|
*/
|
|
8770
|
-
deleteUserGroupAccessScope: (groupId: string, scopeId: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
8765
|
+
deleteUserGroupAccessScope: (groupId: string, scopeId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8771
8766
|
/**
|
|
8772
8767
|
* No description
|
|
8773
8768
|
*
|
|
@@ -8778,7 +8773,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8778
8773
|
* @secure
|
|
8779
8774
|
* @response `200` `(UserGroupMember)[]` Success
|
|
8780
8775
|
*/
|
|
8781
|
-
getUserGroupMembers: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupMember[], any
|
|
8776
|
+
getUserGroupMembers: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupMember[], any>>;
|
|
8782
8777
|
/**
|
|
8783
8778
|
* No description
|
|
8784
8779
|
*
|
|
@@ -8792,7 +8787,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8792
8787
|
createUserGroupMember: (groupId: string, data: CreateGroupMemberRequest, query?: {
|
|
8793
8788
|
/** @format uuid */
|
|
8794
8789
|
userId?: string;
|
|
8795
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UserGroupMember, any
|
|
8790
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UserGroupMember, any>>;
|
|
8796
8791
|
/**
|
|
8797
8792
|
* No description
|
|
8798
8793
|
*
|
|
@@ -8803,7 +8798,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8803
8798
|
* @secure
|
|
8804
8799
|
* @response `204` `void` No Content
|
|
8805
8800
|
*/
|
|
8806
|
-
deleteUserGroupMember: (groupId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
8801
|
+
deleteUserGroupMember: (groupId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8807
8802
|
/**
|
|
8808
8803
|
* No description
|
|
8809
8804
|
*
|
|
@@ -8822,7 +8817,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8822
8817
|
pageNumber?: number;
|
|
8823
8818
|
sortBy?: string;
|
|
8824
8819
|
sortDirection?: string;
|
|
8825
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UserGroupPaginated, any
|
|
8820
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UserGroupPaginated, any>>;
|
|
8826
8821
|
/**
|
|
8827
8822
|
* No description
|
|
8828
8823
|
*
|
|
@@ -8833,7 +8828,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8833
8828
|
* @secure
|
|
8834
8829
|
* @response `200` `UserGroup` Success
|
|
8835
8830
|
*/
|
|
8836
|
-
getUserGroup: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any
|
|
8831
|
+
getUserGroup: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any>>;
|
|
8837
8832
|
/**
|
|
8838
8833
|
* No description
|
|
8839
8834
|
*
|
|
@@ -8844,7 +8839,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8844
8839
|
* @secure
|
|
8845
8840
|
* @response `200` `UserGroup` Success
|
|
8846
8841
|
*/
|
|
8847
|
-
updateUserGroup: (groupId: string, data: UpdateUserGroupRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any
|
|
8842
|
+
updateUserGroup: (groupId: string, data: UpdateUserGroupRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any>>;
|
|
8848
8843
|
/**
|
|
8849
8844
|
* No description
|
|
8850
8845
|
*
|
|
@@ -8855,7 +8850,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8855
8850
|
* @secure
|
|
8856
8851
|
* @response `204` `void` No Content
|
|
8857
8852
|
*/
|
|
8858
|
-
deleteUserGroup: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
8853
|
+
deleteUserGroup: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8859
8854
|
/**
|
|
8860
8855
|
* No description
|
|
8861
8856
|
*
|
|
@@ -8866,7 +8861,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8866
8861
|
* @secure
|
|
8867
8862
|
* @response `201` `UserGroup` Created
|
|
8868
8863
|
*/
|
|
8869
|
-
createUserGroup: (data: CreateUserGroupRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any
|
|
8864
|
+
createUserGroup: (data: CreateUserGroupRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any>>;
|
|
8870
8865
|
/**
|
|
8871
8866
|
* No description
|
|
8872
8867
|
*
|
|
@@ -8879,7 +8874,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8879
8874
|
* @response `404` `Error` Not Found
|
|
8880
8875
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8881
8876
|
*/
|
|
8882
|
-
requestImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
8877
|
+
requestImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8883
8878
|
/**
|
|
8884
8879
|
* No description
|
|
8885
8880
|
*
|
|
@@ -8892,7 +8887,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8892
8887
|
* @response `404` `Error` Not Found
|
|
8893
8888
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8894
8889
|
*/
|
|
8895
|
-
allowImpersonation: (data: AllowImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
8890
|
+
allowImpersonation: (data: AllowImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8896
8891
|
/**
|
|
8897
8892
|
* No description
|
|
8898
8893
|
*
|
|
@@ -8905,7 +8900,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8905
8900
|
* @response `404` `Error` Not Found
|
|
8906
8901
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8907
8902
|
*/
|
|
8908
|
-
allowImpersonationWithGuid: (allowToken: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
8903
|
+
allowImpersonationWithGuid: (allowToken: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8909
8904
|
/**
|
|
8910
8905
|
* No description
|
|
8911
8906
|
*
|
|
@@ -8917,7 +8912,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8917
8912
|
* @response `204` `void` No Content
|
|
8918
8913
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8919
8914
|
*/
|
|
8920
|
-
beginImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
8915
|
+
beginImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8921
8916
|
/**
|
|
8922
8917
|
* No description
|
|
8923
8918
|
*
|
|
@@ -8929,7 +8924,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8929
8924
|
* @response `204` `void` No Content
|
|
8930
8925
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8931
8926
|
*/
|
|
8932
|
-
stopImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
8927
|
+
stopImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8933
8928
|
/**
|
|
8934
8929
|
* No description
|
|
8935
8930
|
*
|
|
@@ -8942,7 +8937,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8942
8937
|
* @response `404` `Error` Not Found
|
|
8943
8938
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8944
8939
|
*/
|
|
8945
|
-
forceImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
8940
|
+
forceImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8946
8941
|
/**
|
|
8947
8942
|
* No description
|
|
8948
8943
|
*
|
|
@@ -8954,7 +8949,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8954
8949
|
* @response `204` `void` No Content
|
|
8955
8950
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8956
8951
|
*/
|
|
8957
|
-
extendImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
8952
|
+
extendImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8958
8953
|
/**
|
|
8959
8954
|
* No description
|
|
8960
8955
|
*
|
|
@@ -8966,7 +8961,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8966
8961
|
* @response `204` `void` No Content
|
|
8967
8962
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8968
8963
|
*/
|
|
8969
|
-
inviteUser: (data: CreateInviteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
8964
|
+
inviteUser: (data: CreateInviteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8970
8965
|
/**
|
|
8971
8966
|
* No description
|
|
8972
8967
|
*
|
|
@@ -8979,7 +8974,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8979
8974
|
* @response `401` `UnprocessableEntity` Unauthorized
|
|
8980
8975
|
* @response `404` `UnprocessableEntity` Not Found
|
|
8981
8976
|
*/
|
|
8982
|
-
resendInviteNotification: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
8977
|
+
resendInviteNotification: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8983
8978
|
/**
|
|
8984
8979
|
* No description
|
|
8985
8980
|
*
|
|
@@ -8991,7 +8986,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8991
8986
|
* @response `200` `Invite` Success
|
|
8992
8987
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8993
8988
|
*/
|
|
8994
|
-
verifyUserInvite: (token: string, params?: RequestParams) => Promise<AxiosResponse<Invite, any
|
|
8989
|
+
verifyUserInvite: (token: string, params?: RequestParams) => Promise<AxiosResponse<Invite, any>>;
|
|
8995
8990
|
/**
|
|
8996
8991
|
* No description
|
|
8997
8992
|
*
|
|
@@ -9002,7 +8997,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9002
8997
|
* @secure
|
|
9003
8998
|
* @response `200` `(UserRelation)[]` Success
|
|
9004
8999
|
*/
|
|
9005
|
-
getUserRelations: (userId: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation[], any
|
|
9000
|
+
getUserRelations: (userId: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation[], any>>;
|
|
9006
9001
|
/**
|
|
9007
9002
|
* No description
|
|
9008
9003
|
*
|
|
@@ -9013,7 +9008,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9013
9008
|
* @secure
|
|
9014
9009
|
* @response `204` `void` No Content
|
|
9015
9010
|
*/
|
|
9016
|
-
createUserRelation: (userId: string, data: CreateUserRelationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
9011
|
+
createUserRelation: (userId: string, data: CreateUserRelationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9017
9012
|
/**
|
|
9018
9013
|
* No description
|
|
9019
9014
|
*
|
|
@@ -9024,7 +9019,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9024
9019
|
* @secure
|
|
9025
9020
|
* @response `200` `UserRelation` Success
|
|
9026
9021
|
*/
|
|
9027
|
-
getUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation, any
|
|
9022
|
+
getUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation, any>>;
|
|
9028
9023
|
/**
|
|
9029
9024
|
* No description
|
|
9030
9025
|
*
|
|
@@ -9035,7 +9030,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9035
9030
|
* @secure
|
|
9036
9031
|
* @response `204` `void` No Content
|
|
9037
9032
|
*/
|
|
9038
|
-
deleteUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
9033
|
+
deleteUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9039
9034
|
/**
|
|
9040
9035
|
* No description
|
|
9041
9036
|
*
|
|
@@ -9053,7 +9048,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9053
9048
|
pageNumber?: number;
|
|
9054
9049
|
sortBy?: string;
|
|
9055
9050
|
sortDirection?: string;
|
|
9056
|
-
}, params?: RequestParams) => Promise<AxiosResponse<User[], any
|
|
9051
|
+
}, params?: RequestParams) => Promise<AxiosResponse<User[], any>>;
|
|
9057
9052
|
/**
|
|
9058
9053
|
* No description
|
|
9059
9054
|
*
|
|
@@ -9065,7 +9060,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9065
9060
|
* @response `200` `DetailedUser` Success
|
|
9066
9061
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9067
9062
|
*/
|
|
9068
|
-
createUser: (data: CreateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any
|
|
9063
|
+
createUser: (data: CreateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
|
|
9069
9064
|
/**
|
|
9070
9065
|
* No description
|
|
9071
9066
|
*
|
|
@@ -9083,7 +9078,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9083
9078
|
pageNumber?: number;
|
|
9084
9079
|
sortBy?: string;
|
|
9085
9080
|
sortDirection?: string;
|
|
9086
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UserPaginated, any
|
|
9081
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UserPaginated, any>>;
|
|
9087
9082
|
/**
|
|
9088
9083
|
* No description
|
|
9089
9084
|
*
|
|
@@ -9094,7 +9089,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9094
9089
|
* @secure
|
|
9095
9090
|
* @response `200` `AdminAccessUser` Success
|
|
9096
9091
|
*/
|
|
9097
|
-
getUserByEmail: (data: GetUserByEmailRequest, params?: RequestParams) => Promise<AxiosResponse<AdminAccessUser, any
|
|
9092
|
+
getUserByEmail: (data: GetUserByEmailRequest, params?: RequestParams) => Promise<AxiosResponse<AdminAccessUser, any>>;
|
|
9098
9093
|
/**
|
|
9099
9094
|
* No description
|
|
9100
9095
|
*
|
|
@@ -9106,7 +9101,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9106
9101
|
* @response `200` `User` Success
|
|
9107
9102
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9108
9103
|
*/
|
|
9109
|
-
signUp: (data: RegisterUserRequest, params?: RequestParams) => Promise<AxiosResponse<User, any
|
|
9104
|
+
signUp: (data: RegisterUserRequest, params?: RequestParams) => Promise<AxiosResponse<User, any>>;
|
|
9110
9105
|
/**
|
|
9111
9106
|
* No description
|
|
9112
9107
|
*
|
|
@@ -9118,7 +9113,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9118
9113
|
* @response `200` `DetailedUser` Success
|
|
9119
9114
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9120
9115
|
*/
|
|
9121
|
-
replaceUser: (id: string, data: UpdateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any
|
|
9116
|
+
replaceUser: (id: string, data: UpdateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
|
|
9122
9117
|
/**
|
|
9123
9118
|
* No description
|
|
9124
9119
|
*
|
|
@@ -9132,7 +9127,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9132
9127
|
deleteUser: (id: string, query?: {
|
|
9133
9128
|
/** @default false */
|
|
9134
9129
|
permanent?: boolean;
|
|
9135
|
-
}, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
9130
|
+
}, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9136
9131
|
/**
|
|
9137
9132
|
* No description
|
|
9138
9133
|
*
|
|
@@ -9143,7 +9138,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9143
9138
|
* @secure
|
|
9144
9139
|
* @response `204` `void` No Content
|
|
9145
9140
|
*/
|
|
9146
|
-
restoreUser: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
9141
|
+
restoreUser: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9147
9142
|
/**
|
|
9148
9143
|
* No description
|
|
9149
9144
|
*
|
|
@@ -9155,7 +9150,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9155
9150
|
* @response `204` `void` No Content
|
|
9156
9151
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9157
9152
|
*/
|
|
9158
|
-
changePassword: (data: ChangePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
9153
|
+
changePassword: (data: ChangePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9159
9154
|
/**
|
|
9160
9155
|
* No description
|
|
9161
9156
|
*
|
|
@@ -9167,7 +9162,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9167
9162
|
* @response `204` `void` No Content
|
|
9168
9163
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9169
9164
|
*/
|
|
9170
|
-
verifyPassword: (data: VerifyPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
9165
|
+
verifyPassword: (data: VerifyPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9171
9166
|
/**
|
|
9172
9167
|
* No description
|
|
9173
9168
|
*
|
|
@@ -9179,7 +9174,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9179
9174
|
* @response `204` `void` No Content
|
|
9180
9175
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9181
9176
|
*/
|
|
9182
|
-
overridePassword: (id: string, data: OverridePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
9177
|
+
overridePassword: (id: string, data: OverridePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9183
9178
|
/**
|
|
9184
9179
|
* No description
|
|
9185
9180
|
*
|
|
@@ -9191,7 +9186,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9191
9186
|
* @response `204` `void` No Content
|
|
9192
9187
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9193
9188
|
*/
|
|
9194
|
-
forgotPassword: (data: SendForgotPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
9189
|
+
forgotPassword: (data: SendForgotPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9195
9190
|
/**
|
|
9196
9191
|
* No description
|
|
9197
9192
|
*
|
|
@@ -9203,7 +9198,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9203
9198
|
* @response `204` `void` No Content
|
|
9204
9199
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9205
9200
|
*/
|
|
9206
|
-
sendMobilePhoneVerificationCode: (params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
9201
|
+
sendMobilePhoneVerificationCode: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9207
9202
|
/**
|
|
9208
9203
|
* No description
|
|
9209
9204
|
*
|
|
@@ -9215,7 +9210,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9215
9210
|
* @response `204` `void` No Content
|
|
9216
9211
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9217
9212
|
*/
|
|
9218
|
-
verifyUserMobilePhone: (data: UserMobilePhoneVerificationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
9213
|
+
verifyUserMobilePhone: (data: UserMobilePhoneVerificationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9219
9214
|
/**
|
|
9220
9215
|
* No description
|
|
9221
9216
|
*
|
|
@@ -9227,7 +9222,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9227
9222
|
* @response `200` `ImpersonatedDetailedUser` Success
|
|
9228
9223
|
* @response `401` `ProblemDetails` Unauthorized
|
|
9229
9224
|
*/
|
|
9230
|
-
getMe: (params?: RequestParams) => Promise<AxiosResponse<ImpersonatedDetailedUser, any
|
|
9225
|
+
getMe: (params?: RequestParams) => Promise<AxiosResponse<ImpersonatedDetailedUser, any>>;
|
|
9231
9226
|
/**
|
|
9232
9227
|
* No description
|
|
9233
9228
|
*
|
|
@@ -9238,7 +9233,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9238
9233
|
* @secure
|
|
9239
9234
|
* @response `200` `DetailedUser` Success
|
|
9240
9235
|
*/
|
|
9241
|
-
replaceMe: (data: UpdateMeRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any
|
|
9236
|
+
replaceMe: (data: UpdateMeRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
|
|
9242
9237
|
/**
|
|
9243
9238
|
* @description Update the phone number If changed will send a verification code to the new number
|
|
9244
9239
|
*
|
|
@@ -9249,7 +9244,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9249
9244
|
* @secure
|
|
9250
9245
|
* @response `204` `DetailedUser` No Content
|
|
9251
9246
|
*/
|
|
9252
|
-
updateMyPhone: (data: UpdateMobilePhoneRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any
|
|
9247
|
+
updateMyPhone: (data: UpdateMobilePhoneRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
|
|
9253
9248
|
/**
|
|
9254
9249
|
* No description
|
|
9255
9250
|
*
|
|
@@ -9260,7 +9255,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9260
9255
|
* @secure
|
|
9261
9256
|
* @response `200` `(UserRelationship)[]` Success
|
|
9262
9257
|
*/
|
|
9263
|
-
getMyRelationships: (params?: RequestParams) => Promise<AxiosResponse<UserRelationship[], any
|
|
9258
|
+
getMyRelationships: (params?: RequestParams) => Promise<AxiosResponse<UserRelationship[], any>>;
|
|
9264
9259
|
/**
|
|
9265
9260
|
* No description
|
|
9266
9261
|
*
|
|
@@ -9271,7 +9266,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9271
9266
|
* @secure
|
|
9272
9267
|
* @response `200` `(UserRelationshipProspect)[]` Success
|
|
9273
9268
|
*/
|
|
9274
|
-
getMyRelationshipProspects: (params?: RequestParams) => Promise<AxiosResponse<UserRelationshipProspect[], any
|
|
9269
|
+
getMyRelationshipProspects: (params?: RequestParams) => Promise<AxiosResponse<UserRelationshipProspect[], any>>;
|
|
9275
9270
|
/**
|
|
9276
9271
|
* No description
|
|
9277
9272
|
*
|
|
@@ -9282,7 +9277,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9282
9277
|
* @secure
|
|
9283
9278
|
* @response `204` `void` No Content
|
|
9284
9279
|
*/
|
|
9285
|
-
deleteRelationshipProspect: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
9280
|
+
deleteRelationshipProspect: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9286
9281
|
/**
|
|
9287
9282
|
* No description
|
|
9288
9283
|
*
|
|
@@ -9293,7 +9288,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9293
9288
|
* @secure
|
|
9294
9289
|
* @response `204` `void` No Content
|
|
9295
9290
|
*/
|
|
9296
|
-
deleteMe: (data: UserAccountDeletionRequest, params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
9291
|
+
deleteMe: (data: UserAccountDeletionRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9297
9292
|
/**
|
|
9298
9293
|
* No description
|
|
9299
9294
|
*
|
|
@@ -9304,7 +9299,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9304
9299
|
* @secure
|
|
9305
9300
|
* @response `200` `GetForm` Success
|
|
9306
9301
|
*/
|
|
9307
|
-
getWorkflow: (data: GetWorkflowRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any
|
|
9302
|
+
getWorkflow: (data: GetWorkflowRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any>>;
|
|
9308
9303
|
};
|
|
9309
9304
|
sso: {
|
|
9310
9305
|
/**
|
|
@@ -9316,6 +9311,6 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9316
9311
|
* @secure
|
|
9317
9312
|
* @response `200` `void` Success
|
|
9318
9313
|
*/
|
|
9319
|
-
logoutList: (params?: RequestParams) => Promise<AxiosResponse<void, any
|
|
9314
|
+
logoutList: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9320
9315
|
};
|
|
9321
9316
|
}
|