@matech/thebigpos-sdk 2.38.2-rc1 → 2.38.3-rc0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude/settings.local.json +48 -0
- package/dist/index.d.ts +377 -335
- package/dist/index.js +32 -8
- package/dist/index.js.map +1 -1
- package/package.json +7 -3
- package/scripts/apply-json-patch-content-type.js +2 -2
- package/src/index.ts +105 -27
package/dist/index.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ export type TaskStatus = "Outstanding" | "Pending" | "Completed" | "Rejected" |
|
|
|
4
4
|
export type SiteConfigurationType = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5
5
|
export type SigningMethod = "ConsumerConnect" | "POSF";
|
|
6
6
|
export type SSOIntegrationType = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
7
|
+
export type LosOperationStatus = "Pending" | "Success" | "Failed" | "ConfigurationError" | "PermanentFailure";
|
|
7
8
|
export type LogLevel = "None" | "Info" | "Warning" | "Error";
|
|
8
9
|
export type LoanType = "Fha" | "Conventional" | "UsdaRd" | "Va" | "Other";
|
|
9
10
|
export type LoanTrustType = "Living" | "Land" | "Testamentary" | "Other";
|
|
@@ -26,7 +27,7 @@ export type LoanNameSuffix = "Jr" | "Sr" | "II" | "III" | "IV" | "V" | "VI" | "V
|
|
|
26
27
|
export type LoanNamePrefix = "Mr" | "Mrs" | "Ms";
|
|
27
28
|
export type LoanMilitaryServiceType = "Current" | "RetiredDischargedSeparated" | "NonActivatedNationalGuard" | "SurvivingSpouse";
|
|
28
29
|
export type LoanMaritalStatus = "Married" | "Separated" | "Unmarried";
|
|
29
|
-
export type LoanLogType = "Loan" | "Queue" | "POSFlagChanged" | "Verification" | "DocumentUploaded" | "LoanCreated" | "WorkflowSubmitted" | "UserInvitationSent" | "CoBorrowerAdded" | "TaskCompleted" | "LoanStatusChanged" | "
|
|
30
|
+
export type LoanLogType = "Loan" | "Queue" | "POSFlagChanged" | "Verification" | "DocumentUploaded" | "LoanCreated" | "WorkflowSubmitted" | "UserInvitationSent" | "CoBorrowerAdded" | "TaskCompleted" | "LoanStatusChanged" | "Consent" | "SensitiveDataPurge" | "ClosingDateUpdated" | "ConsumerConnectAssociation" | "TaskReminderSent";
|
|
30
31
|
export type LoanLienPosition = "First" | "Subordinate";
|
|
31
32
|
export type LoanLiabilityType = "Revolving" | "Installment" | "Open30Day" | "Lease" | "Other";
|
|
32
33
|
export type LoanLanguagePreference = "English" | "Chinese" | "Korean" | "Spanish" | "Tagalog" | "Vietnamese" | "Other";
|
|
@@ -49,9 +50,8 @@ export type FilterType = "DateGreaterThanOrEqualTo" | "DateGreaterThan" | "DateL
|
|
|
49
50
|
export type Environment = "Development" | "Staging" | "UAT" | "Production";
|
|
50
51
|
export type EntityType = "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Realtor";
|
|
51
52
|
export type EncompassLogOutcome = "Success" | "Failure" | "PartialSuccess";
|
|
52
|
-
export type EncompassLogOperationType = "FieldUpdate" | "
|
|
53
|
+
export type EncompassLogOperationType = "FieldUpdate" | "ConsentUpdate" | "DocumentSync" | "MilestoneUpdate" | "DocumentAttachment" | "General" | "FieldReader";
|
|
53
54
|
export type DraftType = "NewLoan" | "EditLoan";
|
|
54
|
-
export type ConsumerConnectAssociationStatus = "Legacy" | "Pending" | "Success" | "Failed" | "ConfigurationError" | "PermanentFailure";
|
|
55
55
|
export type ConsentType = "Econsent" | "CreditAuthorization" | "Tcpa";
|
|
56
56
|
export type ConsentLosSyncStatus = "NotStarted" | "Failed" | "Success";
|
|
57
57
|
export type BranchType = "Mortgage" | "RealEstate";
|
|
@@ -647,7 +647,7 @@ export interface ConsumerConnectRetry {
|
|
|
647
647
|
/** @format uuid */
|
|
648
648
|
userLoanId: string;
|
|
649
649
|
email: string;
|
|
650
|
-
status?:
|
|
650
|
+
status?: LosOperationStatus | null;
|
|
651
651
|
success: boolean;
|
|
652
652
|
}
|
|
653
653
|
export interface ConsumerConnectStatus {
|
|
@@ -657,7 +657,7 @@ export interface ConsumerConnectStatus {
|
|
|
657
657
|
userId: string;
|
|
658
658
|
email: string;
|
|
659
659
|
role: ConsumerConnectStatusRoleEnum;
|
|
660
|
-
status?:
|
|
660
|
+
status?: LosOperationStatus | null;
|
|
661
661
|
/** @format int32 */
|
|
662
662
|
attemptCount: number;
|
|
663
663
|
/** @format date-time */
|
|
@@ -3255,6 +3255,11 @@ export interface LoanTaskSearchRequest {
|
|
|
3255
3255
|
loanId?: string | null;
|
|
3256
3256
|
loanStatus?: LoanTaskActivityFilter | null;
|
|
3257
3257
|
}
|
|
3258
|
+
export interface LoanTaskStatusSummary {
|
|
3259
|
+
status: LoanTaskStatusSummaryStatusEnum;
|
|
3260
|
+
/** @format int32 */
|
|
3261
|
+
count: number;
|
|
3262
|
+
}
|
|
3258
3263
|
export interface LoanUser {
|
|
3259
3264
|
/** @format uuid */
|
|
3260
3265
|
id: string;
|
|
@@ -3446,6 +3451,8 @@ export interface NotificationTemplate {
|
|
|
3446
3451
|
isDefault: boolean;
|
|
3447
3452
|
status: string;
|
|
3448
3453
|
useDefaultHeaderAndFooter: boolean;
|
|
3454
|
+
multipleCustomTemplates: boolean;
|
|
3455
|
+
allowedRoles?: string[] | null;
|
|
3449
3456
|
versions: NotificationTemplateVersionBase[];
|
|
3450
3457
|
}
|
|
3451
3458
|
export interface NotificationTemplateBase {
|
|
@@ -3471,6 +3478,8 @@ export interface NotificationTemplateBase {
|
|
|
3471
3478
|
isDefault: boolean;
|
|
3472
3479
|
status: string;
|
|
3473
3480
|
useDefaultHeaderAndFooter: boolean;
|
|
3481
|
+
multipleCustomTemplates: boolean;
|
|
3482
|
+
allowedRoles?: string[] | null;
|
|
3474
3483
|
}
|
|
3475
3484
|
export interface NotificationTemplateBasePaginated {
|
|
3476
3485
|
rows: NotificationTemplateBase[];
|
|
@@ -3565,7 +3574,7 @@ export interface NotificationTemplateVersionUpdateRequest {
|
|
|
3565
3574
|
}
|
|
3566
3575
|
export interface Operation {
|
|
3567
3576
|
op?: string;
|
|
3568
|
-
value?:
|
|
3577
|
+
value?: object | null;
|
|
3569
3578
|
path?: string;
|
|
3570
3579
|
}
|
|
3571
3580
|
export interface OverridePasswordRequest {
|
|
@@ -3915,6 +3924,14 @@ export interface SendLoanDocumentsRequest {
|
|
|
3915
3924
|
loanUserIDs: string[];
|
|
3916
3925
|
emailAddresses: string[];
|
|
3917
3926
|
}
|
|
3927
|
+
export interface SendLoanTaskReminderRequest {
|
|
3928
|
+
/**
|
|
3929
|
+
* @format uuid
|
|
3930
|
+
* @minLength 1
|
|
3931
|
+
*/
|
|
3932
|
+
templateId: string;
|
|
3933
|
+
userIds?: string[] | null;
|
|
3934
|
+
}
|
|
3918
3935
|
export interface SendNotificationForLoanRequest {
|
|
3919
3936
|
/** @minLength 1 */
|
|
3920
3937
|
loanID: string;
|
|
@@ -5368,7 +5385,7 @@ export type DraftTypeEnum = "NewLoan" | "EditLoan";
|
|
|
5368
5385
|
export type DraftContentTypeEnum = "NewLoan" | "EditLoan";
|
|
5369
5386
|
export type EncompassCredentialsDetailSigningMethodEnum = "ConsumerConnect" | "POSF";
|
|
5370
5387
|
export type EncompassCredentialsRequestSigningMethodEnum = "ConsumerConnect" | "POSF";
|
|
5371
|
-
export type EncompassRequestLogOperationTypeEnum = "FieldUpdate" | "
|
|
5388
|
+
export type EncompassRequestLogOperationTypeEnum = "FieldUpdate" | "ConsentUpdate" | "DocumentSync" | "MilestoneUpdate" | "DocumentAttachment" | "General" | "FieldReader";
|
|
5372
5389
|
export type EncompassRequestLogOutcomeEnum = "Success" | "Failure" | "PartialSuccess";
|
|
5373
5390
|
export type FusionReportFilterFilterTypeEnum = "DateGreaterThanOrEqualTo" | "DateGreaterThan" | "DateLessThan" | "DateLessThanOrEqualTo" | "DateEquals" | "DateDoesntEqual" | "DateNonEmpty" | "DateEmpty" | "StringContains" | "StringEquals" | "StringNotEmpty" | "StringNotEquals" | "StringNotContains";
|
|
5374
5391
|
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";
|
|
@@ -5379,9 +5396,10 @@ export type LoanImportStatusEnum = "WaitingProcess" | "InProgress" | "Completed"
|
|
|
5379
5396
|
export type LoanImportImportModeEnum = "All" | "NewOnly" | "UpdateOnly";
|
|
5380
5397
|
export type LoanImportLogLevelEnum = "None" | "Info" | "Warning" | "Error";
|
|
5381
5398
|
export type LoanLogLevelEnum = "None" | "Info" | "Warning" | "Error";
|
|
5382
|
-
export type LoanLogTypeEnum = "Loan" | "Queue" | "POSFlagChanged" | "Verification" | "DocumentUploaded" | "LoanCreated" | "WorkflowSubmitted" | "UserInvitationSent" | "CoBorrowerAdded" | "TaskCompleted" | "LoanStatusChanged" | "
|
|
5399
|
+
export type LoanLogTypeEnum = "Loan" | "Queue" | "POSFlagChanged" | "Verification" | "DocumentUploaded" | "LoanCreated" | "WorkflowSubmitted" | "UserInvitationSent" | "CoBorrowerAdded" | "TaskCompleted" | "LoanStatusChanged" | "Consent" | "SensitiveDataPurge" | "ClosingDateUpdated" | "ConsumerConnectAssociation" | "TaskReminderSent";
|
|
5383
5400
|
export type LoanLogDetailLevelEnum = "None" | "Info" | "Warning" | "Error";
|
|
5384
|
-
export type LoanLogDetailTypeEnum = "Loan" | "Queue" | "POSFlagChanged" | "Verification" | "DocumentUploaded" | "LoanCreated" | "WorkflowSubmitted" | "UserInvitationSent" | "CoBorrowerAdded" | "TaskCompleted" | "LoanStatusChanged" | "
|
|
5401
|
+
export type LoanLogDetailTypeEnum = "Loan" | "Queue" | "POSFlagChanged" | "Verification" | "DocumentUploaded" | "LoanCreated" | "WorkflowSubmitted" | "UserInvitationSent" | "CoBorrowerAdded" | "TaskCompleted" | "LoanStatusChanged" | "Consent" | "SensitiveDataPurge" | "ClosingDateUpdated" | "ConsumerConnectAssociation" | "TaskReminderSent";
|
|
5402
|
+
export type LoanTaskStatusSummaryStatusEnum = "Outstanding" | "Pending" | "Completed" | "Rejected" | "Unknown";
|
|
5385
5403
|
export type LoanUserLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
|
|
5386
5404
|
export type SamlMetadataRequestSsoIntegrationEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
5387
5405
|
export type SiteConfigurationTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
@@ -5424,7 +5442,6 @@ export interface ApiConfig<SecurityDataType = unknown> extends Omit<AxiosRequest
|
|
|
5424
5442
|
format?: ResponseType;
|
|
5425
5443
|
}
|
|
5426
5444
|
export declare enum ContentType {
|
|
5427
|
-
JsonPatch = "application/json-patch+json",
|
|
5428
5445
|
Json = "application/json",
|
|
5429
5446
|
JsonApi = "application/vnd.api+json",
|
|
5430
5447
|
FormData = "multipart/form-data",
|
|
@@ -5446,7 +5463,7 @@ export declare class HttpClient<SecurityDataType = unknown> {
|
|
|
5446
5463
|
}
|
|
5447
5464
|
/**
|
|
5448
5465
|
* @title The Big POS API
|
|
5449
|
-
* @version v2.38.
|
|
5466
|
+
* @version v2.38.2
|
|
5450
5467
|
* @termsOfService https://www.thebigpos.com/terms-of-use/
|
|
5451
5468
|
* @contact Mortgage Automation Technologies <support@thebigpos.com> (https://www.thebigpos.com/terms-of-use/)
|
|
5452
5469
|
*/
|
|
@@ -5460,7 +5477,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5460
5477
|
* @secure
|
|
5461
5478
|
* @response `200` `void` Success
|
|
5462
5479
|
*/
|
|
5463
|
-
postRoot: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
5480
|
+
postRoot: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
5464
5481
|
/**
|
|
5465
5482
|
* No description
|
|
5466
5483
|
*
|
|
@@ -5470,7 +5487,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5470
5487
|
* @secure
|
|
5471
5488
|
* @response `200` `string` Success
|
|
5472
5489
|
*/
|
|
5473
|
-
getRoot: (params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
5490
|
+
getRoot: (params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
5474
5491
|
api: {
|
|
5475
5492
|
/**
|
|
5476
5493
|
* No description
|
|
@@ -5483,7 +5500,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5483
5500
|
* @response `200` `Account` Success
|
|
5484
5501
|
* @response `404` `ProblemDetails` Not Found
|
|
5485
5502
|
*/
|
|
5486
|
-
getMyAccount: (params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
|
|
5503
|
+
getMyAccount: (params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
|
|
5487
5504
|
/**
|
|
5488
5505
|
* No description
|
|
5489
5506
|
*
|
|
@@ -5496,7 +5513,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5496
5513
|
* @response `404` `ProblemDetails` Not Found
|
|
5497
5514
|
* @response `422` `ProblemDetails` Client Error
|
|
5498
5515
|
*/
|
|
5499
|
-
replaceMyAccount: (data: UpdateAccountRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
|
|
5516
|
+
replaceMyAccount: (data: UpdateAccountRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
|
|
5500
5517
|
/**
|
|
5501
5518
|
* No description
|
|
5502
5519
|
*
|
|
@@ -5507,7 +5524,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5507
5524
|
* @secure
|
|
5508
5525
|
* @response `200` `SiteConfiguration` Success
|
|
5509
5526
|
*/
|
|
5510
|
-
getSiteConfigurationByAccount: (params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
5527
|
+
getSiteConfigurationByAccount: (params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
5511
5528
|
/**
|
|
5512
5529
|
* No description
|
|
5513
5530
|
*
|
|
@@ -5519,7 +5536,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5519
5536
|
* @response `200` `SiteConfiguration` Success
|
|
5520
5537
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5521
5538
|
*/
|
|
5522
|
-
updateSiteConfigurationForAccount: (data: SiteConfiguration, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
5539
|
+
updateSiteConfigurationForAccount: (data: SiteConfiguration, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
5523
5540
|
/**
|
|
5524
5541
|
* No description
|
|
5525
5542
|
*
|
|
@@ -5530,7 +5547,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5530
5547
|
* @secure
|
|
5531
5548
|
* @response `200` `(Account)[]` Success
|
|
5532
5549
|
*/
|
|
5533
|
-
getAccounts: (params?: RequestParams) => Promise<AxiosResponse<Account[], any>>;
|
|
5550
|
+
getAccounts: (params?: RequestParams) => Promise<AxiosResponse<Account[], any, {}>>;
|
|
5534
5551
|
/**
|
|
5535
5552
|
* No description
|
|
5536
5553
|
*
|
|
@@ -5542,7 +5559,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5542
5559
|
* @response `201` `Account` Created
|
|
5543
5560
|
* @response `422` `ProblemDetails` Client Error
|
|
5544
5561
|
*/
|
|
5545
|
-
createAccount: (data: CreateAccountRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
|
|
5562
|
+
createAccount: (data: CreateAccountRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
|
|
5546
5563
|
/**
|
|
5547
5564
|
* No description
|
|
5548
5565
|
*
|
|
@@ -5554,7 +5571,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5554
5571
|
* @response `201` `Account` Created
|
|
5555
5572
|
* @response `422` `ProblemDetails` Client Error
|
|
5556
5573
|
*/
|
|
5557
|
-
getAccount: (id: string, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
|
|
5574
|
+
getAccount: (id: string, params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
|
|
5558
5575
|
/**
|
|
5559
5576
|
* No description
|
|
5560
5577
|
*
|
|
@@ -5570,7 +5587,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5570
5587
|
deleteAccount: (id: string, query?: {
|
|
5571
5588
|
/** @default false */
|
|
5572
5589
|
hardDelete?: boolean;
|
|
5573
|
-
}, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
|
|
5590
|
+
}, params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
|
|
5574
5591
|
/**
|
|
5575
5592
|
* No description
|
|
5576
5593
|
*
|
|
@@ -5583,7 +5600,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5583
5600
|
* @response `404` `ProblemDetails` Not Found
|
|
5584
5601
|
* @response `422` `ProblemDetails` Client Error
|
|
5585
5602
|
*/
|
|
5586
|
-
updateAccountBilling: (id: string, data: AccountBillingRequest, params?: RequestParams) => Promise<AxiosResponse<AccountBilling, any>>;
|
|
5603
|
+
updateAccountBilling: (id: string, data: AccountBillingRequest, params?: RequestParams) => Promise<AxiosResponse<AccountBilling, any, {}>>;
|
|
5587
5604
|
/**
|
|
5588
5605
|
* No description
|
|
5589
5606
|
*
|
|
@@ -5601,7 +5618,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5601
5618
|
pageNumber?: number;
|
|
5602
5619
|
sortBy?: string;
|
|
5603
5620
|
sortDirection?: string;
|
|
5604
|
-
}, params?: RequestParams) => Promise<AxiosResponse<AuditLogEntryPaginated, any>>;
|
|
5621
|
+
}, params?: RequestParams) => Promise<AxiosResponse<AuditLogEntryPaginated, any, {}>>;
|
|
5605
5622
|
/**
|
|
5606
5623
|
* No description
|
|
5607
5624
|
*
|
|
@@ -5612,7 +5629,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5612
5629
|
* @secure
|
|
5613
5630
|
* @response `200` `(AuditEntityType)[]` Success
|
|
5614
5631
|
*/
|
|
5615
|
-
getAuditLogEntityTypes: (params?: RequestParams) => Promise<AxiosResponse<AuditEntityType[], any>>;
|
|
5632
|
+
getAuditLogEntityTypes: (params?: RequestParams) => Promise<AxiosResponse<AuditEntityType[], any, {}>>;
|
|
5616
5633
|
/**
|
|
5617
5634
|
* No description
|
|
5618
5635
|
*
|
|
@@ -5624,7 +5641,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5624
5641
|
* @response `200` `AuditLogEntry` Success
|
|
5625
5642
|
* @response `404` `ProblemDetails` Not Found
|
|
5626
5643
|
*/
|
|
5627
|
-
getAuditLogById: (id: string, params?: RequestParams) => Promise<AxiosResponse<AuditLogEntry, any>>;
|
|
5644
|
+
getAuditLogById: (id: string, params?: RequestParams) => Promise<AxiosResponse<AuditLogEntry, any, {}>>;
|
|
5628
5645
|
/**
|
|
5629
5646
|
* No description
|
|
5630
5647
|
*
|
|
@@ -5637,7 +5654,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5637
5654
|
* @response `401` `ProblemDetails` Unauthorized
|
|
5638
5655
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5639
5656
|
*/
|
|
5640
|
-
getTokenFromRefreshToken: (data: RefreshTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any>>;
|
|
5657
|
+
getTokenFromRefreshToken: (data: RefreshTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any, {}>>;
|
|
5641
5658
|
/**
|
|
5642
5659
|
* No description
|
|
5643
5660
|
*
|
|
@@ -5649,7 +5666,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5649
5666
|
* @response `200` `ForcePasswordReset` Success
|
|
5650
5667
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5651
5668
|
*/
|
|
5652
|
-
getToken: (data: TokenRequest, params?: RequestParams) => Promise<AxiosResponse<ForcePasswordReset, any>>;
|
|
5669
|
+
getToken: (data: TokenRequest, params?: RequestParams) => Promise<AxiosResponse<ForcePasswordReset, any, {}>>;
|
|
5653
5670
|
/**
|
|
5654
5671
|
* No description
|
|
5655
5672
|
*
|
|
@@ -5661,7 +5678,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5661
5678
|
* @response `200` `ForcePasswordReset` Success
|
|
5662
5679
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5663
5680
|
*/
|
|
5664
|
-
getTokenFromChallengeCode: (data: TokenChallengeRequest, params?: RequestParams) => Promise<AxiosResponse<ForcePasswordReset, any>>;
|
|
5681
|
+
getTokenFromChallengeCode: (data: TokenChallengeRequest, params?: RequestParams) => Promise<AxiosResponse<ForcePasswordReset, any, {}>>;
|
|
5665
5682
|
/**
|
|
5666
5683
|
* No description
|
|
5667
5684
|
*
|
|
@@ -5673,7 +5690,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5673
5690
|
* @response `200` `Token` Success
|
|
5674
5691
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5675
5692
|
*/
|
|
5676
|
-
getSystemToken: (data: SystemTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any>>;
|
|
5693
|
+
getSystemToken: (data: SystemTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any, {}>>;
|
|
5677
5694
|
/**
|
|
5678
5695
|
* No description
|
|
5679
5696
|
*
|
|
@@ -5685,7 +5702,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5685
5702
|
* @response `200` `SSOToken` Success
|
|
5686
5703
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5687
5704
|
*/
|
|
5688
|
-
getSsoToken: (data: SSOTokenRequest, params?: RequestParams) => Promise<AxiosResponse<SSOToken, any>>;
|
|
5705
|
+
getSsoToken: (data: SSOTokenRequest, params?: RequestParams) => Promise<AxiosResponse<SSOToken, any, {}>>;
|
|
5689
5706
|
/**
|
|
5690
5707
|
* No description
|
|
5691
5708
|
*
|
|
@@ -5697,7 +5714,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5697
5714
|
* @response `204` `NoContentResult` No Content
|
|
5698
5715
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5699
5716
|
*/
|
|
5700
|
-
logOut: (params?: RequestParams) => Promise<AxiosResponse<NoContentResult, any>>;
|
|
5717
|
+
logOut: (params?: RequestParams) => Promise<AxiosResponse<NoContentResult, any, {}>>;
|
|
5701
5718
|
/**
|
|
5702
5719
|
* No description
|
|
5703
5720
|
*
|
|
@@ -5716,7 +5733,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5716
5733
|
pageNumber?: number;
|
|
5717
5734
|
sortBy?: string;
|
|
5718
5735
|
sortDirection?: string;
|
|
5719
|
-
}, params?: RequestParams) => Promise<AxiosResponse<GetBranchPaginated, any>>;
|
|
5736
|
+
}, params?: RequestParams) => Promise<AxiosResponse<GetBranchPaginated, any, {}>>;
|
|
5720
5737
|
/**
|
|
5721
5738
|
* No description
|
|
5722
5739
|
*
|
|
@@ -5728,7 +5745,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5728
5745
|
* @response `200` `GetBranch` Success
|
|
5729
5746
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5730
5747
|
*/
|
|
5731
|
-
createBranch: (data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any>>;
|
|
5748
|
+
createBranch: (data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any, {}>>;
|
|
5732
5749
|
/**
|
|
5733
5750
|
* No description
|
|
5734
5751
|
*
|
|
@@ -5746,7 +5763,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5746
5763
|
pageNumber?: number;
|
|
5747
5764
|
sortBy?: string;
|
|
5748
5765
|
sortDirection?: string;
|
|
5749
|
-
}, params?: RequestParams) => Promise<AxiosResponse<GetBranchPaginated, any>>;
|
|
5766
|
+
}, params?: RequestParams) => Promise<AxiosResponse<GetBranchPaginated, any, {}>>;
|
|
5750
5767
|
/**
|
|
5751
5768
|
* No description
|
|
5752
5769
|
*
|
|
@@ -5757,7 +5774,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5757
5774
|
* @secure
|
|
5758
5775
|
* @response `200` `GetBranch` Success
|
|
5759
5776
|
*/
|
|
5760
|
-
getBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any>>;
|
|
5777
|
+
getBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any, {}>>;
|
|
5761
5778
|
/**
|
|
5762
5779
|
* No description
|
|
5763
5780
|
*
|
|
@@ -5769,7 +5786,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5769
5786
|
* @response `200` `GetBranch` Success
|
|
5770
5787
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5771
5788
|
*/
|
|
5772
|
-
replaceBranch: (branchId: string, data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any>>;
|
|
5789
|
+
replaceBranch: (branchId: string, data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any, {}>>;
|
|
5773
5790
|
/**
|
|
5774
5791
|
* No description
|
|
5775
5792
|
*
|
|
@@ -5780,7 +5797,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5780
5797
|
* @secure
|
|
5781
5798
|
* @response `204` `void` No Content
|
|
5782
5799
|
*/
|
|
5783
|
-
deleteBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
5800
|
+
deleteBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
5784
5801
|
/**
|
|
5785
5802
|
* No description
|
|
5786
5803
|
*
|
|
@@ -5792,7 +5809,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5792
5809
|
* @response `204` `void` No Content
|
|
5793
5810
|
* @response `400` `ProblemDetails` Bad Request
|
|
5794
5811
|
*/
|
|
5795
|
-
restoreBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
5812
|
+
restoreBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
5796
5813
|
/**
|
|
5797
5814
|
* No description
|
|
5798
5815
|
*
|
|
@@ -5804,7 +5821,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5804
5821
|
* @response `200` `SiteConfiguration` Success
|
|
5805
5822
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5806
5823
|
*/
|
|
5807
|
-
createBranchSiteConfiguration: (branchId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
5824
|
+
createBranchSiteConfiguration: (branchId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
5808
5825
|
/**
|
|
5809
5826
|
* No description
|
|
5810
5827
|
*
|
|
@@ -5815,7 +5832,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5815
5832
|
* @secure
|
|
5816
5833
|
* @response `200` `SiteConfigurationWithInherited` Success
|
|
5817
5834
|
*/
|
|
5818
|
-
getBranchSiteConfiguration: (branchId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
|
|
5835
|
+
getBranchSiteConfiguration: (branchId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any, {}>>;
|
|
5819
5836
|
/**
|
|
5820
5837
|
* No description
|
|
5821
5838
|
*
|
|
@@ -5829,7 +5846,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5829
5846
|
*/
|
|
5830
5847
|
replaceBranchSiteConfiguration: (branchId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
|
|
5831
5848
|
applyToChildren?: boolean;
|
|
5832
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
5849
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
5833
5850
|
/**
|
|
5834
5851
|
* No description
|
|
5835
5852
|
*
|
|
@@ -5840,7 +5857,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5840
5857
|
* @secure
|
|
5841
5858
|
* @response `200` `(LoanOfficerPublic)[]` Success
|
|
5842
5859
|
*/
|
|
5843
|
-
getLoanOfficersByBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic[], any>>;
|
|
5860
|
+
getLoanOfficersByBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic[], any, {}>>;
|
|
5844
5861
|
/**
|
|
5845
5862
|
* No description
|
|
5846
5863
|
*
|
|
@@ -5853,7 +5870,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5853
5870
|
*/
|
|
5854
5871
|
getBusinessRules: (query?: {
|
|
5855
5872
|
showAll?: boolean;
|
|
5856
|
-
}, params?: RequestParams) => Promise<AxiosResponse<BusinessRule[], any>>;
|
|
5873
|
+
}, params?: RequestParams) => Promise<AxiosResponse<BusinessRule[], any, {}>>;
|
|
5857
5874
|
/**
|
|
5858
5875
|
* No description
|
|
5859
5876
|
*
|
|
@@ -5865,7 +5882,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5865
5882
|
* @response `200` `BusinessRule` Success
|
|
5866
5883
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5867
5884
|
*/
|
|
5868
|
-
createBusinessRule: (data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
|
|
5885
|
+
createBusinessRule: (data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any, {}>>;
|
|
5869
5886
|
/**
|
|
5870
5887
|
* No description
|
|
5871
5888
|
*
|
|
@@ -5876,7 +5893,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5876
5893
|
* @secure
|
|
5877
5894
|
* @response `200` `BusinessRule` Success
|
|
5878
5895
|
*/
|
|
5879
|
-
getBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
|
|
5896
|
+
getBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any, {}>>;
|
|
5880
5897
|
/**
|
|
5881
5898
|
* No description
|
|
5882
5899
|
*
|
|
@@ -5888,7 +5905,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5888
5905
|
* @response `200` `BusinessRule` Success
|
|
5889
5906
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5890
5907
|
*/
|
|
5891
|
-
replaceBusinessRule: (id: string, data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
|
|
5908
|
+
replaceBusinessRule: (id: string, data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any, {}>>;
|
|
5892
5909
|
/**
|
|
5893
5910
|
* No description
|
|
5894
5911
|
*
|
|
@@ -5899,7 +5916,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5899
5916
|
* @secure
|
|
5900
5917
|
* @response `204` `void` No Content
|
|
5901
5918
|
*/
|
|
5902
|
-
deleteBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
5919
|
+
deleteBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
5903
5920
|
/**
|
|
5904
5921
|
* No description
|
|
5905
5922
|
*
|
|
@@ -5910,7 +5927,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5910
5927
|
* @secure
|
|
5911
5928
|
* @response `200` `BusinessRule` Success
|
|
5912
5929
|
*/
|
|
5913
|
-
restoreBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
|
|
5930
|
+
restoreBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any, {}>>;
|
|
5914
5931
|
/**
|
|
5915
5932
|
* @description Returns closed loan counts per account within the specified date range, including POS vs non-POS breakdown and utilization ratios.
|
|
5916
5933
|
*
|
|
@@ -5921,7 +5938,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5921
5938
|
* @secure
|
|
5922
5939
|
* @response `200` `ClosedLoansReport` Success
|
|
5923
5940
|
*/
|
|
5924
|
-
getClosedLoansReport: (data: ClosedLoansReportRequest, params?: RequestParams) => Promise<AxiosResponse<ClosedLoansReport, any>>;
|
|
5941
|
+
getClosedLoansReport: (data: ClosedLoansReportRequest, params?: RequestParams) => Promise<AxiosResponse<ClosedLoansReport, any, {}>>;
|
|
5925
5942
|
/**
|
|
5926
5943
|
* No description
|
|
5927
5944
|
*
|
|
@@ -5932,7 +5949,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5932
5949
|
* @secure
|
|
5933
5950
|
* @response `200` `(ConsumerConnectStatus)[]` Success
|
|
5934
5951
|
*/
|
|
5935
|
-
getConsumerConnectStatus: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<ConsumerConnectStatus[], any>>;
|
|
5952
|
+
getConsumerConnectStatus: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<ConsumerConnectStatus[], any, {}>>;
|
|
5936
5953
|
/**
|
|
5937
5954
|
* No description
|
|
5938
5955
|
*
|
|
@@ -5943,7 +5960,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5943
5960
|
* @secure
|
|
5944
5961
|
* @response `200` `(ConsumerConnectRetry)[]` Success
|
|
5945
5962
|
*/
|
|
5946
|
-
retryConsumerConnectAssociation: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<ConsumerConnectRetry[], any>>;
|
|
5963
|
+
retryConsumerConnectAssociation: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<ConsumerConnectRetry[], any, {}>>;
|
|
5947
5964
|
/**
|
|
5948
5965
|
* No description
|
|
5949
5966
|
*
|
|
@@ -5962,7 +5979,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5962
5979
|
pageNumber?: number;
|
|
5963
5980
|
sortBy?: string;
|
|
5964
5981
|
sortDirection?: string;
|
|
5965
|
-
}, params?: RequestParams) => Promise<AxiosResponse<CorporatePaginated, any>>;
|
|
5982
|
+
}, params?: RequestParams) => Promise<AxiosResponse<CorporatePaginated, any, {}>>;
|
|
5966
5983
|
/**
|
|
5967
5984
|
* No description
|
|
5968
5985
|
*
|
|
@@ -5974,7 +5991,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5974
5991
|
* @response `200` `Corporate` Success
|
|
5975
5992
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5976
5993
|
*/
|
|
5977
|
-
createCorporate: (data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any>>;
|
|
5994
|
+
createCorporate: (data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any, {}>>;
|
|
5978
5995
|
/**
|
|
5979
5996
|
* No description
|
|
5980
5997
|
*
|
|
@@ -5992,7 +6009,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5992
6009
|
pageNumber?: number;
|
|
5993
6010
|
sortBy?: string;
|
|
5994
6011
|
sortDirection?: string;
|
|
5995
|
-
}, params?: RequestParams) => Promise<AxiosResponse<CorporatePaginated, any>>;
|
|
6012
|
+
}, params?: RequestParams) => Promise<AxiosResponse<CorporatePaginated, any, {}>>;
|
|
5996
6013
|
/**
|
|
5997
6014
|
* No description
|
|
5998
6015
|
*
|
|
@@ -6003,7 +6020,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6003
6020
|
* @secure
|
|
6004
6021
|
* @response `200` `Corporate` Success
|
|
6005
6022
|
*/
|
|
6006
|
-
getCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<Corporate, any>>;
|
|
6023
|
+
getCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<Corporate, any, {}>>;
|
|
6007
6024
|
/**
|
|
6008
6025
|
* No description
|
|
6009
6026
|
*
|
|
@@ -6015,7 +6032,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6015
6032
|
* @response `200` `Corporate` Success
|
|
6016
6033
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6017
6034
|
*/
|
|
6018
|
-
replaceCorporate: (id: string, data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any>>;
|
|
6035
|
+
replaceCorporate: (id: string, data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any, {}>>;
|
|
6019
6036
|
/**
|
|
6020
6037
|
* No description
|
|
6021
6038
|
*
|
|
@@ -6026,7 +6043,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6026
6043
|
* @secure
|
|
6027
6044
|
* @response `204` `void` No Content
|
|
6028
6045
|
*/
|
|
6029
|
-
deleteCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6046
|
+
deleteCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6030
6047
|
/**
|
|
6031
6048
|
* No description
|
|
6032
6049
|
*
|
|
@@ -6037,7 +6054,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6037
6054
|
* @secure
|
|
6038
6055
|
* @response `204` `void` No Content
|
|
6039
6056
|
*/
|
|
6040
|
-
restoreCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6057
|
+
restoreCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6041
6058
|
/**
|
|
6042
6059
|
* No description
|
|
6043
6060
|
*
|
|
@@ -6049,7 +6066,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6049
6066
|
* @response `200` `SiteConfiguration` Success
|
|
6050
6067
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6051
6068
|
*/
|
|
6052
|
-
createCorporateSiteConfiguration: (corporateId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
6069
|
+
createCorporateSiteConfiguration: (corporateId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
6053
6070
|
/**
|
|
6054
6071
|
* No description
|
|
6055
6072
|
*
|
|
@@ -6060,7 +6077,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6060
6077
|
* @secure
|
|
6061
6078
|
* @response `200` `SiteConfigurationWithInherited` Success
|
|
6062
6079
|
*/
|
|
6063
|
-
getCorporateSiteConfiguration: (corporateId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
|
|
6080
|
+
getCorporateSiteConfiguration: (corporateId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any, {}>>;
|
|
6064
6081
|
/**
|
|
6065
6082
|
* No description
|
|
6066
6083
|
*
|
|
@@ -6074,7 +6091,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6074
6091
|
*/
|
|
6075
6092
|
replaceCorporateSiteConfiguration: (corporateId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
|
|
6076
6093
|
applyToChildren?: boolean;
|
|
6077
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
6094
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
6078
6095
|
/**
|
|
6079
6096
|
* No description
|
|
6080
6097
|
*
|
|
@@ -6085,7 +6102,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6085
6102
|
* @secure
|
|
6086
6103
|
* @response `200` `(BranchReduced)[]` Success
|
|
6087
6104
|
*/
|
|
6088
|
-
getBranchesByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchReduced[], any>>;
|
|
6105
|
+
getBranchesByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchReduced[], any, {}>>;
|
|
6089
6106
|
/**
|
|
6090
6107
|
* No description
|
|
6091
6108
|
*
|
|
@@ -6096,7 +6113,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6096
6113
|
* @secure
|
|
6097
6114
|
* @response `200` `(LoanOfficerPublic)[]` Success
|
|
6098
6115
|
*/
|
|
6099
|
-
getLoanOfficersByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic[], any>>;
|
|
6116
|
+
getLoanOfficersByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic[], any, {}>>;
|
|
6100
6117
|
/**
|
|
6101
6118
|
* No description
|
|
6102
6119
|
*
|
|
@@ -6116,7 +6133,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6116
6133
|
pageNumber?: number;
|
|
6117
6134
|
sortBy?: string;
|
|
6118
6135
|
sortDirection?: string;
|
|
6119
|
-
}, params?: RequestParams) => Promise<AxiosResponse<DevicePaginated, any>>;
|
|
6136
|
+
}, params?: RequestParams) => Promise<AxiosResponse<DevicePaginated, any, {}>>;
|
|
6120
6137
|
/**
|
|
6121
6138
|
* No description
|
|
6122
6139
|
*
|
|
@@ -6127,7 +6144,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6127
6144
|
* @secure
|
|
6128
6145
|
* @response `200` `Device` Success
|
|
6129
6146
|
*/
|
|
6130
|
-
getDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<Device, any>>;
|
|
6147
|
+
getDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<Device, any, {}>>;
|
|
6131
6148
|
/**
|
|
6132
6149
|
* No description
|
|
6133
6150
|
*
|
|
@@ -6138,7 +6155,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6138
6155
|
* @secure
|
|
6139
6156
|
* @response `200` `Device` Success
|
|
6140
6157
|
*/
|
|
6141
|
-
updateDevice: (id: string, data: DeviceRequest, params?: RequestParams) => Promise<AxiosResponse<Device, any>>;
|
|
6158
|
+
updateDevice: (id: string, data: DeviceRequest, params?: RequestParams) => Promise<AxiosResponse<Device, any, {}>>;
|
|
6142
6159
|
/**
|
|
6143
6160
|
* No description
|
|
6144
6161
|
*
|
|
@@ -6149,7 +6166,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6149
6166
|
* @secure
|
|
6150
6167
|
* @response `200` `DeviceMDM` Success
|
|
6151
6168
|
*/
|
|
6152
|
-
getDeviceBySerialNumber: (sn: string, params?: RequestParams) => Promise<AxiosResponse<DeviceMDM, any>>;
|
|
6169
|
+
getDeviceBySerialNumber: (sn: string, params?: RequestParams) => Promise<AxiosResponse<DeviceMDM, any, {}>>;
|
|
6153
6170
|
/**
|
|
6154
6171
|
* No description
|
|
6155
6172
|
*
|
|
@@ -6160,7 +6177,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6160
6177
|
* @secure
|
|
6161
6178
|
* @response `200` `Action` Success
|
|
6162
6179
|
*/
|
|
6163
|
-
createDeviceActionBySerialNumber: (sn: string, actionName: string, params?: RequestParams) => Promise<AxiosResponse<Action, any>>;
|
|
6180
|
+
createDeviceActionBySerialNumber: (sn: string, actionName: string, params?: RequestParams) => Promise<AxiosResponse<Action, any, {}>>;
|
|
6164
6181
|
/**
|
|
6165
6182
|
* No description
|
|
6166
6183
|
*
|
|
@@ -6174,7 +6191,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6174
6191
|
getDocumentBuckets: (query?: {
|
|
6175
6192
|
/** @default false */
|
|
6176
6193
|
includeSystemBuckets?: boolean;
|
|
6177
|
-
}, params?: RequestParams) => Promise<AxiosResponse<string[], any>>;
|
|
6194
|
+
}, params?: RequestParams) => Promise<AxiosResponse<string[], any, {}>>;
|
|
6178
6195
|
/**
|
|
6179
6196
|
* No description
|
|
6180
6197
|
*
|
|
@@ -6187,7 +6204,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6187
6204
|
*/
|
|
6188
6205
|
getDocumentTemplates: (query?: {
|
|
6189
6206
|
showAll?: boolean;
|
|
6190
|
-
}, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase[], any>>;
|
|
6207
|
+
}, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase[], any, {}>>;
|
|
6191
6208
|
/**
|
|
6192
6209
|
* No description
|
|
6193
6210
|
*
|
|
@@ -6200,7 +6217,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6200
6217
|
* @response `404` `ProblemDetails` Not Found
|
|
6201
6218
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6202
6219
|
*/
|
|
6203
|
-
createDocumentTemplate: (data: CreateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any>>;
|
|
6220
|
+
createDocumentTemplate: (data: CreateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any, {}>>;
|
|
6204
6221
|
/**
|
|
6205
6222
|
* No description
|
|
6206
6223
|
*
|
|
@@ -6216,7 +6233,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6216
6233
|
showAll?: boolean;
|
|
6217
6234
|
/** @default true */
|
|
6218
6235
|
publishedOnly?: boolean;
|
|
6219
|
-
}, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase[], any>>;
|
|
6236
|
+
}, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase[], any, {}>>;
|
|
6220
6237
|
/**
|
|
6221
6238
|
* No description
|
|
6222
6239
|
*
|
|
@@ -6228,7 +6245,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6228
6245
|
* @response `200` `DocumentTemplate` Success
|
|
6229
6246
|
* @response `404` `ProblemDetails` Not Found
|
|
6230
6247
|
*/
|
|
6231
|
-
getDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplate, any>>;
|
|
6248
|
+
getDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplate, any, {}>>;
|
|
6232
6249
|
/**
|
|
6233
6250
|
* No description
|
|
6234
6251
|
*
|
|
@@ -6242,7 +6259,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6242
6259
|
* @response `404` `ProblemDetails` Not Found
|
|
6243
6260
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6244
6261
|
*/
|
|
6245
|
-
replaceDocumentTemplate: (id: string, data: UpdateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any>>;
|
|
6262
|
+
replaceDocumentTemplate: (id: string, data: UpdateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any, {}>>;
|
|
6246
6263
|
/**
|
|
6247
6264
|
* No description
|
|
6248
6265
|
*
|
|
@@ -6255,7 +6272,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6255
6272
|
* @response `401` `ProblemDetails` Unauthorized
|
|
6256
6273
|
* @response `404` `ProblemDetails` Not Found
|
|
6257
6274
|
*/
|
|
6258
|
-
deleteDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6275
|
+
deleteDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6259
6276
|
/**
|
|
6260
6277
|
* No description
|
|
6261
6278
|
*
|
|
@@ -6268,7 +6285,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6268
6285
|
* @response `401` `ProblemDetails` Unauthorized
|
|
6269
6286
|
* @response `404` `ProblemDetails` Not Found
|
|
6270
6287
|
*/
|
|
6271
|
-
restoreDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6288
|
+
restoreDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6272
6289
|
/**
|
|
6273
6290
|
* No description
|
|
6274
6291
|
*
|
|
@@ -6279,7 +6296,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6279
6296
|
* @secure
|
|
6280
6297
|
* @response `200` `(DocumentTemplateVersion)[]` Success
|
|
6281
6298
|
*/
|
|
6282
|
-
getDocumentTemplateVersions: (documentId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion[], any>>;
|
|
6299
|
+
getDocumentTemplateVersions: (documentId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion[], any, {}>>;
|
|
6283
6300
|
/**
|
|
6284
6301
|
* No description
|
|
6285
6302
|
*
|
|
@@ -6290,7 +6307,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6290
6307
|
* @secure
|
|
6291
6308
|
* @response `200` `DocumentTemplateVersion` Success
|
|
6292
6309
|
*/
|
|
6293
|
-
createDocumentTemplateVersion: (documentId: string, data: DocumentTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
|
|
6310
|
+
createDocumentTemplateVersion: (documentId: string, data: DocumentTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any, {}>>;
|
|
6294
6311
|
/**
|
|
6295
6312
|
* No description
|
|
6296
6313
|
*
|
|
@@ -6301,7 +6318,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6301
6318
|
* @secure
|
|
6302
6319
|
* @response `200` `DocumentTemplateVersion` Success
|
|
6303
6320
|
*/
|
|
6304
|
-
getDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
|
|
6321
|
+
getDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any, {}>>;
|
|
6305
6322
|
/**
|
|
6306
6323
|
* No description
|
|
6307
6324
|
*
|
|
@@ -6312,7 +6329,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6312
6329
|
* @secure
|
|
6313
6330
|
* @response `200` `DocumentTemplateVersion` Success
|
|
6314
6331
|
*/
|
|
6315
|
-
replaceDocumentTemplateVersion: (documentId: string, id: string, data: DocumentTemplateVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
|
|
6332
|
+
replaceDocumentTemplateVersion: (documentId: string, id: string, data: DocumentTemplateVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any, {}>>;
|
|
6316
6333
|
/**
|
|
6317
6334
|
* No description
|
|
6318
6335
|
*
|
|
@@ -6323,7 +6340,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6323
6340
|
* @secure
|
|
6324
6341
|
* @response `200` `DocumentTemplateVersion` Success
|
|
6325
6342
|
*/
|
|
6326
|
-
deleteDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
|
|
6343
|
+
deleteDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any, {}>>;
|
|
6327
6344
|
/**
|
|
6328
6345
|
* No description
|
|
6329
6346
|
*
|
|
@@ -6351,7 +6368,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6351
6368
|
pageSize?: number;
|
|
6352
6369
|
/** @format uuid */
|
|
6353
6370
|
loanId?: string;
|
|
6354
|
-
}, params?: RequestParams) => Promise<AxiosResponse<EncompassPackageList, any>>;
|
|
6371
|
+
}, params?: RequestParams) => Promise<AxiosResponse<EncompassPackageList, any, {}>>;
|
|
6355
6372
|
/**
|
|
6356
6373
|
* No description
|
|
6357
6374
|
*
|
|
@@ -6363,7 +6380,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6363
6380
|
* @response `401` `EncompassError` Unauthorized
|
|
6364
6381
|
* @response `500` `EncompassError` Server Error
|
|
6365
6382
|
*/
|
|
6366
|
-
getUserRecipients: (params?: RequestParams) => Promise<AxiosResponse<EncompassRecipientItem[], any>>;
|
|
6383
|
+
getUserRecipients: (params?: RequestParams) => Promise<AxiosResponse<EncompassRecipientItem[], any, {}>>;
|
|
6367
6384
|
/**
|
|
6368
6385
|
* No description
|
|
6369
6386
|
*
|
|
@@ -6378,7 +6395,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6378
6395
|
* @response `404` `EncompassError` Not Found
|
|
6379
6396
|
* @response `500` `EncompassError` Server Error
|
|
6380
6397
|
*/
|
|
6381
|
-
createEncompassSession: (data: CreateSessionRequest, params?: RequestParams) => Promise<AxiosResponse<CreateSession, any>>;
|
|
6398
|
+
createEncompassSession: (data: CreateSessionRequest, params?: RequestParams) => Promise<AxiosResponse<CreateSession, any, {}>>;
|
|
6382
6399
|
/**
|
|
6383
6400
|
* No description
|
|
6384
6401
|
*
|
|
@@ -6398,7 +6415,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6398
6415
|
sortDirection?: string;
|
|
6399
6416
|
/** @default false */
|
|
6400
6417
|
includeDeleted?: boolean;
|
|
6401
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FilePaginated, any>>;
|
|
6418
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FilePaginated, any, {}>>;
|
|
6402
6419
|
/**
|
|
6403
6420
|
* No description
|
|
6404
6421
|
*
|
|
@@ -6416,7 +6433,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6416
6433
|
file?: File;
|
|
6417
6434
|
isPublic?: boolean;
|
|
6418
6435
|
bucket?: string;
|
|
6419
|
-
}, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
|
|
6436
|
+
}, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
|
|
6420
6437
|
/**
|
|
6421
6438
|
* No description
|
|
6422
6439
|
*
|
|
@@ -6427,7 +6444,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6427
6444
|
* @secure
|
|
6428
6445
|
* @response `201` `File` Created
|
|
6429
6446
|
*/
|
|
6430
|
-
getFileById: (id: string, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
|
|
6447
|
+
getFileById: (id: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
|
|
6431
6448
|
/**
|
|
6432
6449
|
* No description
|
|
6433
6450
|
*
|
|
@@ -6439,7 +6456,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6439
6456
|
* @response `200` `string` Success
|
|
6440
6457
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6441
6458
|
*/
|
|
6442
|
-
replaceFile: (id: string, data: FileRequest, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
6459
|
+
replaceFile: (id: string, data: FileRequest, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
6443
6460
|
/**
|
|
6444
6461
|
* No description
|
|
6445
6462
|
*
|
|
@@ -6450,7 +6467,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6450
6467
|
* @secure
|
|
6451
6468
|
* @response `204` `void` No Content
|
|
6452
6469
|
*/
|
|
6453
|
-
deleteFile: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6470
|
+
deleteFile: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6454
6471
|
/**
|
|
6455
6472
|
* No description
|
|
6456
6473
|
*
|
|
@@ -6468,7 +6485,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6468
6485
|
pageNumber?: number;
|
|
6469
6486
|
sortBy?: string;
|
|
6470
6487
|
sortDirection?: string;
|
|
6471
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FilePaginated, any>>;
|
|
6488
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FilePaginated, any, {}>>;
|
|
6472
6489
|
/**
|
|
6473
6490
|
* No description
|
|
6474
6491
|
*
|
|
@@ -6481,7 +6498,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6481
6498
|
*/
|
|
6482
6499
|
getForms: (query?: {
|
|
6483
6500
|
showAll?: boolean;
|
|
6484
|
-
}, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms[], any>>;
|
|
6501
|
+
}, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms[], any, {}>>;
|
|
6485
6502
|
/**
|
|
6486
6503
|
* No description
|
|
6487
6504
|
*
|
|
@@ -6493,7 +6510,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6493
6510
|
* @response `201` `Form` Created
|
|
6494
6511
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6495
6512
|
*/
|
|
6496
|
-
createForm: (data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<Form, any>>;
|
|
6513
|
+
createForm: (data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<Form, any, {}>>;
|
|
6497
6514
|
/**
|
|
6498
6515
|
* No description
|
|
6499
6516
|
*
|
|
@@ -6504,7 +6521,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6504
6521
|
* @secure
|
|
6505
6522
|
* @response `200` `Form` Success
|
|
6506
6523
|
*/
|
|
6507
|
-
getForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<Form, any>>;
|
|
6524
|
+
getForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<Form, any, {}>>;
|
|
6508
6525
|
/**
|
|
6509
6526
|
* No description
|
|
6510
6527
|
*
|
|
@@ -6516,7 +6533,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6516
6533
|
* @response `200` `Form` Success
|
|
6517
6534
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6518
6535
|
*/
|
|
6519
|
-
replaceForm: (id: string, data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<Form, any>>;
|
|
6536
|
+
replaceForm: (id: string, data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<Form, any, {}>>;
|
|
6520
6537
|
/**
|
|
6521
6538
|
* No description
|
|
6522
6539
|
*
|
|
@@ -6527,7 +6544,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6527
6544
|
* @secure
|
|
6528
6545
|
* @response `204` `void` No Content
|
|
6529
6546
|
*/
|
|
6530
|
-
deleteForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6547
|
+
deleteForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6531
6548
|
/**
|
|
6532
6549
|
* No description
|
|
6533
6550
|
*
|
|
@@ -6538,7 +6555,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6538
6555
|
* @secure
|
|
6539
6556
|
* @response `200` `Form` Success
|
|
6540
6557
|
*/
|
|
6541
|
-
restoreForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<Form, any>>;
|
|
6558
|
+
restoreForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<Form, any, {}>>;
|
|
6542
6559
|
/**
|
|
6543
6560
|
* No description
|
|
6544
6561
|
*
|
|
@@ -6553,7 +6570,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6553
6570
|
/** @format binary */
|
|
6554
6571
|
file?: File;
|
|
6555
6572
|
name?: string;
|
|
6556
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionFile, any>>;
|
|
6573
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionFile, any, {}>>;
|
|
6557
6574
|
/**
|
|
6558
6575
|
* No description
|
|
6559
6576
|
*
|
|
@@ -6564,7 +6581,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6564
6581
|
* @secure
|
|
6565
6582
|
* @response `204` `void` No Content
|
|
6566
6583
|
*/
|
|
6567
|
-
deleteFormSubmissionFile: (formSubmissionFileId: string, formSubmissionId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6584
|
+
deleteFormSubmissionFile: (formSubmissionFileId: string, formSubmissionId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6568
6585
|
/**
|
|
6569
6586
|
* No description
|
|
6570
6587
|
*
|
|
@@ -6578,7 +6595,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6578
6595
|
downloadFormSubmissionFile: (formSubmissionFileId: string, formSubmissionId: string, query?: {
|
|
6579
6596
|
/** @format uuid */
|
|
6580
6597
|
siteConfigurationId?: string;
|
|
6581
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FileWithBytes, any>>;
|
|
6598
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FileWithBytes, any, {}>>;
|
|
6582
6599
|
/**
|
|
6583
6600
|
* No description
|
|
6584
6601
|
*
|
|
@@ -6596,7 +6613,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6596
6613
|
pageNumber?: number;
|
|
6597
6614
|
sortBy?: string;
|
|
6598
6615
|
sortDirection?: string;
|
|
6599
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionPaginated, any>>;
|
|
6616
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionPaginated, any, {}>>;
|
|
6600
6617
|
/**
|
|
6601
6618
|
* No description
|
|
6602
6619
|
*
|
|
@@ -6609,7 +6626,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6609
6626
|
*/
|
|
6610
6627
|
createFormSubmission: (data: FormSubmissionRequest, query?: {
|
|
6611
6628
|
formID?: string;
|
|
6612
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any>>;
|
|
6629
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any, {}>>;
|
|
6613
6630
|
/**
|
|
6614
6631
|
* No description
|
|
6615
6632
|
*
|
|
@@ -6620,7 +6637,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6620
6637
|
* @secure
|
|
6621
6638
|
* @response `200` `FormSubmission` Success
|
|
6622
6639
|
*/
|
|
6623
|
-
getFormSubmission: (id: string, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any>>;
|
|
6640
|
+
getFormSubmission: (id: string, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any, {}>>;
|
|
6624
6641
|
/**
|
|
6625
6642
|
* No description
|
|
6626
6643
|
*
|
|
@@ -6631,7 +6648,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6631
6648
|
* @secure
|
|
6632
6649
|
* @response `200` `FormSubmission` Success
|
|
6633
6650
|
*/
|
|
6634
|
-
replaceFormSubmission: (id: string, data: FormSubmissionRequest, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any>>;
|
|
6651
|
+
replaceFormSubmission: (id: string, data: FormSubmissionRequest, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any, {}>>;
|
|
6635
6652
|
/**
|
|
6636
6653
|
* No description
|
|
6637
6654
|
*
|
|
@@ -6642,7 +6659,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6642
6659
|
* @secure
|
|
6643
6660
|
* @response `204` `void` No Content
|
|
6644
6661
|
*/
|
|
6645
|
-
deleteFormSubmission: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6662
|
+
deleteFormSubmission: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6646
6663
|
/**
|
|
6647
6664
|
* No description
|
|
6648
6665
|
*
|
|
@@ -6660,7 +6677,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6660
6677
|
pageNumber?: number;
|
|
6661
6678
|
sortBy?: string;
|
|
6662
6679
|
sortDirection?: string;
|
|
6663
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionPaginated, any>>;
|
|
6680
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionPaginated, any, {}>>;
|
|
6664
6681
|
/**
|
|
6665
6682
|
* No description
|
|
6666
6683
|
*
|
|
@@ -6671,7 +6688,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6671
6688
|
* @secure
|
|
6672
6689
|
* @response `200` `(FormVersion)[]` Success
|
|
6673
6690
|
*/
|
|
6674
|
-
getFormVersions: (formId: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion[], any>>;
|
|
6691
|
+
getFormVersions: (formId: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion[], any, {}>>;
|
|
6675
6692
|
/**
|
|
6676
6693
|
* No description
|
|
6677
6694
|
*
|
|
@@ -6682,7 +6699,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6682
6699
|
* @secure
|
|
6683
6700
|
* @response `200` `FormVersion` Success
|
|
6684
6701
|
*/
|
|
6685
|
-
createFormVersion: (formId: string, data: FormVersionRequest, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
|
|
6702
|
+
createFormVersion: (formId: string, data: FormVersionRequest, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any, {}>>;
|
|
6686
6703
|
/**
|
|
6687
6704
|
* No description
|
|
6688
6705
|
*
|
|
@@ -6693,7 +6710,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6693
6710
|
* @secure
|
|
6694
6711
|
* @response `200` `FormVersion` Success
|
|
6695
6712
|
*/
|
|
6696
|
-
getFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
|
|
6713
|
+
getFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any, {}>>;
|
|
6697
6714
|
/**
|
|
6698
6715
|
* No description
|
|
6699
6716
|
*
|
|
@@ -6704,7 +6721,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6704
6721
|
* @secure
|
|
6705
6722
|
* @response `200` `FormVersion` Success
|
|
6706
6723
|
*/
|
|
6707
|
-
replaceFormVersion: (formId: string, id: string, data: FormVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
|
|
6724
|
+
replaceFormVersion: (formId: string, id: string, data: FormVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any, {}>>;
|
|
6708
6725
|
/**
|
|
6709
6726
|
* No description
|
|
6710
6727
|
*
|
|
@@ -6715,7 +6732,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6715
6732
|
* @secure
|
|
6716
6733
|
* @response `200` `FormVersion` Success
|
|
6717
6734
|
*/
|
|
6718
|
-
deleteFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
|
|
6735
|
+
deleteFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any, {}>>;
|
|
6719
6736
|
/**
|
|
6720
6737
|
* No description
|
|
6721
6738
|
*
|
|
@@ -6726,7 +6743,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6726
6743
|
* @secure
|
|
6727
6744
|
* @response `200` `Record<string,any>` Success
|
|
6728
6745
|
*/
|
|
6729
|
-
getLoanData: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Record<string, any>, any>>;
|
|
6746
|
+
getLoanData: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Record<string, any>, any, {}>>;
|
|
6730
6747
|
/**
|
|
6731
6748
|
* No description
|
|
6732
6749
|
*
|
|
@@ -6739,7 +6756,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6739
6756
|
* @response `200` `string` Success
|
|
6740
6757
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6741
6758
|
*/
|
|
6742
|
-
updateLoanConsentAndCustomFieldsObsolete: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
6759
|
+
updateLoanConsentAndCustomFieldsObsolete: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
6743
6760
|
/**
|
|
6744
6761
|
* No description
|
|
6745
6762
|
*
|
|
@@ -6750,7 +6767,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6750
6767
|
* @secure
|
|
6751
6768
|
* @response `200` `GetReport` Success
|
|
6752
6769
|
*/
|
|
6753
|
-
getLoansReport: (data: GetReportRequest, params?: RequestParams) => Promise<AxiosResponse<GetReport, any>>;
|
|
6770
|
+
getLoansReport: (data: GetReportRequest, params?: RequestParams) => Promise<AxiosResponse<GetReport, any, {}>>;
|
|
6754
6771
|
/**
|
|
6755
6772
|
* No description
|
|
6756
6773
|
*
|
|
@@ -6767,7 +6784,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6767
6784
|
createLoan: (data: any, query?: {
|
|
6768
6785
|
/** @default false */
|
|
6769
6786
|
isPatch?: boolean;
|
|
6770
|
-
}, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
6787
|
+
}, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
6771
6788
|
/**
|
|
6772
6789
|
* No description
|
|
6773
6790
|
*
|
|
@@ -6783,7 +6800,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6783
6800
|
createLoanInternal: (data: any, query?: {
|
|
6784
6801
|
/** @default false */
|
|
6785
6802
|
isPatch?: boolean;
|
|
6786
|
-
}, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
6803
|
+
}, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
6787
6804
|
/**
|
|
6788
6805
|
* No description
|
|
6789
6806
|
*
|
|
@@ -6795,7 +6812,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6795
6812
|
* @response `200` `string` Success
|
|
6796
6813
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6797
6814
|
*/
|
|
6798
|
-
updateLoanCustomFields: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
6815
|
+
updateLoanCustomFields: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
6799
6816
|
/**
|
|
6800
6817
|
* No description
|
|
6801
6818
|
*
|
|
@@ -6808,7 +6825,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6808
6825
|
* @response `202` `string` Accepted
|
|
6809
6826
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6810
6827
|
*/
|
|
6811
|
-
updateLoanConsent: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
6828
|
+
updateLoanConsent: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
6812
6829
|
/**
|
|
6813
6830
|
* No description
|
|
6814
6831
|
*
|
|
@@ -6819,7 +6836,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6819
6836
|
* @secure
|
|
6820
6837
|
* @response `200` `(DocumentData)[]` Success
|
|
6821
6838
|
*/
|
|
6822
|
-
getTaskDocumentsByLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentData[], any>>;
|
|
6839
|
+
getTaskDocumentsByLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentData[], any, {}>>;
|
|
6823
6840
|
/**
|
|
6824
6841
|
* No description
|
|
6825
6842
|
*
|
|
@@ -6833,7 +6850,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6833
6850
|
getLoanDocumentContent: (loanId: string, documentId: string, query?: {
|
|
6834
6851
|
/** @default "base64" */
|
|
6835
6852
|
contentType?: string;
|
|
6836
|
-
}, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6853
|
+
}, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6837
6854
|
/**
|
|
6838
6855
|
* No description
|
|
6839
6856
|
*
|
|
@@ -6844,7 +6861,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6844
6861
|
* @secure
|
|
6845
6862
|
* @response `204` `void` No Content
|
|
6846
6863
|
*/
|
|
6847
|
-
getLoanRecipients: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6864
|
+
getLoanRecipients: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6848
6865
|
/**
|
|
6849
6866
|
* No description
|
|
6850
6867
|
*
|
|
@@ -6855,7 +6872,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6855
6872
|
* @secure
|
|
6856
6873
|
* @response `200` `(PreliminaryCondition)[]` Success
|
|
6857
6874
|
*/
|
|
6858
|
-
getPreliminaryConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<PreliminaryCondition[], any>>;
|
|
6875
|
+
getPreliminaryConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<PreliminaryCondition[], any, {}>>;
|
|
6859
6876
|
/**
|
|
6860
6877
|
* No description
|
|
6861
6878
|
*
|
|
@@ -6866,7 +6883,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6866
6883
|
* @secure
|
|
6867
6884
|
* @response `200` `(UnderwritingCondition)[]` Success
|
|
6868
6885
|
*/
|
|
6869
|
-
getUnderwritingConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UnderwritingCondition[], any>>;
|
|
6886
|
+
getUnderwritingConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UnderwritingCondition[], any, {}>>;
|
|
6870
6887
|
/**
|
|
6871
6888
|
* No description
|
|
6872
6889
|
*
|
|
@@ -6877,7 +6894,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6877
6894
|
* @secure
|
|
6878
6895
|
* @response `200` `string` Success
|
|
6879
6896
|
*/
|
|
6880
|
-
getLoanEmbeddedSigningLink: (envelopeId: string, userName: string, email: string, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
6897
|
+
getLoanEmbeddedSigningLink: (envelopeId: string, userName: string, email: string, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
6881
6898
|
/**
|
|
6882
6899
|
* No description
|
|
6883
6900
|
*
|
|
@@ -6889,7 +6906,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6889
6906
|
* @secure
|
|
6890
6907
|
* @response `200` `DocumentDataRequest` Success
|
|
6891
6908
|
*/
|
|
6892
|
-
createLegacyLoanDocument: (data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any>>;
|
|
6909
|
+
createLegacyLoanDocument: (data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any, {}>>;
|
|
6893
6910
|
/**
|
|
6894
6911
|
* No description
|
|
6895
6912
|
*
|
|
@@ -6906,7 +6923,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6906
6923
|
createEditDraftForLoan: (loanId: string, query?: {
|
|
6907
6924
|
/** @default false */
|
|
6908
6925
|
isCoBorrower?: boolean;
|
|
6909
|
-
}, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
|
|
6926
|
+
}, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
|
|
6910
6927
|
/**
|
|
6911
6928
|
* No description
|
|
6912
6929
|
*
|
|
@@ -6922,7 +6939,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6922
6939
|
file?: File;
|
|
6923
6940
|
/** @format int32 */
|
|
6924
6941
|
weight?: number;
|
|
6925
|
-
}, params?: RequestParams) => Promise<AxiosResponse<ListingFile, any>>;
|
|
6942
|
+
}, params?: RequestParams) => Promise<AxiosResponse<ListingFile, any, {}>>;
|
|
6926
6943
|
/**
|
|
6927
6944
|
* No description
|
|
6928
6945
|
*
|
|
@@ -6933,7 +6950,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6933
6950
|
* @secure
|
|
6934
6951
|
* @response `200` `ListingFile` Success
|
|
6935
6952
|
*/
|
|
6936
|
-
updateListingFiles: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingFile, any>>;
|
|
6953
|
+
updateListingFiles: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingFile, any, {}>>;
|
|
6937
6954
|
/**
|
|
6938
6955
|
* No description
|
|
6939
6956
|
*
|
|
@@ -6944,7 +6961,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6944
6961
|
* @secure
|
|
6945
6962
|
* @response `204` `Listing` No Content
|
|
6946
6963
|
*/
|
|
6947
|
-
removeListingFile: (listingId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
|
|
6964
|
+
removeListingFile: (listingId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
|
|
6948
6965
|
/**
|
|
6949
6966
|
* No description
|
|
6950
6967
|
*
|
|
@@ -6962,7 +6979,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6962
6979
|
file?: File;
|
|
6963
6980
|
/** @format int32 */
|
|
6964
6981
|
weight?: number;
|
|
6965
|
-
}, params?: RequestParams) => Promise<AxiosResponse<ListingPhoto, any>>;
|
|
6982
|
+
}, params?: RequestParams) => Promise<AxiosResponse<ListingPhoto, any, {}>>;
|
|
6966
6983
|
/**
|
|
6967
6984
|
* No description
|
|
6968
6985
|
*
|
|
@@ -6973,7 +6990,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6973
6990
|
* @secure
|
|
6974
6991
|
* @response `200` `(ListingPhoto)[]` Success
|
|
6975
6992
|
*/
|
|
6976
|
-
updateListingPhotos: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingPhoto[], any>>;
|
|
6993
|
+
updateListingPhotos: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingPhoto[], any, {}>>;
|
|
6977
6994
|
/**
|
|
6978
6995
|
* No description
|
|
6979
6996
|
*
|
|
@@ -6984,7 +7001,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6984
7001
|
* @secure
|
|
6985
7002
|
* @response `204` `Listing` No Content
|
|
6986
7003
|
*/
|
|
6987
|
-
removeListingPhoto: (listingId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
|
|
7004
|
+
removeListingPhoto: (listingId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
|
|
6988
7005
|
/**
|
|
6989
7006
|
* No description
|
|
6990
7007
|
*
|
|
@@ -7002,7 +7019,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7002
7019
|
pageNumber?: number;
|
|
7003
7020
|
sortBy?: string;
|
|
7004
7021
|
sortDirection?: string;
|
|
7005
|
-
}, params?: RequestParams) => Promise<AxiosResponse<ListingPaginated, any>>;
|
|
7022
|
+
}, params?: RequestParams) => Promise<AxiosResponse<ListingPaginated, any, {}>>;
|
|
7006
7023
|
/**
|
|
7007
7024
|
* No description
|
|
7008
7025
|
*
|
|
@@ -7013,7 +7030,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7013
7030
|
* @secure
|
|
7014
7031
|
* @response `201` `Listing` Created
|
|
7015
7032
|
*/
|
|
7016
|
-
createListing: (data: ListingRequest, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
|
|
7033
|
+
createListing: (data: ListingRequest, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
|
|
7017
7034
|
/**
|
|
7018
7035
|
* No description
|
|
7019
7036
|
*
|
|
@@ -7024,7 +7041,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7024
7041
|
* @secure
|
|
7025
7042
|
* @response `200` `Listing` Success
|
|
7026
7043
|
*/
|
|
7027
|
-
getListingBySlug: (slug: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
|
|
7044
|
+
getListingBySlug: (slug: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
|
|
7028
7045
|
/**
|
|
7029
7046
|
* No description
|
|
7030
7047
|
*
|
|
@@ -7035,7 +7052,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7035
7052
|
* @secure
|
|
7036
7053
|
* @response `200` `Listing` Success
|
|
7037
7054
|
*/
|
|
7038
|
-
getListing: (id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
|
|
7055
|
+
getListing: (id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
|
|
7039
7056
|
/**
|
|
7040
7057
|
* No description
|
|
7041
7058
|
*
|
|
@@ -7046,7 +7063,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7046
7063
|
* @secure
|
|
7047
7064
|
* @response `200` `Listing` Success
|
|
7048
7065
|
*/
|
|
7049
|
-
replaceListing: (id: string, data: ListingRequest, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
|
|
7066
|
+
replaceListing: (id: string, data: ListingRequest, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
|
|
7050
7067
|
/**
|
|
7051
7068
|
* No description
|
|
7052
7069
|
*
|
|
@@ -7057,7 +7074,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7057
7074
|
* @secure
|
|
7058
7075
|
* @response `204` `void` No Content
|
|
7059
7076
|
*/
|
|
7060
|
-
deleteListing: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7077
|
+
deleteListing: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7061
7078
|
/**
|
|
7062
7079
|
* No description
|
|
7063
7080
|
*
|
|
@@ -7075,7 +7092,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7075
7092
|
pageNumber?: number;
|
|
7076
7093
|
sortBy?: string;
|
|
7077
7094
|
sortDirection?: string;
|
|
7078
|
-
}, params?: RequestParams) => Promise<AxiosResponse<ListingPaginated, any>>;
|
|
7095
|
+
}, params?: RequestParams) => Promise<AxiosResponse<ListingPaginated, any, {}>>;
|
|
7079
7096
|
/**
|
|
7080
7097
|
* No description
|
|
7081
7098
|
*
|
|
@@ -7089,7 +7106,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7089
7106
|
updateListingBackgroundImage: (id: string, data: {
|
|
7090
7107
|
/** @format binary */
|
|
7091
7108
|
file?: File;
|
|
7092
|
-
}, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
|
|
7109
|
+
}, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
|
|
7093
7110
|
/**
|
|
7094
7111
|
* No description
|
|
7095
7112
|
*
|
|
@@ -7100,7 +7117,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7100
7117
|
* @secure
|
|
7101
7118
|
* @response `204` `void` No Content
|
|
7102
7119
|
*/
|
|
7103
|
-
deleteListingBackgroundImage: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7120
|
+
deleteListingBackgroundImage: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7104
7121
|
/**
|
|
7105
7122
|
* No description
|
|
7106
7123
|
*
|
|
@@ -7111,7 +7128,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7111
7128
|
* @secure
|
|
7112
7129
|
* @response `200` `File` Success
|
|
7113
7130
|
*/
|
|
7114
|
-
getListingOpenHouseFlyer: (id: string, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
|
|
7131
|
+
getListingOpenHouseFlyer: (id: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
|
|
7115
7132
|
/**
|
|
7116
7133
|
* No description
|
|
7117
7134
|
*
|
|
@@ -7122,7 +7139,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7122
7139
|
* @secure
|
|
7123
7140
|
* @response `200` `RunLOCalculation` Success
|
|
7124
7141
|
*/
|
|
7125
|
-
getLoanCalculator: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any>>;
|
|
7142
|
+
getLoanCalculator: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any, {}>>;
|
|
7126
7143
|
/**
|
|
7127
7144
|
* No description
|
|
7128
7145
|
*
|
|
@@ -7135,7 +7152,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7135
7152
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7136
7153
|
* @response `423` `UnprocessableEntity` Client Error
|
|
7137
7154
|
*/
|
|
7138
|
-
runLoanCalculator: (loanId: string, data: RunLOCalculationRequest, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any>>;
|
|
7155
|
+
runLoanCalculator: (loanId: string, data: RunLOCalculationRequest, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any, {}>>;
|
|
7139
7156
|
/**
|
|
7140
7157
|
* No description
|
|
7141
7158
|
*
|
|
@@ -7146,7 +7163,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7146
7163
|
* @secure
|
|
7147
7164
|
* @response `200` `LoanComparison` Success
|
|
7148
7165
|
*/
|
|
7149
|
-
getLoanComparisons: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<LoanComparison, any>>;
|
|
7166
|
+
getLoanComparisons: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<LoanComparison, any, {}>>;
|
|
7150
7167
|
/**
|
|
7151
7168
|
* No description
|
|
7152
7169
|
*
|
|
@@ -7159,7 +7176,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7159
7176
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7160
7177
|
* @response `423` `UnprocessableEntity` Client Error
|
|
7161
7178
|
*/
|
|
7162
|
-
createLoanComparison: (loanId: string, index: number, data: LoanComparisonScenario, params?: RequestParams) => Promise<AxiosResponse<LoanComparisonScenario, any>>;
|
|
7179
|
+
createLoanComparison: (loanId: string, index: number, data: LoanComparisonScenario, params?: RequestParams) => Promise<AxiosResponse<LoanComparisonScenario, any, {}>>;
|
|
7163
7180
|
/**
|
|
7164
7181
|
* No description
|
|
7165
7182
|
*
|
|
@@ -7170,7 +7187,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7170
7187
|
* @secure
|
|
7171
7188
|
* @response `204` `void` No Content
|
|
7172
7189
|
*/
|
|
7173
|
-
deleteLoanComparison: (loanId: string, index: number, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7190
|
+
deleteLoanComparison: (loanId: string, index: number, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7174
7191
|
/**
|
|
7175
7192
|
* No description
|
|
7176
7193
|
*
|
|
@@ -7182,7 +7199,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7182
7199
|
* @response `204` `void` No Content
|
|
7183
7200
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7184
7201
|
*/
|
|
7185
|
-
createLoanComparisonPdf: (loanId: string, data: PostLoanComparisonPdfRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7202
|
+
createLoanComparisonPdf: (loanId: string, data: PostLoanComparisonPdfRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7186
7203
|
/**
|
|
7187
7204
|
* No description
|
|
7188
7205
|
*
|
|
@@ -7193,7 +7210,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7193
7210
|
* @secure
|
|
7194
7211
|
* @response `200` `(string)[]` Success
|
|
7195
7212
|
*/
|
|
7196
|
-
getLoanDocumentBuckets: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<string[], any>>;
|
|
7213
|
+
getLoanDocumentBuckets: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<string[], any, {}>>;
|
|
7197
7214
|
/**
|
|
7198
7215
|
* No description
|
|
7199
7216
|
*
|
|
@@ -7204,7 +7221,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7204
7221
|
* @secure
|
|
7205
7222
|
* @response `201` `(string)[]` Created
|
|
7206
7223
|
*/
|
|
7207
|
-
createLoanDocumentBuckets: (loanId: string, data: string[], params?: RequestParams) => Promise<AxiosResponse<string[], any>>;
|
|
7224
|
+
createLoanDocumentBuckets: (loanId: string, data: string[], params?: RequestParams) => Promise<AxiosResponse<string[], any, {}>>;
|
|
7208
7225
|
/**
|
|
7209
7226
|
* No description
|
|
7210
7227
|
*
|
|
@@ -7219,7 +7236,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7219
7236
|
getLoanDocument: (loanId: string, documentId: string, query?: {
|
|
7220
7237
|
/** @default false */
|
|
7221
7238
|
preview?: boolean;
|
|
7222
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any>>;
|
|
7239
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any, {}>>;
|
|
7223
7240
|
/**
|
|
7224
7241
|
* No description
|
|
7225
7242
|
*
|
|
@@ -7237,7 +7254,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7237
7254
|
pageNumber?: number;
|
|
7238
7255
|
sortBy?: string;
|
|
7239
7256
|
sortDirection?: string;
|
|
7240
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanDocumentSearchPaginated, any>>;
|
|
7257
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanDocumentSearchPaginated, any, {}>>;
|
|
7241
7258
|
/**
|
|
7242
7259
|
* @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).
|
|
7243
7260
|
*
|
|
@@ -7251,7 +7268,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7251
7268
|
getLoanDocumentFolders: (loanId: string, data: DocumentFoldersRequest, query?: {
|
|
7252
7269
|
/** @default false */
|
|
7253
7270
|
folderNamesOnly?: boolean;
|
|
7254
|
-
}, params?: RequestParams) => Promise<AxiosResponse<DocumentFolder[], any>>;
|
|
7271
|
+
}, params?: RequestParams) => Promise<AxiosResponse<DocumentFolder[], any, {}>>;
|
|
7255
7272
|
/**
|
|
7256
7273
|
* No description
|
|
7257
7274
|
*
|
|
@@ -7263,7 +7280,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7263
7280
|
* @response `200` `Blob` Success
|
|
7264
7281
|
* @response `404` `ProblemDetails` Not Found
|
|
7265
7282
|
*/
|
|
7266
|
-
downloadLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<Blob, any>>;
|
|
7283
|
+
downloadLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<Blob, any, {}>>;
|
|
7267
7284
|
/**
|
|
7268
7285
|
* No description
|
|
7269
7286
|
*
|
|
@@ -7281,7 +7298,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7281
7298
|
/** @format binary */
|
|
7282
7299
|
file?: File;
|
|
7283
7300
|
bucket?: string;
|
|
7284
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any>>;
|
|
7301
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any, {}>>;
|
|
7285
7302
|
/**
|
|
7286
7303
|
* No description
|
|
7287
7304
|
*
|
|
@@ -7294,7 +7311,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7294
7311
|
* @response `404` `ProblemDetails` Not Found
|
|
7295
7312
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7296
7313
|
*/
|
|
7297
|
-
retryFailedLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any>>;
|
|
7314
|
+
retryFailedLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any, {}>>;
|
|
7298
7315
|
/**
|
|
7299
7316
|
* No description
|
|
7300
7317
|
*
|
|
@@ -7305,7 +7322,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7305
7322
|
* @secure
|
|
7306
7323
|
* @response `200` `DocumentDataRequest` Success
|
|
7307
7324
|
*/
|
|
7308
|
-
generateLoanDocument: (loanId: string, data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any>>;
|
|
7325
|
+
generateLoanDocument: (loanId: string, data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any, {}>>;
|
|
7309
7326
|
/**
|
|
7310
7327
|
* No description
|
|
7311
7328
|
*
|
|
@@ -7318,7 +7335,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7318
7335
|
* @response `400` `ProblemDetails` Bad Request
|
|
7319
7336
|
* @response `404` `ProblemDetails` Not Found
|
|
7320
7337
|
*/
|
|
7321
|
-
sendLoanDocuments: (loanId: string, data: SendLoanDocumentsRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7338
|
+
sendLoanDocuments: (loanId: string, data: SendLoanDocumentsRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7322
7339
|
/**
|
|
7323
7340
|
* @description Fetches all documents from Encompass that don't exist locally and stores them in S3
|
|
7324
7341
|
*
|
|
@@ -7330,7 +7347,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7330
7347
|
* @response `200` `DocumentSync` Success
|
|
7331
7348
|
* @response `404` `ProblemDetails` Not Found
|
|
7332
7349
|
*/
|
|
7333
|
-
syncLoanDocumentsFromLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentSync, any>>;
|
|
7350
|
+
syncLoanDocumentsFromLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentSync, any, {}>>;
|
|
7334
7351
|
/**
|
|
7335
7352
|
* @description Re-attempts to push a failed document to LOS
|
|
7336
7353
|
*
|
|
@@ -7343,7 +7360,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7343
7360
|
* @response `404` `ProblemDetails` Not Found
|
|
7344
7361
|
* @response `423` `ProblemDetails` Client Error
|
|
7345
7362
|
*/
|
|
7346
|
-
retrySyncLoanDocumentToLos: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7363
|
+
retrySyncLoanDocumentToLos: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7347
7364
|
/**
|
|
7348
7365
|
* No description
|
|
7349
7366
|
*
|
|
@@ -7354,7 +7371,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7354
7371
|
* @secure
|
|
7355
7372
|
* @response `201` `Draft` Created
|
|
7356
7373
|
*/
|
|
7357
|
-
createLoanDraft: (data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
|
|
7374
|
+
createLoanDraft: (data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
|
|
7358
7375
|
/**
|
|
7359
7376
|
* No description
|
|
7360
7377
|
*
|
|
@@ -7365,7 +7382,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7365
7382
|
* @secure
|
|
7366
7383
|
* @response `200` `(DraftContent)[]` Success
|
|
7367
7384
|
*/
|
|
7368
|
-
getLoanDrafts: (params?: RequestParams) => Promise<AxiosResponse<DraftContent[], any>>;
|
|
7385
|
+
getLoanDrafts: (params?: RequestParams) => Promise<AxiosResponse<DraftContent[], any, {}>>;
|
|
7369
7386
|
/**
|
|
7370
7387
|
* No description
|
|
7371
7388
|
*
|
|
@@ -7376,7 +7393,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7376
7393
|
* @secure
|
|
7377
7394
|
* @response `200` `DraftContent` Success
|
|
7378
7395
|
*/
|
|
7379
|
-
getLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<DraftContent, any>>;
|
|
7396
|
+
getLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<DraftContent, any, {}>>;
|
|
7380
7397
|
/**
|
|
7381
7398
|
* No description
|
|
7382
7399
|
*
|
|
@@ -7387,7 +7404,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7387
7404
|
* @secure
|
|
7388
7405
|
* @response `200` `Draft` Success
|
|
7389
7406
|
*/
|
|
7390
|
-
replaceLoanDraft: (draftId: string, data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
|
|
7407
|
+
replaceLoanDraft: (draftId: string, data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
|
|
7391
7408
|
/**
|
|
7392
7409
|
* No description
|
|
7393
7410
|
*
|
|
@@ -7398,7 +7415,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7398
7415
|
* @secure
|
|
7399
7416
|
* @response `204` `void` No Content
|
|
7400
7417
|
*/
|
|
7401
|
-
deleteLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7418
|
+
deleteLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7402
7419
|
/**
|
|
7403
7420
|
* No description
|
|
7404
7421
|
*
|
|
@@ -7416,7 +7433,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7416
7433
|
pageNumber?: number;
|
|
7417
7434
|
sortBy?: string;
|
|
7418
7435
|
sortDirection?: string;
|
|
7419
|
-
}, params?: RequestParams) => Promise<AxiosResponse<DraftContentPaginated, any>>;
|
|
7436
|
+
}, params?: RequestParams) => Promise<AxiosResponse<DraftContentPaginated, any, {}>>;
|
|
7420
7437
|
/**
|
|
7421
7438
|
* No description
|
|
7422
7439
|
*
|
|
@@ -7427,7 +7444,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7427
7444
|
* @secure
|
|
7428
7445
|
* @response `200` `Draft` Success
|
|
7429
7446
|
*/
|
|
7430
|
-
reassignLoanOfficer: (draftId: string, data: DraftLoanOfficerReassignRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
|
|
7447
|
+
reassignLoanOfficer: (draftId: string, data: DraftLoanOfficerReassignRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
|
|
7431
7448
|
/**
|
|
7432
7449
|
* No description
|
|
7433
7450
|
*
|
|
@@ -7438,7 +7455,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7438
7455
|
* @secure
|
|
7439
7456
|
* @response `200` `Draft` Success
|
|
7440
7457
|
*/
|
|
7441
|
-
restoreLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
|
|
7458
|
+
restoreLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
|
|
7442
7459
|
/**
|
|
7443
7460
|
* No description
|
|
7444
7461
|
*
|
|
@@ -7458,7 +7475,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7458
7475
|
pageNumber?: number;
|
|
7459
7476
|
sortBy?: string;
|
|
7460
7477
|
sortDirection?: string;
|
|
7461
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanImportPaginated, any>>;
|
|
7478
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanImportPaginated, any, {}>>;
|
|
7462
7479
|
/**
|
|
7463
7480
|
* No description
|
|
7464
7481
|
*
|
|
@@ -7469,7 +7486,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7469
7486
|
* @secure
|
|
7470
7487
|
* @response `201` `LoanImport` Created
|
|
7471
7488
|
*/
|
|
7472
|
-
createLoanImport: (data: CreateLoanImportRequest, params?: RequestParams) => Promise<AxiosResponse<LoanImport, any>>;
|
|
7489
|
+
createLoanImport: (data: CreateLoanImportRequest, params?: RequestParams) => Promise<AxiosResponse<LoanImport, any, {}>>;
|
|
7473
7490
|
/**
|
|
7474
7491
|
* No description
|
|
7475
7492
|
*
|
|
@@ -7480,7 +7497,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7480
7497
|
* @secure
|
|
7481
7498
|
* @response `200` `LoanImport` Success
|
|
7482
7499
|
*/
|
|
7483
|
-
getLoanImport: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanImport, any>>;
|
|
7500
|
+
getLoanImport: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanImport, any, {}>>;
|
|
7484
7501
|
/**
|
|
7485
7502
|
* No description
|
|
7486
7503
|
*
|
|
@@ -7498,7 +7515,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7498
7515
|
pageNumber?: number;
|
|
7499
7516
|
sortBy?: string;
|
|
7500
7517
|
sortDirection?: string;
|
|
7501
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanImportLogPaginated, any>>;
|
|
7518
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanImportLogPaginated, any, {}>>;
|
|
7502
7519
|
/**
|
|
7503
7520
|
* No description
|
|
7504
7521
|
*
|
|
@@ -7510,7 +7527,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7510
7527
|
* @response `200` `(Invite)[]` Success
|
|
7511
7528
|
* @response `404` `ProblemDetails` Not Found
|
|
7512
7529
|
*/
|
|
7513
|
-
getLoanInvites: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Invite[], any>>;
|
|
7530
|
+
getLoanInvites: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Invite[], any, {}>>;
|
|
7514
7531
|
/**
|
|
7515
7532
|
* No description
|
|
7516
7533
|
*
|
|
@@ -7522,7 +7539,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7522
7539
|
* @response `200` `(Invite)[]` Success
|
|
7523
7540
|
* @response `404` `ProblemDetails` Not Found
|
|
7524
7541
|
*/
|
|
7525
|
-
inviteLoanContacts: (loanId: string, data: string[], params?: RequestParams) => Promise<AxiosResponse<Invite[], any>>;
|
|
7542
|
+
inviteLoanContacts: (loanId: string, data: string[], params?: RequestParams) => Promise<AxiosResponse<Invite[], any, {}>>;
|
|
7526
7543
|
/**
|
|
7527
7544
|
* No description
|
|
7528
7545
|
*
|
|
@@ -7540,7 +7557,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7540
7557
|
pageNumber?: number;
|
|
7541
7558
|
sortBy?: string;
|
|
7542
7559
|
sortDirection?: string;
|
|
7543
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanLogPaginated, any>>;
|
|
7560
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanLogPaginated, any, {}>>;
|
|
7544
7561
|
/**
|
|
7545
7562
|
* No description
|
|
7546
7563
|
*
|
|
@@ -7552,7 +7569,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7552
7569
|
* @response `200` `LoanLogDetail` Success
|
|
7553
7570
|
* @response `404` `ProblemDetails` Not Found
|
|
7554
7571
|
*/
|
|
7555
|
-
getLoanLogById: (loanId: string, loanLogId: string, params?: RequestParams) => Promise<AxiosResponse<LoanLogDetail, any>>;
|
|
7572
|
+
getLoanLogById: (loanId: string, loanLogId: string, params?: RequestParams) => Promise<AxiosResponse<LoanLogDetail, any, {}>>;
|
|
7556
7573
|
/**
|
|
7557
7574
|
* No description
|
|
7558
7575
|
*
|
|
@@ -7571,7 +7588,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7571
7588
|
pageNumber?: number;
|
|
7572
7589
|
sortBy?: string;
|
|
7573
7590
|
sortDirection?: string;
|
|
7574
|
-
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any>>;
|
|
7591
|
+
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any, {}>>;
|
|
7575
7592
|
/**
|
|
7576
7593
|
* No description
|
|
7577
7594
|
*
|
|
@@ -7589,7 +7606,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7589
7606
|
pageNumber?: number;
|
|
7590
7607
|
sortBy?: string;
|
|
7591
7608
|
sortDirection?: string;
|
|
7592
|
-
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any>>;
|
|
7609
|
+
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any, {}>>;
|
|
7593
7610
|
/**
|
|
7594
7611
|
* No description
|
|
7595
7612
|
*
|
|
@@ -7600,7 +7617,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7600
7617
|
* @secure
|
|
7601
7618
|
* @response `200` `BranchUser` Success
|
|
7602
7619
|
*/
|
|
7603
|
-
getLoanOfficer: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any>>;
|
|
7620
|
+
getLoanOfficer: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any, {}>>;
|
|
7604
7621
|
/**
|
|
7605
7622
|
* No description
|
|
7606
7623
|
*
|
|
@@ -7612,7 +7629,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7612
7629
|
* @response `200` `SiteConfiguration` Success
|
|
7613
7630
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7614
7631
|
*/
|
|
7615
|
-
createLoanOfficerSiteConfiguration: (loanOfficerId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
7632
|
+
createLoanOfficerSiteConfiguration: (loanOfficerId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
7616
7633
|
/**
|
|
7617
7634
|
* No description
|
|
7618
7635
|
*
|
|
@@ -7623,7 +7640,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7623
7640
|
* @secure
|
|
7624
7641
|
* @response `200` `SiteConfigurationWithInherited` Success
|
|
7625
7642
|
*/
|
|
7626
|
-
getLoanOfficerSiteConfiguration: (loanOfficerId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
|
|
7643
|
+
getLoanOfficerSiteConfiguration: (loanOfficerId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any, {}>>;
|
|
7627
7644
|
/**
|
|
7628
7645
|
* No description
|
|
7629
7646
|
*
|
|
@@ -7637,7 +7654,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7637
7654
|
*/
|
|
7638
7655
|
replaceLoanOfficerSiteConfiguration: (loanOfficerId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
|
|
7639
7656
|
applyToChildren?: boolean;
|
|
7640
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
7657
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
7641
7658
|
/**
|
|
7642
7659
|
* No description
|
|
7643
7660
|
*
|
|
@@ -7655,7 +7672,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7655
7672
|
pageNumber?: number;
|
|
7656
7673
|
sortBy?: string;
|
|
7657
7674
|
sortDirection?: string;
|
|
7658
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanQueuePaginated, any>>;
|
|
7675
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanQueuePaginated, any, {}>>;
|
|
7659
7676
|
/**
|
|
7660
7677
|
* No description
|
|
7661
7678
|
*
|
|
@@ -7667,7 +7684,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7667
7684
|
* @response `200` `any` Success
|
|
7668
7685
|
* @response `404` `ProblemDetails` Not Found
|
|
7669
7686
|
*/
|
|
7670
|
-
getLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<any, any>>;
|
|
7687
|
+
getLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
7671
7688
|
/**
|
|
7672
7689
|
* No description
|
|
7673
7690
|
*
|
|
@@ -7679,7 +7696,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7679
7696
|
* @response `200` `LoanQueueWithData` Success
|
|
7680
7697
|
* @response `404` `ProblemDetails` Not Found
|
|
7681
7698
|
*/
|
|
7682
|
-
replaceLoanQueue: (loanQueueId: string, data: UpdateLoanQueueRequest, params?: RequestParams) => Promise<AxiosResponse<LoanQueueWithData, any>>;
|
|
7699
|
+
replaceLoanQueue: (loanQueueId: string, data: UpdateLoanQueueRequest, params?: RequestParams) => Promise<AxiosResponse<LoanQueueWithData, any, {}>>;
|
|
7683
7700
|
/**
|
|
7684
7701
|
* No description
|
|
7685
7702
|
*
|
|
@@ -7691,7 +7708,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7691
7708
|
* @response `204` `void` No Content
|
|
7692
7709
|
* @response `404` `ProblemDetails` Not Found
|
|
7693
7710
|
*/
|
|
7694
|
-
deleteLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7711
|
+
deleteLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7695
7712
|
/**
|
|
7696
7713
|
* No description
|
|
7697
7714
|
*
|
|
@@ -7703,7 +7720,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7703
7720
|
* @response `204` `void` No Content
|
|
7704
7721
|
* @response `404` `ProblemDetails` Not Found
|
|
7705
7722
|
*/
|
|
7706
|
-
retryLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7723
|
+
retryLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7707
7724
|
/**
|
|
7708
7725
|
* No description
|
|
7709
7726
|
*
|
|
@@ -7715,7 +7732,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7715
7732
|
* @response `200` `Loan` Success
|
|
7716
7733
|
* @response `404` `ProblemDetails` Not Found
|
|
7717
7734
|
*/
|
|
7718
|
-
getLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any>>;
|
|
7735
|
+
getLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any, {}>>;
|
|
7719
7736
|
/**
|
|
7720
7737
|
* No description
|
|
7721
7738
|
*
|
|
@@ -7726,7 +7743,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7726
7743
|
* @secure
|
|
7727
7744
|
* @response `200` `GetApplications` Success
|
|
7728
7745
|
*/
|
|
7729
|
-
getLoans: (params?: RequestParams) => Promise<AxiosResponse<GetApplications, any>>;
|
|
7746
|
+
getLoans: (params?: RequestParams) => Promise<AxiosResponse<GetApplications, any, {}>>;
|
|
7730
7747
|
/**
|
|
7731
7748
|
* No description
|
|
7732
7749
|
*
|
|
@@ -7740,7 +7757,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7740
7757
|
* @response `401` `ProblemDetails` Unauthorized
|
|
7741
7758
|
* @response `403` `ProblemDetails` Forbidden
|
|
7742
7759
|
*/
|
|
7743
|
-
createLoanv3: (data: LoanApplicationRequest, params?: RequestParams) => Promise<AxiosResponse<LoanApplication, any>>;
|
|
7760
|
+
createLoanv3: (data: LoanApplicationRequest, params?: RequestParams) => Promise<AxiosResponse<LoanApplication, any, {}>>;
|
|
7744
7761
|
/**
|
|
7745
7762
|
* No description
|
|
7746
7763
|
*
|
|
@@ -7758,7 +7775,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7758
7775
|
pageNumber?: number;
|
|
7759
7776
|
sortBy?: string;
|
|
7760
7777
|
sortDirection?: string;
|
|
7761
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanListPaginated, any>>;
|
|
7778
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanListPaginated, any, {}>>;
|
|
7762
7779
|
/**
|
|
7763
7780
|
* No description
|
|
7764
7781
|
*
|
|
@@ -7774,7 +7791,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7774
7791
|
* @response `404` `ProblemDetails` Not Found
|
|
7775
7792
|
* @response `409` `any` Conflict
|
|
7776
7793
|
*/
|
|
7777
|
-
updateLoan: (loanId: string, data: any, params?: RequestParams) => Promise<AxiosResponse<Loan, any>>;
|
|
7794
|
+
updateLoan: (loanId: string, data: any, params?: RequestParams) => Promise<AxiosResponse<Loan, any, {}>>;
|
|
7778
7795
|
/**
|
|
7779
7796
|
* No description
|
|
7780
7797
|
*
|
|
@@ -7787,7 +7804,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7787
7804
|
* @response `400` `ProblemDetails` Bad Request
|
|
7788
7805
|
* @response `404` `ProblemDetails` Not Found
|
|
7789
7806
|
*/
|
|
7790
|
-
completeBorrowerApplication: (loanId: string, borrowerId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7807
|
+
completeBorrowerApplication: (loanId: string, borrowerId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7791
7808
|
/**
|
|
7792
7809
|
* No description
|
|
7793
7810
|
*
|
|
@@ -7798,7 +7815,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7798
7815
|
* @secure
|
|
7799
7816
|
* @response `200` `Loan` Success
|
|
7800
7817
|
*/
|
|
7801
|
-
importLoanFromLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any>>;
|
|
7818
|
+
importLoanFromLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any, {}>>;
|
|
7802
7819
|
/**
|
|
7803
7820
|
* No description
|
|
7804
7821
|
*
|
|
@@ -7810,7 +7827,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7810
7827
|
* @response `202` `void` Accepted
|
|
7811
7828
|
* @response `404` `ProblemDetails` Not Found
|
|
7812
7829
|
*/
|
|
7813
|
-
syncLoanToLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7830
|
+
syncLoanToLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7814
7831
|
/**
|
|
7815
7832
|
* No description
|
|
7816
7833
|
*
|
|
@@ -7829,7 +7846,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7829
7846
|
pageNumber?: number;
|
|
7830
7847
|
sortBy?: string;
|
|
7831
7848
|
sortDirection?: string;
|
|
7832
|
-
}, params?: RequestParams) => Promise<AxiosResponse<TaskCommentPaginated, any>>;
|
|
7849
|
+
}, params?: RequestParams) => Promise<AxiosResponse<TaskCommentPaginated, any, {}>>;
|
|
7833
7850
|
/**
|
|
7834
7851
|
* No description
|
|
7835
7852
|
*
|
|
@@ -7841,7 +7858,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7841
7858
|
* @response `200` `TaskComment` Success
|
|
7842
7859
|
* @response `404` `ProblemDetails` Not Found
|
|
7843
7860
|
*/
|
|
7844
|
-
getLoanTaskComment: (id: string, loanId: string, userLoanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any>>;
|
|
7861
|
+
getLoanTaskComment: (id: string, loanId: string, userLoanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any, {}>>;
|
|
7845
7862
|
/**
|
|
7846
7863
|
* No description
|
|
7847
7864
|
*
|
|
@@ -7853,7 +7870,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7853
7870
|
* @response `201` `TaskComment` Created
|
|
7854
7871
|
* @response `404` `ProblemDetails` Not Found
|
|
7855
7872
|
*/
|
|
7856
|
-
createLoanTaskComment: (loanId: string, userLoanTaskId: string, data: TaskCommentRequest, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any>>;
|
|
7873
|
+
createLoanTaskComment: (loanId: string, userLoanTaskId: string, data: TaskCommentRequest, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any, {}>>;
|
|
7857
7874
|
/**
|
|
7858
7875
|
* No description
|
|
7859
7876
|
*
|
|
@@ -7865,7 +7882,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7865
7882
|
* @response `200` `TaskComment` Success
|
|
7866
7883
|
* @response `404` `ProblemDetails` Not Found
|
|
7867
7884
|
*/
|
|
7868
|
-
replaceLoanTaskComment: (loanId: string, userLoanTaskId: string, commentId: string, data: TaskCommentRequest, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any>>;
|
|
7885
|
+
replaceLoanTaskComment: (loanId: string, userLoanTaskId: string, commentId: string, data: TaskCommentRequest, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any, {}>>;
|
|
7869
7886
|
/**
|
|
7870
7887
|
* No description
|
|
7871
7888
|
*
|
|
@@ -7877,7 +7894,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7877
7894
|
* @response `204` `void` No Content
|
|
7878
7895
|
* @response `404` `ProblemDetails` Not Found
|
|
7879
7896
|
*/
|
|
7880
|
-
deleteLoanTaskComment: (loanId: string, userLoanTaskId: string, commentId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7897
|
+
deleteLoanTaskComment: (loanId: string, userLoanTaskId: string, commentId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7881
7898
|
/**
|
|
7882
7899
|
* No description
|
|
7883
7900
|
*
|
|
@@ -7895,7 +7912,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7895
7912
|
/** @format binary */
|
|
7896
7913
|
file?: File;
|
|
7897
7914
|
bucket?: string;
|
|
7898
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
|
|
7915
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
|
|
7899
7916
|
/**
|
|
7900
7917
|
* No description
|
|
7901
7918
|
*
|
|
@@ -7907,7 +7924,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7907
7924
|
* @response `204` `UserLoanTask` No Content
|
|
7908
7925
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7909
7926
|
*/
|
|
7910
|
-
createLoanTaskDocumentBucket: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
|
|
7927
|
+
createLoanTaskDocumentBucket: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
|
|
7911
7928
|
/**
|
|
7912
7929
|
* No description
|
|
7913
7930
|
*
|
|
@@ -7919,7 +7936,20 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7919
7936
|
* @response `204` `void` No Content
|
|
7920
7937
|
* @response `404` `ProblemDetails` Not Found
|
|
7921
7938
|
*/
|
|
7922
|
-
sendOutstandingLoanTaskNotification: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7939
|
+
sendOutstandingLoanTaskNotification: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7940
|
+
/**
|
|
7941
|
+
* No description
|
|
7942
|
+
*
|
|
7943
|
+
* @tags LoanTaskNotifications
|
|
7944
|
+
* @name SendLoanTaskReminder
|
|
7945
|
+
* @summary Send Loan Task Reminder
|
|
7946
|
+
* @request POST:/api/loans/{loanID}/tasks/reminders
|
|
7947
|
+
* @secure
|
|
7948
|
+
* @response `204` `void` No Content
|
|
7949
|
+
* @response `400` `ProblemDetails` Bad Request
|
|
7950
|
+
* @response `404` `ProblemDetails` Not Found
|
|
7951
|
+
*/
|
|
7952
|
+
sendLoanTaskReminder: (loanId: string, data: SendLoanTaskReminderRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7923
7953
|
/**
|
|
7924
7954
|
* @description Search tasks across all loans
|
|
7925
7955
|
*
|
|
@@ -7937,7 +7967,19 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7937
7967
|
pageNumber?: number;
|
|
7938
7968
|
sortBy?: string;
|
|
7939
7969
|
sortDirection?: string;
|
|
7940
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UserLoanTaskPaginated, any>>;
|
|
7970
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UserLoanTaskPaginated, any, {}>>;
|
|
7971
|
+
/**
|
|
7972
|
+
* @description Returns task counts grouped by status for loans accessible to the current user based on their role
|
|
7973
|
+
*
|
|
7974
|
+
* @tags LoanTasks
|
|
7975
|
+
* @name SearchLoanTasksSummary
|
|
7976
|
+
* @summary Search Summary
|
|
7977
|
+
* @request POST:/api/loans/tasks/search/summary
|
|
7978
|
+
* @secure
|
|
7979
|
+
* @response `200` `(LoanTaskStatusSummary)[]` Success
|
|
7980
|
+
* @response `422` `UnprocessableEntity` Client Error
|
|
7981
|
+
*/
|
|
7982
|
+
searchLoanTasksSummary: (data: LoanTaskSearchRequest, params?: RequestParams) => Promise<AxiosResponse<LoanTaskStatusSummary[], any, {}>>;
|
|
7941
7983
|
/**
|
|
7942
7984
|
* No description
|
|
7943
7985
|
*
|
|
@@ -7949,7 +7991,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7949
7991
|
* @response `200` `(UserLoanTask)[]` Success
|
|
7950
7992
|
* @response `404` `ProblemDetails` Not Found
|
|
7951
7993
|
*/
|
|
7952
|
-
getLoanTasks: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any>>;
|
|
7994
|
+
getLoanTasks: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any, {}>>;
|
|
7953
7995
|
/**
|
|
7954
7996
|
* No description
|
|
7955
7997
|
*
|
|
@@ -7961,7 +8003,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7961
8003
|
* @response `200` `UserLoanTask` Success
|
|
7962
8004
|
* @response `404` `ProblemDetails` Not Found
|
|
7963
8005
|
*/
|
|
7964
|
-
getLoanTask: (id: string, loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
|
|
8006
|
+
getLoanTask: (id: string, loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
|
|
7965
8007
|
/**
|
|
7966
8008
|
* @description Get the difference between the current loan tasks and the tasks generated by business rules
|
|
7967
8009
|
*
|
|
@@ -7973,7 +8015,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7973
8015
|
* @response `200` `(UserLoanTask)[]` Success
|
|
7974
8016
|
* @response `404` `ProblemDetails` Not Found
|
|
7975
8017
|
*/
|
|
7976
|
-
getLoanTaskDifference: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any>>;
|
|
8018
|
+
getLoanTaskDifference: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any, {}>>;
|
|
7977
8019
|
/**
|
|
7978
8020
|
* No description
|
|
7979
8021
|
*
|
|
@@ -7985,7 +8027,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7985
8027
|
* @response `201` `UserLoanTask` Created
|
|
7986
8028
|
* @response `404` `ProblemDetails` Not Found
|
|
7987
8029
|
*/
|
|
7988
|
-
createLoanTask: (loanId: string, taskId: string, data: UserLoanTaskRequest, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
|
|
8030
|
+
createLoanTask: (loanId: string, taskId: string, data: UserLoanTaskRequest, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
|
|
7989
8031
|
/**
|
|
7990
8032
|
* No description
|
|
7991
8033
|
*
|
|
@@ -7997,7 +8039,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7997
8039
|
* @response `201` `(UserLoanTask)[]` Created
|
|
7998
8040
|
* @response `404` `ProblemDetails` Not Found
|
|
7999
8041
|
*/
|
|
8000
|
-
importLoanTask: (loanId: string, data: ImportUserLoanTaskRequest[], params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any>>;
|
|
8042
|
+
importLoanTask: (loanId: string, data: ImportUserLoanTaskRequest[], params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any, {}>>;
|
|
8001
8043
|
/**
|
|
8002
8044
|
* No description
|
|
8003
8045
|
*
|
|
@@ -8009,7 +8051,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8009
8051
|
* @response `200` `UserLoanTask` Success
|
|
8010
8052
|
* @response `404` `ProblemDetails` Not Found
|
|
8011
8053
|
*/
|
|
8012
|
-
replaceLoanTask: (loanId: string, userLoanTaskId: string, data: UserLoanTaskUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
|
|
8054
|
+
replaceLoanTask: (loanId: string, userLoanTaskId: string, data: UserLoanTaskUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
|
|
8013
8055
|
/**
|
|
8014
8056
|
* No description
|
|
8015
8057
|
*
|
|
@@ -8021,7 +8063,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8021
8063
|
* @response `204` `void` No Content
|
|
8022
8064
|
* @response `404` `ProblemDetails` Not Found
|
|
8023
8065
|
*/
|
|
8024
|
-
deleteLoanTask: (loanId: string, userLoanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8066
|
+
deleteLoanTask: (loanId: string, userLoanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8025
8067
|
/**
|
|
8026
8068
|
* No description
|
|
8027
8069
|
*
|
|
@@ -8034,7 +8076,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8034
8076
|
* @response `404` `ProblemDetails` Not Found
|
|
8035
8077
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8036
8078
|
*/
|
|
8037
|
-
createLoanTaskVerification: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
|
|
8079
|
+
createLoanTaskVerification: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
|
|
8038
8080
|
/**
|
|
8039
8081
|
* No description
|
|
8040
8082
|
*
|
|
@@ -8045,7 +8087,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8045
8087
|
* @secure
|
|
8046
8088
|
* @response `200` `(UserLoanConsent)[]` Success
|
|
8047
8089
|
*/
|
|
8048
|
-
getLoanUserConsents: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanConsent[], any>>;
|
|
8090
|
+
getLoanUserConsents: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanConsent[], any, {}>>;
|
|
8049
8091
|
/**
|
|
8050
8092
|
* No description
|
|
8051
8093
|
*
|
|
@@ -8056,7 +8098,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8056
8098
|
* @secure
|
|
8057
8099
|
* @response `200` `LoanUser` Success
|
|
8058
8100
|
*/
|
|
8059
|
-
getLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any>>;
|
|
8101
|
+
getLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any, {}>>;
|
|
8060
8102
|
/**
|
|
8061
8103
|
* No description
|
|
8062
8104
|
*
|
|
@@ -8067,7 +8109,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8067
8109
|
* @secure
|
|
8068
8110
|
* @response `201` `LoanUser` Created
|
|
8069
8111
|
*/
|
|
8070
|
-
addLoanUser: (loanId: string, userId: string, data: CreateUserLoan, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any>>;
|
|
8112
|
+
addLoanUser: (loanId: string, userId: string, data: CreateUserLoan, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any, {}>>;
|
|
8071
8113
|
/**
|
|
8072
8114
|
* No description
|
|
8073
8115
|
*
|
|
@@ -8078,7 +8120,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8078
8120
|
* @secure
|
|
8079
8121
|
* @response `204` `LoanUser` No Content
|
|
8080
8122
|
*/
|
|
8081
|
-
removeLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any>>;
|
|
8123
|
+
removeLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any, {}>>;
|
|
8082
8124
|
/**
|
|
8083
8125
|
* No description
|
|
8084
8126
|
*
|
|
@@ -8089,7 +8131,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8089
8131
|
* @secure
|
|
8090
8132
|
* @response `204` `void` No Content
|
|
8091
8133
|
*/
|
|
8092
|
-
sendLoanUserInviteReminderNotification: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8134
|
+
sendLoanUserInviteReminderNotification: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8093
8135
|
/**
|
|
8094
8136
|
* No description
|
|
8095
8137
|
*
|
|
@@ -8100,7 +8142,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8100
8142
|
* @secure
|
|
8101
8143
|
* @response `200` `(MilestoneConfiguration)[]` Success
|
|
8102
8144
|
*/
|
|
8103
|
-
getMilestones: (params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration[], any>>;
|
|
8145
|
+
getMilestones: (params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration[], any, {}>>;
|
|
8104
8146
|
/**
|
|
8105
8147
|
* No description
|
|
8106
8148
|
*
|
|
@@ -8112,7 +8154,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8112
8154
|
* @response `201` `MilestoneConfiguration` Created
|
|
8113
8155
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8114
8156
|
*/
|
|
8115
|
-
createMilestone: (data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any>>;
|
|
8157
|
+
createMilestone: (data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any, {}>>;
|
|
8116
8158
|
/**
|
|
8117
8159
|
* No description
|
|
8118
8160
|
*
|
|
@@ -8124,7 +8166,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8124
8166
|
* @response `200` `MilestoneConfiguration` Success
|
|
8125
8167
|
* @response `404` `Error` Not Found
|
|
8126
8168
|
*/
|
|
8127
|
-
getMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any>>;
|
|
8169
|
+
getMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any, {}>>;
|
|
8128
8170
|
/**
|
|
8129
8171
|
* No description
|
|
8130
8172
|
*
|
|
@@ -8137,7 +8179,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8137
8179
|
* @response `404` `Error` Not Found
|
|
8138
8180
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8139
8181
|
*/
|
|
8140
|
-
replaceMilestone: (id: string, data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any>>;
|
|
8182
|
+
replaceMilestone: (id: string, data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any, {}>>;
|
|
8141
8183
|
/**
|
|
8142
8184
|
* No description
|
|
8143
8185
|
*
|
|
@@ -8149,7 +8191,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8149
8191
|
* @response `204` `void` No Content
|
|
8150
8192
|
* @response `404` `Error` Not Found
|
|
8151
8193
|
*/
|
|
8152
|
-
deleteMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8194
|
+
deleteMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8153
8195
|
/**
|
|
8154
8196
|
* No description
|
|
8155
8197
|
*
|
|
@@ -8161,7 +8203,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8161
8203
|
* @response `200` `MonthlyPaymentCalculator` Success
|
|
8162
8204
|
* @response `422` `ProblemDetails` Client Error
|
|
8163
8205
|
*/
|
|
8164
|
-
calculateMortgageMonthlyPayment: (data: MonthlyPaymentCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<MonthlyPaymentCalculator, any>>;
|
|
8206
|
+
calculateMortgageMonthlyPayment: (data: MonthlyPaymentCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<MonthlyPaymentCalculator, any, {}>>;
|
|
8165
8207
|
/**
|
|
8166
8208
|
* No description
|
|
8167
8209
|
*
|
|
@@ -8173,7 +8215,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8173
8215
|
* @response `200` `AffordabilityCalculator` Success
|
|
8174
8216
|
* @response `422` `ProblemDetails` Client Error
|
|
8175
8217
|
*/
|
|
8176
|
-
calculateMortgageAffordability: (data: AffordabilityCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<AffordabilityCalculator, any>>;
|
|
8218
|
+
calculateMortgageAffordability: (data: AffordabilityCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<AffordabilityCalculator, any, {}>>;
|
|
8177
8219
|
/**
|
|
8178
8220
|
* No description
|
|
8179
8221
|
*
|
|
@@ -8185,7 +8227,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8185
8227
|
* @response `200` `LoanComparisonCalculator` Success
|
|
8186
8228
|
* @response `422` `ProblemDetails` Client Error
|
|
8187
8229
|
*/
|
|
8188
|
-
calculateMortgageLoanComparison: (data: LoanComparisonCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<LoanComparisonCalculator, any>>;
|
|
8230
|
+
calculateMortgageLoanComparison: (data: LoanComparisonCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<LoanComparisonCalculator, any, {}>>;
|
|
8189
8231
|
/**
|
|
8190
8232
|
* No description
|
|
8191
8233
|
*
|
|
@@ -8197,7 +8239,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8197
8239
|
* @response `200` `RefinanceCalculator` Success
|
|
8198
8240
|
* @response `422` `ProblemDetails` Client Error
|
|
8199
8241
|
*/
|
|
8200
|
-
calculateMortgageRefinance: (data: RefinanceCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<RefinanceCalculator, any>>;
|
|
8242
|
+
calculateMortgageRefinance: (data: RefinanceCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<RefinanceCalculator, any, {}>>;
|
|
8201
8243
|
/**
|
|
8202
8244
|
* No description
|
|
8203
8245
|
*
|
|
@@ -8209,7 +8251,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8209
8251
|
* @response `200` `void` Success
|
|
8210
8252
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8211
8253
|
*/
|
|
8212
|
-
sendNotificationForLoan: (data: SendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8254
|
+
sendNotificationForLoan: (data: SendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8213
8255
|
/**
|
|
8214
8256
|
* No description
|
|
8215
8257
|
*
|
|
@@ -8221,7 +8263,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8221
8263
|
* @response `200` `void` Success
|
|
8222
8264
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8223
8265
|
*/
|
|
8224
|
-
sendTestNotificationForLoan: (data: TestSendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8266
|
+
sendTestNotificationForLoan: (data: TestSendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8225
8267
|
/**
|
|
8226
8268
|
* No description
|
|
8227
8269
|
*
|
|
@@ -8234,7 +8276,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8234
8276
|
*/
|
|
8235
8277
|
getNotificationTemplates: (query?: {
|
|
8236
8278
|
showAll?: boolean;
|
|
8237
|
-
}, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateBase[], any>>;
|
|
8279
|
+
}, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateBase[], any, {}>>;
|
|
8238
8280
|
/**
|
|
8239
8281
|
* No description
|
|
8240
8282
|
*
|
|
@@ -8246,7 +8288,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8246
8288
|
* @response `201` `NotificationTemplate` Created
|
|
8247
8289
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8248
8290
|
*/
|
|
8249
|
-
createNotificationTemplate: (data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
|
|
8291
|
+
createNotificationTemplate: (data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any, {}>>;
|
|
8250
8292
|
/**
|
|
8251
8293
|
* No description
|
|
8252
8294
|
*
|
|
@@ -8264,7 +8306,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8264
8306
|
pageNumber?: number;
|
|
8265
8307
|
sortBy?: string;
|
|
8266
8308
|
sortDirection?: string;
|
|
8267
|
-
}, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateBasePaginated, any>>;
|
|
8309
|
+
}, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateBasePaginated, any, {}>>;
|
|
8268
8310
|
/**
|
|
8269
8311
|
* No description
|
|
8270
8312
|
*
|
|
@@ -8275,7 +8317,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8275
8317
|
* @secure
|
|
8276
8318
|
* @response `200` `NotificationTemplate` Success
|
|
8277
8319
|
*/
|
|
8278
|
-
getNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
|
|
8320
|
+
getNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any, {}>>;
|
|
8279
8321
|
/**
|
|
8280
8322
|
* No description
|
|
8281
8323
|
*
|
|
@@ -8287,7 +8329,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8287
8329
|
* @response `200` `NotificationTemplate` Success
|
|
8288
8330
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8289
8331
|
*/
|
|
8290
|
-
replaceNotificationTemplate: (id: string, data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
|
|
8332
|
+
replaceNotificationTemplate: (id: string, data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any, {}>>;
|
|
8291
8333
|
/**
|
|
8292
8334
|
* No description
|
|
8293
8335
|
*
|
|
@@ -8298,7 +8340,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8298
8340
|
* @secure
|
|
8299
8341
|
* @response `204` `void` No Content
|
|
8300
8342
|
*/
|
|
8301
|
-
deleteNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8343
|
+
deleteNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8302
8344
|
/**
|
|
8303
8345
|
* No description
|
|
8304
8346
|
*
|
|
@@ -8309,7 +8351,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8309
8351
|
* @secure
|
|
8310
8352
|
* @response `200` `NotificationTemplate` Success
|
|
8311
8353
|
*/
|
|
8312
|
-
restoreNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
|
|
8354
|
+
restoreNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any, {}>>;
|
|
8313
8355
|
/**
|
|
8314
8356
|
* No description
|
|
8315
8357
|
*
|
|
@@ -8320,7 +8362,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8320
8362
|
* @secure
|
|
8321
8363
|
* @response `200` `(NotificationTemplateVersion)[]` Success
|
|
8322
8364
|
*/
|
|
8323
|
-
getNotificationTemplateVersions: (notificationId: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion[], any>>;
|
|
8365
|
+
getNotificationTemplateVersions: (notificationId: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion[], any, {}>>;
|
|
8324
8366
|
/**
|
|
8325
8367
|
* No description
|
|
8326
8368
|
*
|
|
@@ -8331,7 +8373,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8331
8373
|
* @secure
|
|
8332
8374
|
* @response `200` `NotificationTemplateVersion` Success
|
|
8333
8375
|
*/
|
|
8334
|
-
createNotificationTemplateVersion: (notificationId: string, data: NotificationTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
|
|
8376
|
+
createNotificationTemplateVersion: (notificationId: string, data: NotificationTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any, {}>>;
|
|
8335
8377
|
/**
|
|
8336
8378
|
* No description
|
|
8337
8379
|
*
|
|
@@ -8342,7 +8384,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8342
8384
|
* @secure
|
|
8343
8385
|
* @response `200` `NotificationTemplateVersion` Success
|
|
8344
8386
|
*/
|
|
8345
|
-
getNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
|
|
8387
|
+
getNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any, {}>>;
|
|
8346
8388
|
/**
|
|
8347
8389
|
* No description
|
|
8348
8390
|
*
|
|
@@ -8353,7 +8395,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8353
8395
|
* @secure
|
|
8354
8396
|
* @response `200` `NotificationTemplateVersion` Success
|
|
8355
8397
|
*/
|
|
8356
|
-
replaceNotificationTemplateVersion: (notificationId: string, id: string, data: NotificationTemplateVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
|
|
8398
|
+
replaceNotificationTemplateVersion: (notificationId: string, id: string, data: NotificationTemplateVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any, {}>>;
|
|
8357
8399
|
/**
|
|
8358
8400
|
* No description
|
|
8359
8401
|
*
|
|
@@ -8364,7 +8406,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8364
8406
|
* @secure
|
|
8365
8407
|
* @response `200` `NotificationTemplateVersion` Success
|
|
8366
8408
|
*/
|
|
8367
|
-
deleteNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
|
|
8409
|
+
deleteNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any, {}>>;
|
|
8368
8410
|
/**
|
|
8369
8411
|
* No description
|
|
8370
8412
|
*
|
|
@@ -8385,7 +8427,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8385
8427
|
pageNumber?: number;
|
|
8386
8428
|
sortBy?: string;
|
|
8387
8429
|
sortDirection?: string;
|
|
8388
|
-
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any>>;
|
|
8430
|
+
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any, {}>>;
|
|
8389
8431
|
/**
|
|
8390
8432
|
* No description
|
|
8391
8433
|
*
|
|
@@ -8403,7 +8445,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8403
8445
|
pageNumber?: number;
|
|
8404
8446
|
sortBy?: string;
|
|
8405
8447
|
sortDirection?: string;
|
|
8406
|
-
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any>>;
|
|
8448
|
+
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any, {}>>;
|
|
8407
8449
|
/**
|
|
8408
8450
|
* No description
|
|
8409
8451
|
*
|
|
@@ -8414,7 +8456,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8414
8456
|
* @secure
|
|
8415
8457
|
* @response `200` `BranchUser` Success
|
|
8416
8458
|
*/
|
|
8417
|
-
getPartner: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any>>;
|
|
8459
|
+
getPartner: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any, {}>>;
|
|
8418
8460
|
/**
|
|
8419
8461
|
* No description
|
|
8420
8462
|
*
|
|
@@ -8426,7 +8468,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8426
8468
|
* @response `200` `SiteConfiguration` Success
|
|
8427
8469
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8428
8470
|
*/
|
|
8429
|
-
createPartnerSiteConfiguration: (realtorId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
8471
|
+
createPartnerSiteConfiguration: (realtorId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
8430
8472
|
/**
|
|
8431
8473
|
* No description
|
|
8432
8474
|
*
|
|
@@ -8437,7 +8479,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8437
8479
|
* @secure
|
|
8438
8480
|
* @response `200` `SiteConfigurationWithInherited` Success
|
|
8439
8481
|
*/
|
|
8440
|
-
getPartnerSiteConfiguration: (realtorId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
|
|
8482
|
+
getPartnerSiteConfiguration: (realtorId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any, {}>>;
|
|
8441
8483
|
/**
|
|
8442
8484
|
* No description
|
|
8443
8485
|
*
|
|
@@ -8451,7 +8493,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8451
8493
|
*/
|
|
8452
8494
|
replacePartnerSiteConfiguration: (realtorId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
|
|
8453
8495
|
applyToChildren?: boolean;
|
|
8454
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
8496
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
8455
8497
|
/**
|
|
8456
8498
|
* No description
|
|
8457
8499
|
*
|
|
@@ -8462,7 +8504,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8462
8504
|
* @secure
|
|
8463
8505
|
* @response `200` `SiteConfiguration` Success
|
|
8464
8506
|
*/
|
|
8465
|
-
getSiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
8507
|
+
getSiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
8466
8508
|
/**
|
|
8467
8509
|
* No description
|
|
8468
8510
|
*
|
|
@@ -8475,7 +8517,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8475
8517
|
* @response `200` `SiteConfigurationByUrl` Success
|
|
8476
8518
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8477
8519
|
*/
|
|
8478
|
-
searchSiteConfigurationByUrl: (data: GetSiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationByUrl, any>>;
|
|
8520
|
+
searchSiteConfigurationByUrl: (data: GetSiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationByUrl, any, {}>>;
|
|
8479
8521
|
/**
|
|
8480
8522
|
* No description
|
|
8481
8523
|
*
|
|
@@ -8489,7 +8531,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8489
8531
|
*/
|
|
8490
8532
|
getSiteConfigurationByUrl: (query?: {
|
|
8491
8533
|
url?: string;
|
|
8492
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationByUrl, any>>;
|
|
8534
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationByUrl, any, {}>>;
|
|
8493
8535
|
/**
|
|
8494
8536
|
* No description
|
|
8495
8537
|
*
|
|
@@ -8502,7 +8544,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8502
8544
|
* @response `200` `SiteConfiguration` Success
|
|
8503
8545
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8504
8546
|
*/
|
|
8505
|
-
searchSiteConfigurationByLoanOfficerUser: (data: GetSiteConfigurationByLOUserIDRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
8547
|
+
searchSiteConfigurationByLoanOfficerUser: (data: GetSiteConfigurationByLOUserIDRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
8506
8548
|
/**
|
|
8507
8549
|
* No description
|
|
8508
8550
|
*
|
|
@@ -8514,7 +8556,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8514
8556
|
* @response `200` `SiteConfiguration` Success
|
|
8515
8557
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8516
8558
|
*/
|
|
8517
|
-
getSiteConfigurationByLoanOfficerUser: (loUserId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
8559
|
+
getSiteConfigurationByLoanOfficerUser: (loUserId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
8518
8560
|
/**
|
|
8519
8561
|
* No description
|
|
8520
8562
|
*
|
|
@@ -8533,7 +8575,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8533
8575
|
pageNumber?: number;
|
|
8534
8576
|
sortBy?: string;
|
|
8535
8577
|
sortDirection?: string;
|
|
8536
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationSummaryPaginated, any>>;
|
|
8578
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationSummaryPaginated, any, {}>>;
|
|
8537
8579
|
/**
|
|
8538
8580
|
* No description
|
|
8539
8581
|
*
|
|
@@ -8544,7 +8586,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8544
8586
|
* @secure
|
|
8545
8587
|
* @response `200` `(AdminAccessGetForms)[]` Success
|
|
8546
8588
|
*/
|
|
8547
|
-
getFormsBySiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms[], any>>;
|
|
8589
|
+
getFormsBySiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms[], any, {}>>;
|
|
8548
8590
|
/**
|
|
8549
8591
|
* No description
|
|
8550
8592
|
*
|
|
@@ -8556,7 +8598,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8556
8598
|
* @response `200` `File` Success
|
|
8557
8599
|
* @response `404` `ProblemDetails` Not Found
|
|
8558
8600
|
*/
|
|
8559
|
-
getSamlMetadata: (sSoIntegration: GetSamlMetadataParamsEnum, ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
|
|
8601
|
+
getSamlMetadata: (sSoIntegration: GetSamlMetadataParamsEnum, ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
|
|
8560
8602
|
/**
|
|
8561
8603
|
* No description
|
|
8562
8604
|
*
|
|
@@ -8567,7 +8609,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8567
8609
|
* @secure
|
|
8568
8610
|
* @response `200` `File` Success
|
|
8569
8611
|
*/
|
|
8570
|
-
createOrReplaceSamlMetadata: (sSoIntegration: CreateOrReplaceSamlMetadataParamsEnum, ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
|
|
8612
|
+
createOrReplaceSamlMetadata: (sSoIntegration: CreateOrReplaceSamlMetadataParamsEnum, ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
|
|
8571
8613
|
/**
|
|
8572
8614
|
* No description
|
|
8573
8615
|
*
|
|
@@ -8578,7 +8620,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8578
8620
|
* @secure
|
|
8579
8621
|
* @response `200` `(SiteConfigurationForm)[]` Success
|
|
8580
8622
|
*/
|
|
8581
|
-
getWorkflowSiteConfigurations: (workflowId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm[], any>>;
|
|
8623
|
+
getWorkflowSiteConfigurations: (workflowId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm[], any, {}>>;
|
|
8582
8624
|
/**
|
|
8583
8625
|
* No description
|
|
8584
8626
|
*
|
|
@@ -8590,7 +8632,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8590
8632
|
* @response `200` `SiteConfigurationForm` Success
|
|
8591
8633
|
* @response `404` `ProblemDetails` Not Found
|
|
8592
8634
|
*/
|
|
8593
|
-
getWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any>>;
|
|
8635
|
+
getWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any, {}>>;
|
|
8594
8636
|
/**
|
|
8595
8637
|
* No description
|
|
8596
8638
|
*
|
|
@@ -8603,7 +8645,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8603
8645
|
* @response `409` `ProblemDetails` Conflict
|
|
8604
8646
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8605
8647
|
*/
|
|
8606
|
-
createWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any>>;
|
|
8648
|
+
createWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any, {}>>;
|
|
8607
8649
|
/**
|
|
8608
8650
|
* No description
|
|
8609
8651
|
*
|
|
@@ -8614,7 +8656,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8614
8656
|
* @secure
|
|
8615
8657
|
* @response `204` `void` No Content
|
|
8616
8658
|
*/
|
|
8617
|
-
deleteWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8659
|
+
deleteWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8618
8660
|
/**
|
|
8619
8661
|
* No description
|
|
8620
8662
|
*
|
|
@@ -8625,7 +8667,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8625
8667
|
* @secure
|
|
8626
8668
|
* @response `200` `GetForm` Success
|
|
8627
8669
|
*/
|
|
8628
|
-
getFormBySiteConfigurationSlug: (data: GetSiteFormRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any>>;
|
|
8670
|
+
getFormBySiteConfigurationSlug: (data: GetSiteFormRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any, {}>>;
|
|
8629
8671
|
/**
|
|
8630
8672
|
* No description
|
|
8631
8673
|
*
|
|
@@ -8639,7 +8681,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8639
8681
|
getSurveysByUsers: (query?: {
|
|
8640
8682
|
/** @format int32 */
|
|
8641
8683
|
limit?: number;
|
|
8642
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SocialSurveyRecord[], any>>;
|
|
8684
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SocialSurveyRecord[], any, {}>>;
|
|
8643
8685
|
/**
|
|
8644
8686
|
* No description
|
|
8645
8687
|
*
|
|
@@ -8651,7 +8693,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8651
8693
|
* @response `200` `(SocialSurveyRecord)[]` Success
|
|
8652
8694
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8653
8695
|
*/
|
|
8654
|
-
getSurveysByUser: (data: SurveyEmailRequest, params?: RequestParams) => Promise<AxiosResponse<SocialSurveyRecord[], any>>;
|
|
8696
|
+
getSurveysByUser: (data: SurveyEmailRequest, params?: RequestParams) => Promise<AxiosResponse<SocialSurveyRecord[], any, {}>>;
|
|
8655
8697
|
/**
|
|
8656
8698
|
* No description
|
|
8657
8699
|
*
|
|
@@ -8670,7 +8712,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8670
8712
|
pageNumber?: number;
|
|
8671
8713
|
sortBy?: string;
|
|
8672
8714
|
sortDirection?: string;
|
|
8673
|
-
}, params?: RequestParams) => Promise<AxiosResponse<Task, any>>;
|
|
8715
|
+
}, params?: RequestParams) => Promise<AxiosResponse<Task, any, {}>>;
|
|
8674
8716
|
/**
|
|
8675
8717
|
* No description
|
|
8676
8718
|
*
|
|
@@ -8681,7 +8723,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8681
8723
|
* @secure
|
|
8682
8724
|
* @response `201` `Task` Created
|
|
8683
8725
|
*/
|
|
8684
|
-
createTask: (data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<Task, any>>;
|
|
8726
|
+
createTask: (data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<Task, any, {}>>;
|
|
8685
8727
|
/**
|
|
8686
8728
|
* No description
|
|
8687
8729
|
*
|
|
@@ -8693,7 +8735,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8693
8735
|
* @response `200` `Task` Success
|
|
8694
8736
|
* @response `404` `ProblemDetails` Not Found
|
|
8695
8737
|
*/
|
|
8696
|
-
getTask: (id: string, params?: RequestParams) => Promise<AxiosResponse<Task, any>>;
|
|
8738
|
+
getTask: (id: string, params?: RequestParams) => Promise<AxiosResponse<Task, any, {}>>;
|
|
8697
8739
|
/**
|
|
8698
8740
|
* No description
|
|
8699
8741
|
*
|
|
@@ -8705,7 +8747,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8705
8747
|
* @response `200` `void` Success
|
|
8706
8748
|
* @response `404` `ProblemDetails` Not Found
|
|
8707
8749
|
*/
|
|
8708
|
-
replaceTask: (id: string, data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8750
|
+
replaceTask: (id: string, data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8709
8751
|
/**
|
|
8710
8752
|
* No description
|
|
8711
8753
|
*
|
|
@@ -8717,7 +8759,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8717
8759
|
* @response `204` `void` No Content
|
|
8718
8760
|
* @response `404` `ProblemDetails` Not Found
|
|
8719
8761
|
*/
|
|
8720
|
-
deleteTask: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8762
|
+
deleteTask: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8721
8763
|
/**
|
|
8722
8764
|
* No description
|
|
8723
8765
|
*
|
|
@@ -8735,7 +8777,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8735
8777
|
pageNumber?: number;
|
|
8736
8778
|
sortBy?: string;
|
|
8737
8779
|
sortDirection?: string;
|
|
8738
|
-
}, params?: RequestParams) => Promise<AxiosResponse<TaskPaginated, any>>;
|
|
8780
|
+
}, params?: RequestParams) => Promise<AxiosResponse<TaskPaginated, any, {}>>;
|
|
8739
8781
|
/**
|
|
8740
8782
|
* No description
|
|
8741
8783
|
*
|
|
@@ -8745,7 +8787,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8745
8787
|
* @secure
|
|
8746
8788
|
* @response `200` `void` Success
|
|
8747
8789
|
*/
|
|
8748
|
-
integrationsLosLoansCreate: (data: LosLoanCreationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8790
|
+
integrationsLosLoansCreate: (data: LosLoanCreationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8749
8791
|
/**
|
|
8750
8792
|
* No description
|
|
8751
8793
|
*
|
|
@@ -8762,7 +8804,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8762
8804
|
pageNumber: number;
|
|
8763
8805
|
sortBy?: string;
|
|
8764
8806
|
sortDirection?: string;
|
|
8765
|
-
}, data: EncompassLogSearchCriteria, params?: RequestParams) => Promise<AxiosResponse<EncompassRequestLogPaginated, any>>;
|
|
8807
|
+
}, data: EncompassLogSearchCriteria, params?: RequestParams) => Promise<AxiosResponse<EncompassRequestLogPaginated, any, {}>>;
|
|
8766
8808
|
/**
|
|
8767
8809
|
* No description
|
|
8768
8810
|
*
|
|
@@ -8773,7 +8815,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8773
8815
|
* @response `200` `EncompassCredentialsDetail` Success
|
|
8774
8816
|
* @response `204` `void` No Content
|
|
8775
8817
|
*/
|
|
8776
|
-
getEncompassCredentials: (params?: RequestParams) => Promise<AxiosResponse<EncompassCredentialsDetail, any>>;
|
|
8818
|
+
getEncompassCredentials: (params?: RequestParams) => Promise<AxiosResponse<EncompassCredentialsDetail, any, {}>>;
|
|
8777
8819
|
/**
|
|
8778
8820
|
* No description
|
|
8779
8821
|
*
|
|
@@ -8783,7 +8825,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8783
8825
|
* @secure
|
|
8784
8826
|
* @response `201` `LosCredentials` Created
|
|
8785
8827
|
*/
|
|
8786
|
-
createEncompassCredentials: (data: EncompassCredentialsRequest, params?: RequestParams) => Promise<AxiosResponse<LosCredentials, any>>;
|
|
8828
|
+
createEncompassCredentials: (data: EncompassCredentialsRequest, params?: RequestParams) => Promise<AxiosResponse<LosCredentials, any, {}>>;
|
|
8787
8829
|
/**
|
|
8788
8830
|
* No description
|
|
8789
8831
|
*
|
|
@@ -8793,7 +8835,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8793
8835
|
* @secure
|
|
8794
8836
|
* @response `200` `EncompassCredentialsDetail` Success
|
|
8795
8837
|
*/
|
|
8796
|
-
updateEncompassCredentials: (data: EncompassCredentialsRequest, params?: RequestParams) => Promise<AxiosResponse<EncompassCredentialsDetail, any>>;
|
|
8838
|
+
updateEncompassCredentials: (data: EncompassCredentialsRequest, params?: RequestParams) => Promise<AxiosResponse<EncompassCredentialsDetail, any, {}>>;
|
|
8797
8839
|
/**
|
|
8798
8840
|
* No description
|
|
8799
8841
|
*
|
|
@@ -8803,7 +8845,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8803
8845
|
* @secure
|
|
8804
8846
|
* @response `200` `(LosWebhook)[]` Success
|
|
8805
8847
|
*/
|
|
8806
|
-
getEncompassWebhooks: (params?: RequestParams) => Promise<AxiosResponse<LosWebhook[], any>>;
|
|
8848
|
+
getEncompassWebhooks: (params?: RequestParams) => Promise<AxiosResponse<LosWebhook[], any, {}>>;
|
|
8807
8849
|
/**
|
|
8808
8850
|
* No description
|
|
8809
8851
|
*
|
|
@@ -8813,7 +8855,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8813
8855
|
* @secure
|
|
8814
8856
|
* @response `201` `LosWebhook` Created
|
|
8815
8857
|
*/
|
|
8816
|
-
createEncompassWebhook: (data: CreateWebhookRequest, params?: RequestParams) => Promise<AxiosResponse<LosWebhook, any>>;
|
|
8858
|
+
createEncompassWebhook: (data: CreateWebhookRequest, params?: RequestParams) => Promise<AxiosResponse<LosWebhook, any, {}>>;
|
|
8817
8859
|
/**
|
|
8818
8860
|
* No description
|
|
8819
8861
|
*
|
|
@@ -8823,7 +8865,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8823
8865
|
* @secure
|
|
8824
8866
|
* @response `204` `void` No Content
|
|
8825
8867
|
*/
|
|
8826
|
-
deleteEncompassWebhook: (webhookId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8868
|
+
deleteEncompassWebhook: (webhookId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8827
8869
|
/**
|
|
8828
8870
|
* No description
|
|
8829
8871
|
*
|
|
@@ -8835,7 +8877,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8835
8877
|
* @response `200` `UsageReport` Success
|
|
8836
8878
|
* @response `404` `ProblemDetails` Not Found
|
|
8837
8879
|
*/
|
|
8838
|
-
getUsageReportById: (id: string, params?: RequestParams) => Promise<AxiosResponse<UsageReport, any>>;
|
|
8880
|
+
getUsageReportById: (id: string, params?: RequestParams) => Promise<AxiosResponse<UsageReport, any, {}>>;
|
|
8839
8881
|
/**
|
|
8840
8882
|
* No description
|
|
8841
8883
|
*
|
|
@@ -8852,7 +8894,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8852
8894
|
month?: number;
|
|
8853
8895
|
/** @format int32 */
|
|
8854
8896
|
year?: number;
|
|
8855
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UsageReport[], any>>;
|
|
8897
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UsageReport[], any, {}>>;
|
|
8856
8898
|
/**
|
|
8857
8899
|
* No description
|
|
8858
8900
|
*
|
|
@@ -8869,7 +8911,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8869
8911
|
month?: number;
|
|
8870
8912
|
/** @format int32 */
|
|
8871
8913
|
year?: number;
|
|
8872
|
-
}, params?: RequestParams) => Promise<AxiosResponse<any, any>>;
|
|
8914
|
+
}, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
8873
8915
|
/**
|
|
8874
8916
|
* No description
|
|
8875
8917
|
*
|
|
@@ -8880,7 +8922,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8880
8922
|
* @secure
|
|
8881
8923
|
* @response `200` `UsageReportDashboard` Success
|
|
8882
8924
|
*/
|
|
8883
|
-
getUsageReportDashboard: (params?: RequestParams) => Promise<AxiosResponse<UsageReportDashboard, any>>;
|
|
8925
|
+
getUsageReportDashboard: (params?: RequestParams) => Promise<AxiosResponse<UsageReportDashboard, any, {}>>;
|
|
8884
8926
|
/**
|
|
8885
8927
|
* No description
|
|
8886
8928
|
*
|
|
@@ -8892,7 +8934,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8892
8934
|
* @response `200` `UsageReportExecution` Success
|
|
8893
8935
|
* @response `404` `ProblemDetails` Not Found
|
|
8894
8936
|
*/
|
|
8895
|
-
getUsageReportExecution: (correlationId: string, params?: RequestParams) => Promise<AxiosResponse<UsageReportExecution, any>>;
|
|
8937
|
+
getUsageReportExecution: (correlationId: string, params?: RequestParams) => Promise<AxiosResponse<UsageReportExecution, any, {}>>;
|
|
8896
8938
|
/**
|
|
8897
8939
|
* No description
|
|
8898
8940
|
*
|
|
@@ -8909,7 +8951,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8909
8951
|
month?: number;
|
|
8910
8952
|
/** @format int32 */
|
|
8911
8953
|
year?: number;
|
|
8912
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UsageReportExecution[], any>>;
|
|
8954
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UsageReportExecution[], any, {}>>;
|
|
8913
8955
|
/**
|
|
8914
8956
|
* No description
|
|
8915
8957
|
*
|
|
@@ -8921,7 +8963,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8921
8963
|
* @response `201` `UserDevice` Created
|
|
8922
8964
|
* @response `400` `ProblemDetails` Bad Request
|
|
8923
8965
|
*/
|
|
8924
|
-
createUserDevice: (data: CreateUserDeviceRequest, params?: RequestParams) => Promise<AxiosResponse<UserDevice, any>>;
|
|
8966
|
+
createUserDevice: (data: CreateUserDeviceRequest, params?: RequestParams) => Promise<AxiosResponse<UserDevice, any, {}>>;
|
|
8925
8967
|
/**
|
|
8926
8968
|
* No description
|
|
8927
8969
|
*
|
|
@@ -8933,7 +8975,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8933
8975
|
* @response `204` `void` No Content
|
|
8934
8976
|
* @response `404` `ProblemDetails` Not Found
|
|
8935
8977
|
*/
|
|
8936
|
-
deleteUserDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8978
|
+
deleteUserDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8937
8979
|
/**
|
|
8938
8980
|
* No description
|
|
8939
8981
|
*
|
|
@@ -8951,7 +8993,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8951
8993
|
pageNumber?: number;
|
|
8952
8994
|
sortBy?: string;
|
|
8953
8995
|
sortDirection?: string;
|
|
8954
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UserDraftPaginated, any>>;
|
|
8996
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UserDraftPaginated, any, {}>>;
|
|
8955
8997
|
/**
|
|
8956
8998
|
* No description
|
|
8957
8999
|
*
|
|
@@ -8962,7 +9004,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8962
9004
|
* @secure
|
|
8963
9005
|
* @response `200` `UserDraft` Success
|
|
8964
9006
|
*/
|
|
8965
|
-
getDraftUser: (draftId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<UserDraft, any>>;
|
|
9007
|
+
getDraftUser: (draftId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<UserDraft, any, {}>>;
|
|
8966
9008
|
/**
|
|
8967
9009
|
* No description
|
|
8968
9010
|
*
|
|
@@ -8973,7 +9015,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8973
9015
|
* @secure
|
|
8974
9016
|
* @response `200` `UserDraft` Success
|
|
8975
9017
|
*/
|
|
8976
|
-
addDraftUsers: (draftId: string, userId: string, data: CreateUserDraft, params?: RequestParams) => Promise<AxiosResponse<UserDraft, any>>;
|
|
9018
|
+
addDraftUsers: (draftId: string, userId: string, data: CreateUserDraft, params?: RequestParams) => Promise<AxiosResponse<UserDraft, any, {}>>;
|
|
8977
9019
|
/**
|
|
8978
9020
|
* No description
|
|
8979
9021
|
*
|
|
@@ -8984,7 +9026,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8984
9026
|
* @secure
|
|
8985
9027
|
* @response `204` `void` No Content
|
|
8986
9028
|
*/
|
|
8987
|
-
deleteDraftUser: (draftId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9029
|
+
deleteDraftUser: (draftId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8988
9030
|
/**
|
|
8989
9031
|
* No description
|
|
8990
9032
|
*
|
|
@@ -8995,7 +9037,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8995
9037
|
* @secure
|
|
8996
9038
|
* @response `200` `(UserGroupAccessScope)[]` Success
|
|
8997
9039
|
*/
|
|
8998
|
-
getUserGroupAccessScopes: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope[], any>>;
|
|
9040
|
+
getUserGroupAccessScopes: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope[], any, {}>>;
|
|
8999
9041
|
/**
|
|
9000
9042
|
* No description
|
|
9001
9043
|
*
|
|
@@ -9006,7 +9048,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9006
9048
|
* @secure
|
|
9007
9049
|
* @response `200` `UserGroupAccessScope` Success
|
|
9008
9050
|
*/
|
|
9009
|
-
createUserGroupAccessScope: (groupId: string, data: CreateAccessScopeRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope, any>>;
|
|
9051
|
+
createUserGroupAccessScope: (groupId: string, data: CreateAccessScopeRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope, any, {}>>;
|
|
9010
9052
|
/**
|
|
9011
9053
|
* No description
|
|
9012
9054
|
*
|
|
@@ -9017,7 +9059,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9017
9059
|
* @secure
|
|
9018
9060
|
* @response `204` `void` No Content
|
|
9019
9061
|
*/
|
|
9020
|
-
deleteUserGroupAccessScope: (groupId: string, scopeId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9062
|
+
deleteUserGroupAccessScope: (groupId: string, scopeId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9021
9063
|
/**
|
|
9022
9064
|
* No description
|
|
9023
9065
|
*
|
|
@@ -9028,7 +9070,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9028
9070
|
* @secure
|
|
9029
9071
|
* @response `200` `(UserGroupMember)[]` Success
|
|
9030
9072
|
*/
|
|
9031
|
-
getUserGroupMembers: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupMember[], any>>;
|
|
9073
|
+
getUserGroupMembers: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupMember[], any, {}>>;
|
|
9032
9074
|
/**
|
|
9033
9075
|
* No description
|
|
9034
9076
|
*
|
|
@@ -9042,7 +9084,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9042
9084
|
createUserGroupMember: (groupId: string, data: CreateGroupMemberRequest, query?: {
|
|
9043
9085
|
/** @format uuid */
|
|
9044
9086
|
userId?: string;
|
|
9045
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UserGroupMember, any>>;
|
|
9087
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UserGroupMember, any, {}>>;
|
|
9046
9088
|
/**
|
|
9047
9089
|
* No description
|
|
9048
9090
|
*
|
|
@@ -9053,7 +9095,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9053
9095
|
* @secure
|
|
9054
9096
|
* @response `204` `void` No Content
|
|
9055
9097
|
*/
|
|
9056
|
-
deleteUserGroupMember: (groupId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9098
|
+
deleteUserGroupMember: (groupId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9057
9099
|
/**
|
|
9058
9100
|
* No description
|
|
9059
9101
|
*
|
|
@@ -9072,7 +9114,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9072
9114
|
pageNumber?: number;
|
|
9073
9115
|
sortBy?: string;
|
|
9074
9116
|
sortDirection?: string;
|
|
9075
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UserGroupPaginated, any>>;
|
|
9117
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UserGroupPaginated, any, {}>>;
|
|
9076
9118
|
/**
|
|
9077
9119
|
* No description
|
|
9078
9120
|
*
|
|
@@ -9083,7 +9125,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9083
9125
|
* @secure
|
|
9084
9126
|
* @response `200` `UserGroup` Success
|
|
9085
9127
|
*/
|
|
9086
|
-
getUserGroup: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any>>;
|
|
9128
|
+
getUserGroup: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any, {}>>;
|
|
9087
9129
|
/**
|
|
9088
9130
|
* No description
|
|
9089
9131
|
*
|
|
@@ -9094,7 +9136,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9094
9136
|
* @secure
|
|
9095
9137
|
* @response `200` `UserGroup` Success
|
|
9096
9138
|
*/
|
|
9097
|
-
updateUserGroup: (groupId: string, data: UpdateUserGroupRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any>>;
|
|
9139
|
+
updateUserGroup: (groupId: string, data: UpdateUserGroupRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any, {}>>;
|
|
9098
9140
|
/**
|
|
9099
9141
|
* No description
|
|
9100
9142
|
*
|
|
@@ -9105,7 +9147,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9105
9147
|
* @secure
|
|
9106
9148
|
* @response `204` `void` No Content
|
|
9107
9149
|
*/
|
|
9108
|
-
deleteUserGroup: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9150
|
+
deleteUserGroup: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9109
9151
|
/**
|
|
9110
9152
|
* No description
|
|
9111
9153
|
*
|
|
@@ -9116,7 +9158,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9116
9158
|
* @secure
|
|
9117
9159
|
* @response `201` `UserGroup` Created
|
|
9118
9160
|
*/
|
|
9119
|
-
createUserGroup: (data: CreateUserGroupRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any>>;
|
|
9161
|
+
createUserGroup: (data: CreateUserGroupRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any, {}>>;
|
|
9120
9162
|
/**
|
|
9121
9163
|
* No description
|
|
9122
9164
|
*
|
|
@@ -9129,7 +9171,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9129
9171
|
* @response `404` `Error` Not Found
|
|
9130
9172
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9131
9173
|
*/
|
|
9132
|
-
requestImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9174
|
+
requestImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9133
9175
|
/**
|
|
9134
9176
|
* No description
|
|
9135
9177
|
*
|
|
@@ -9142,7 +9184,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9142
9184
|
* @response `404` `Error` Not Found
|
|
9143
9185
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9144
9186
|
*/
|
|
9145
|
-
allowImpersonation: (data: AllowImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9187
|
+
allowImpersonation: (data: AllowImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9146
9188
|
/**
|
|
9147
9189
|
* No description
|
|
9148
9190
|
*
|
|
@@ -9155,7 +9197,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9155
9197
|
* @response `404` `Error` Not Found
|
|
9156
9198
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9157
9199
|
*/
|
|
9158
|
-
allowImpersonationWithGuid: (allowToken: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9200
|
+
allowImpersonationWithGuid: (allowToken: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9159
9201
|
/**
|
|
9160
9202
|
* No description
|
|
9161
9203
|
*
|
|
@@ -9167,7 +9209,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9167
9209
|
* @response `204` `void` No Content
|
|
9168
9210
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9169
9211
|
*/
|
|
9170
|
-
beginImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9212
|
+
beginImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9171
9213
|
/**
|
|
9172
9214
|
* No description
|
|
9173
9215
|
*
|
|
@@ -9179,7 +9221,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9179
9221
|
* @response `204` `void` No Content
|
|
9180
9222
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9181
9223
|
*/
|
|
9182
|
-
stopImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9224
|
+
stopImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9183
9225
|
/**
|
|
9184
9226
|
* No description
|
|
9185
9227
|
*
|
|
@@ -9192,7 +9234,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9192
9234
|
* @response `404` `Error` Not Found
|
|
9193
9235
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9194
9236
|
*/
|
|
9195
|
-
forceImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9237
|
+
forceImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9196
9238
|
/**
|
|
9197
9239
|
* No description
|
|
9198
9240
|
*
|
|
@@ -9204,7 +9246,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9204
9246
|
* @response `204` `void` No Content
|
|
9205
9247
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9206
9248
|
*/
|
|
9207
|
-
extendImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9249
|
+
extendImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9208
9250
|
/**
|
|
9209
9251
|
* No description
|
|
9210
9252
|
*
|
|
@@ -9216,7 +9258,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9216
9258
|
* @response `204` `void` No Content
|
|
9217
9259
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9218
9260
|
*/
|
|
9219
|
-
inviteUser: (data: CreateInviteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9261
|
+
inviteUser: (data: CreateInviteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9220
9262
|
/**
|
|
9221
9263
|
* No description
|
|
9222
9264
|
*
|
|
@@ -9229,7 +9271,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9229
9271
|
* @response `401` `UnprocessableEntity` Unauthorized
|
|
9230
9272
|
* @response `404` `UnprocessableEntity` Not Found
|
|
9231
9273
|
*/
|
|
9232
|
-
resendInviteNotification: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9274
|
+
resendInviteNotification: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9233
9275
|
/**
|
|
9234
9276
|
* No description
|
|
9235
9277
|
*
|
|
@@ -9241,7 +9283,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9241
9283
|
* @response `200` `Invite` Success
|
|
9242
9284
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9243
9285
|
*/
|
|
9244
|
-
verifyUserInvite: (token: string, params?: RequestParams) => Promise<AxiosResponse<Invite, any>>;
|
|
9286
|
+
verifyUserInvite: (token: string, params?: RequestParams) => Promise<AxiosResponse<Invite, any, {}>>;
|
|
9245
9287
|
/**
|
|
9246
9288
|
* No description
|
|
9247
9289
|
*
|
|
@@ -9252,7 +9294,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9252
9294
|
* @secure
|
|
9253
9295
|
* @response `200` `(UserRelation)[]` Success
|
|
9254
9296
|
*/
|
|
9255
|
-
getUserRelations: (userId: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation[], any>>;
|
|
9297
|
+
getUserRelations: (userId: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation[], any, {}>>;
|
|
9256
9298
|
/**
|
|
9257
9299
|
* No description
|
|
9258
9300
|
*
|
|
@@ -9263,7 +9305,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9263
9305
|
* @secure
|
|
9264
9306
|
* @response `204` `void` No Content
|
|
9265
9307
|
*/
|
|
9266
|
-
createUserRelation: (userId: string, data: CreateUserRelationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9308
|
+
createUserRelation: (userId: string, data: CreateUserRelationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9267
9309
|
/**
|
|
9268
9310
|
* No description
|
|
9269
9311
|
*
|
|
@@ -9274,7 +9316,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9274
9316
|
* @secure
|
|
9275
9317
|
* @response `200` `UserRelation` Success
|
|
9276
9318
|
*/
|
|
9277
|
-
getUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation, any>>;
|
|
9319
|
+
getUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation, any, {}>>;
|
|
9278
9320
|
/**
|
|
9279
9321
|
* No description
|
|
9280
9322
|
*
|
|
@@ -9285,7 +9327,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9285
9327
|
* @secure
|
|
9286
9328
|
* @response `204` `void` No Content
|
|
9287
9329
|
*/
|
|
9288
|
-
deleteUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9330
|
+
deleteUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9289
9331
|
/**
|
|
9290
9332
|
* No description
|
|
9291
9333
|
*
|
|
@@ -9303,7 +9345,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9303
9345
|
pageNumber?: number;
|
|
9304
9346
|
sortBy?: string;
|
|
9305
9347
|
sortDirection?: string;
|
|
9306
|
-
}, params?: RequestParams) => Promise<AxiosResponse<User[], any>>;
|
|
9348
|
+
}, params?: RequestParams) => Promise<AxiosResponse<User[], any, {}>>;
|
|
9307
9349
|
/**
|
|
9308
9350
|
* No description
|
|
9309
9351
|
*
|
|
@@ -9315,7 +9357,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9315
9357
|
* @response `200` `DetailedUser` Success
|
|
9316
9358
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9317
9359
|
*/
|
|
9318
|
-
createUser: (data: CreateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
|
|
9360
|
+
createUser: (data: CreateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any, {}>>;
|
|
9319
9361
|
/**
|
|
9320
9362
|
* No description
|
|
9321
9363
|
*
|
|
@@ -9333,7 +9375,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9333
9375
|
pageNumber?: number;
|
|
9334
9376
|
sortBy?: string;
|
|
9335
9377
|
sortDirection?: string;
|
|
9336
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UserPaginated, any>>;
|
|
9378
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UserPaginated, any, {}>>;
|
|
9337
9379
|
/**
|
|
9338
9380
|
* No description
|
|
9339
9381
|
*
|
|
@@ -9344,7 +9386,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9344
9386
|
* @secure
|
|
9345
9387
|
* @response `200` `AdminAccessUser` Success
|
|
9346
9388
|
*/
|
|
9347
|
-
getUserByEmail: (data: GetUserByEmailRequest, params?: RequestParams) => Promise<AxiosResponse<AdminAccessUser, any>>;
|
|
9389
|
+
getUserByEmail: (data: GetUserByEmailRequest, params?: RequestParams) => Promise<AxiosResponse<AdminAccessUser, any, {}>>;
|
|
9348
9390
|
/**
|
|
9349
9391
|
* No description
|
|
9350
9392
|
*
|
|
@@ -9356,7 +9398,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9356
9398
|
* @response `200` `User` Success
|
|
9357
9399
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9358
9400
|
*/
|
|
9359
|
-
signUp: (data: RegisterUserRequest, params?: RequestParams) => Promise<AxiosResponse<User, any>>;
|
|
9401
|
+
signUp: (data: RegisterUserRequest, params?: RequestParams) => Promise<AxiosResponse<User, any, {}>>;
|
|
9360
9402
|
/**
|
|
9361
9403
|
* No description
|
|
9362
9404
|
*
|
|
@@ -9368,7 +9410,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9368
9410
|
* @response `200` `DetailedUser` Success
|
|
9369
9411
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9370
9412
|
*/
|
|
9371
|
-
replaceUser: (id: string, data: UpdateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
|
|
9413
|
+
replaceUser: (id: string, data: UpdateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any, {}>>;
|
|
9372
9414
|
/**
|
|
9373
9415
|
* No description
|
|
9374
9416
|
*
|
|
@@ -9382,7 +9424,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9382
9424
|
deleteUser: (id: string, query?: {
|
|
9383
9425
|
/** @default false */
|
|
9384
9426
|
permanent?: boolean;
|
|
9385
|
-
}, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9427
|
+
}, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9386
9428
|
/**
|
|
9387
9429
|
* No description
|
|
9388
9430
|
*
|
|
@@ -9393,7 +9435,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9393
9435
|
* @secure
|
|
9394
9436
|
* @response `204` `void` No Content
|
|
9395
9437
|
*/
|
|
9396
|
-
restoreUser: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9438
|
+
restoreUser: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9397
9439
|
/**
|
|
9398
9440
|
* No description
|
|
9399
9441
|
*
|
|
@@ -9405,7 +9447,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9405
9447
|
* @response `204` `void` No Content
|
|
9406
9448
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9407
9449
|
*/
|
|
9408
|
-
changePassword: (data: ChangePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9450
|
+
changePassword: (data: ChangePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9409
9451
|
/**
|
|
9410
9452
|
* No description
|
|
9411
9453
|
*
|
|
@@ -9417,7 +9459,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9417
9459
|
* @response `204` `void` No Content
|
|
9418
9460
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9419
9461
|
*/
|
|
9420
|
-
verifyPassword: (data: VerifyPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9462
|
+
verifyPassword: (data: VerifyPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9421
9463
|
/**
|
|
9422
9464
|
* No description
|
|
9423
9465
|
*
|
|
@@ -9429,7 +9471,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9429
9471
|
* @response `204` `void` No Content
|
|
9430
9472
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9431
9473
|
*/
|
|
9432
|
-
overridePassword: (id: string, data: OverridePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9474
|
+
overridePassword: (id: string, data: OverridePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9433
9475
|
/**
|
|
9434
9476
|
* No description
|
|
9435
9477
|
*
|
|
@@ -9441,7 +9483,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9441
9483
|
* @response `204` `void` No Content
|
|
9442
9484
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9443
9485
|
*/
|
|
9444
|
-
forgotPassword: (data: SendForgotPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9486
|
+
forgotPassword: (data: SendForgotPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9445
9487
|
/**
|
|
9446
9488
|
* No description
|
|
9447
9489
|
*
|
|
@@ -9453,7 +9495,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9453
9495
|
* @response `204` `void` No Content
|
|
9454
9496
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9455
9497
|
*/
|
|
9456
|
-
sendMobilePhoneVerificationCode: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9498
|
+
sendMobilePhoneVerificationCode: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9457
9499
|
/**
|
|
9458
9500
|
* No description
|
|
9459
9501
|
*
|
|
@@ -9465,7 +9507,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9465
9507
|
* @response `204` `void` No Content
|
|
9466
9508
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9467
9509
|
*/
|
|
9468
|
-
verifyUserMobilePhone: (data: UserMobilePhoneVerificationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9510
|
+
verifyUserMobilePhone: (data: UserMobilePhoneVerificationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9469
9511
|
/**
|
|
9470
9512
|
* No description
|
|
9471
9513
|
*
|
|
@@ -9477,7 +9519,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9477
9519
|
* @response `200` `ImpersonatedDetailedUser` Success
|
|
9478
9520
|
* @response `401` `ProblemDetails` Unauthorized
|
|
9479
9521
|
*/
|
|
9480
|
-
getMe: (params?: RequestParams) => Promise<AxiosResponse<ImpersonatedDetailedUser, any>>;
|
|
9522
|
+
getMe: (params?: RequestParams) => Promise<AxiosResponse<ImpersonatedDetailedUser, any, {}>>;
|
|
9481
9523
|
/**
|
|
9482
9524
|
* No description
|
|
9483
9525
|
*
|
|
@@ -9488,7 +9530,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9488
9530
|
* @secure
|
|
9489
9531
|
* @response `200` `DetailedUser` Success
|
|
9490
9532
|
*/
|
|
9491
|
-
replaceMe: (data: UpdateMeRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
|
|
9533
|
+
replaceMe: (data: UpdateMeRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any, {}>>;
|
|
9492
9534
|
/**
|
|
9493
9535
|
* @description Update the phone number If changed will send a verification code to the new number
|
|
9494
9536
|
*
|
|
@@ -9499,7 +9541,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9499
9541
|
* @secure
|
|
9500
9542
|
* @response `204` `DetailedUser` No Content
|
|
9501
9543
|
*/
|
|
9502
|
-
updateMyPhone: (data: UpdateMobilePhoneRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
|
|
9544
|
+
updateMyPhone: (data: UpdateMobilePhoneRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any, {}>>;
|
|
9503
9545
|
/**
|
|
9504
9546
|
* No description
|
|
9505
9547
|
*
|
|
@@ -9510,7 +9552,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9510
9552
|
* @secure
|
|
9511
9553
|
* @response `200` `(UserRelationship)[]` Success
|
|
9512
9554
|
*/
|
|
9513
|
-
getMyRelationships: (params?: RequestParams) => Promise<AxiosResponse<UserRelationship[], any>>;
|
|
9555
|
+
getMyRelationships: (params?: RequestParams) => Promise<AxiosResponse<UserRelationship[], any, {}>>;
|
|
9514
9556
|
/**
|
|
9515
9557
|
* No description
|
|
9516
9558
|
*
|
|
@@ -9521,7 +9563,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9521
9563
|
* @secure
|
|
9522
9564
|
* @response `200` `(UserRelationshipProspect)[]` Success
|
|
9523
9565
|
*/
|
|
9524
|
-
getMyRelationshipProspects: (params?: RequestParams) => Promise<AxiosResponse<UserRelationshipProspect[], any>>;
|
|
9566
|
+
getMyRelationshipProspects: (params?: RequestParams) => Promise<AxiosResponse<UserRelationshipProspect[], any, {}>>;
|
|
9525
9567
|
/**
|
|
9526
9568
|
* No description
|
|
9527
9569
|
*
|
|
@@ -9532,7 +9574,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9532
9574
|
* @secure
|
|
9533
9575
|
* @response `204` `void` No Content
|
|
9534
9576
|
*/
|
|
9535
|
-
deleteRelationshipProspect: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9577
|
+
deleteRelationshipProspect: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9536
9578
|
/**
|
|
9537
9579
|
* No description
|
|
9538
9580
|
*
|
|
@@ -9543,7 +9585,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9543
9585
|
* @secure
|
|
9544
9586
|
* @response `204` `void` No Content
|
|
9545
9587
|
*/
|
|
9546
|
-
deleteMe: (data: UserAccountDeletionRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9588
|
+
deleteMe: (data: UserAccountDeletionRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9547
9589
|
/**
|
|
9548
9590
|
* No description
|
|
9549
9591
|
*
|
|
@@ -9554,7 +9596,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9554
9596
|
* @secure
|
|
9555
9597
|
* @response `200` `GetForm` Success
|
|
9556
9598
|
*/
|
|
9557
|
-
getWorkflow: (data: GetWorkflowRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any>>;
|
|
9599
|
+
getWorkflow: (data: GetWorkflowRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any, {}>>;
|
|
9558
9600
|
};
|
|
9559
9601
|
sso: {
|
|
9560
9602
|
/**
|
|
@@ -9566,6 +9608,6 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9566
9608
|
* @secure
|
|
9567
9609
|
* @response `200` `void` Success
|
|
9568
9610
|
*/
|
|
9569
|
-
logoutList: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9611
|
+
logoutList: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9570
9612
|
};
|
|
9571
9613
|
}
|