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