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