@matech/thebigpos-sdk 2.37.8 → 2.37.9-rc1
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/dist/index.d.ts +323 -317
- package/dist/index.js +7 -8
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +17 -11
package/dist/index.d.ts
CHANGED
|
@@ -220,6 +220,7 @@ export interface AdminAccessUser {
|
|
|
220
220
|
/** @format int32 */
|
|
221
221
|
loginsWithoutMFACount: number;
|
|
222
222
|
canImpersonate: boolean;
|
|
223
|
+
isInternal: boolean;
|
|
223
224
|
preferredLoanOfficer?: PreferredLoanOfficer | null;
|
|
224
225
|
loanIDs: string[];
|
|
225
226
|
drafts: Draft[];
|
|
@@ -511,6 +512,7 @@ export interface BranchUser {
|
|
|
511
512
|
/** @format int32 */
|
|
512
513
|
loginsWithoutMFACount: number;
|
|
513
514
|
canImpersonate: boolean;
|
|
515
|
+
isInternal: boolean;
|
|
514
516
|
preferredLoanOfficer?: PreferredLoanOfficer | null;
|
|
515
517
|
loanIDs: string[];
|
|
516
518
|
drafts: Draft[];
|
|
@@ -837,6 +839,7 @@ export interface CreateUserRequest {
|
|
|
837
839
|
branchId?: string | null;
|
|
838
840
|
/** @minLength 1 */
|
|
839
841
|
userRole: string;
|
|
842
|
+
isInternal?: boolean | null;
|
|
840
843
|
}
|
|
841
844
|
export interface CustomLoanData {
|
|
842
845
|
eConsentInformation?: EConsentInformation | null;
|
|
@@ -862,6 +865,7 @@ export interface DetailedUser {
|
|
|
862
865
|
/** @format int32 */
|
|
863
866
|
loginsWithoutMFACount: number;
|
|
864
867
|
canImpersonate: boolean;
|
|
868
|
+
isInternal: boolean;
|
|
865
869
|
preferredLoanOfficer?: PreferredLoanOfficer | null;
|
|
866
870
|
loanIDs: string[];
|
|
867
871
|
drafts: Draft[];
|
|
@@ -1279,7 +1283,7 @@ export interface FileSearchCriteria {
|
|
|
1279
1283
|
export interface FileWithBytes {
|
|
1280
1284
|
name: string;
|
|
1281
1285
|
/** @format byte */
|
|
1282
|
-
data:
|
|
1286
|
+
data: string;
|
|
1283
1287
|
fileName: string;
|
|
1284
1288
|
mimeType?: string | null;
|
|
1285
1289
|
extension?: string | null;
|
|
@@ -1595,6 +1599,7 @@ export interface ImpersonatedDetailedUser {
|
|
|
1595
1599
|
/** @format int32 */
|
|
1596
1600
|
loginsWithoutMFACount: number;
|
|
1597
1601
|
canImpersonate: boolean;
|
|
1602
|
+
isInternal: boolean;
|
|
1598
1603
|
preferredLoanOfficer?: PreferredLoanOfficer | null;
|
|
1599
1604
|
loanIDs: string[];
|
|
1600
1605
|
drafts: Draft[];
|
|
@@ -3452,7 +3457,7 @@ export interface NotificationTemplateVersionUpdateRequest {
|
|
|
3452
3457
|
}
|
|
3453
3458
|
export interface Operation {
|
|
3454
3459
|
op?: string;
|
|
3455
|
-
value?:
|
|
3460
|
+
value?: object | null;
|
|
3456
3461
|
path?: string;
|
|
3457
3462
|
}
|
|
3458
3463
|
export interface OverridePasswordRequest {
|
|
@@ -4792,6 +4797,7 @@ export interface UpdateUserRequest {
|
|
|
4792
4797
|
mfaEnabled?: boolean | null;
|
|
4793
4798
|
/** @format uuid */
|
|
4794
4799
|
preferredLoanOfficerId?: string | null;
|
|
4800
|
+
isInternal?: boolean | null;
|
|
4795
4801
|
}
|
|
4796
4802
|
export interface UsageReport {
|
|
4797
4803
|
/** @format uuid */
|
|
@@ -4970,6 +4976,7 @@ export interface User {
|
|
|
4970
4976
|
/** @format int32 */
|
|
4971
4977
|
loginsWithoutMFACount: number;
|
|
4972
4978
|
canImpersonate: boolean;
|
|
4979
|
+
isInternal: boolean;
|
|
4973
4980
|
preferredLoanOfficer?: PreferredLoanOfficer | null;
|
|
4974
4981
|
}
|
|
4975
4982
|
export interface UserAccountDeletionRequest {
|
|
@@ -5300,7 +5307,6 @@ export interface ApiConfig<SecurityDataType = unknown> extends Omit<AxiosRequest
|
|
|
5300
5307
|
format?: ResponseType;
|
|
5301
5308
|
}
|
|
5302
5309
|
export declare enum ContentType {
|
|
5303
|
-
JsonPatch = "application/json-patch+json",
|
|
5304
5310
|
Json = "application/json",
|
|
5305
5311
|
JsonApi = "application/vnd.api+json",
|
|
5306
5312
|
FormData = "multipart/form-data",
|
|
@@ -5336,7 +5342,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5336
5342
|
* @secure
|
|
5337
5343
|
* @response `200` `void` Success
|
|
5338
5344
|
*/
|
|
5339
|
-
postRoot: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
5345
|
+
postRoot: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
5340
5346
|
/**
|
|
5341
5347
|
* No description
|
|
5342
5348
|
*
|
|
@@ -5346,7 +5352,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5346
5352
|
* @secure
|
|
5347
5353
|
* @response `200` `string` Success
|
|
5348
5354
|
*/
|
|
5349
|
-
getRoot: (params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
5355
|
+
getRoot: (params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
5350
5356
|
api: {
|
|
5351
5357
|
/**
|
|
5352
5358
|
* No description
|
|
@@ -5359,7 +5365,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5359
5365
|
* @response `200` `Account` Success
|
|
5360
5366
|
* @response `404` `ProblemDetails` Not Found
|
|
5361
5367
|
*/
|
|
5362
|
-
getMyAccount: (params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
|
|
5368
|
+
getMyAccount: (params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
|
|
5363
5369
|
/**
|
|
5364
5370
|
* No description
|
|
5365
5371
|
*
|
|
@@ -5372,7 +5378,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5372
5378
|
* @response `404` `ProblemDetails` Not Found
|
|
5373
5379
|
* @response `422` `ProblemDetails` Client Error
|
|
5374
5380
|
*/
|
|
5375
|
-
replaceMyAccount: (data: UpdateAccountRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
|
|
5381
|
+
replaceMyAccount: (data: UpdateAccountRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
|
|
5376
5382
|
/**
|
|
5377
5383
|
* No description
|
|
5378
5384
|
*
|
|
@@ -5383,7 +5389,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5383
5389
|
* @secure
|
|
5384
5390
|
* @response `200` `SiteConfiguration` Success
|
|
5385
5391
|
*/
|
|
5386
|
-
getSiteConfigurationByAccount: (params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
5392
|
+
getSiteConfigurationByAccount: (params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
5387
5393
|
/**
|
|
5388
5394
|
* No description
|
|
5389
5395
|
*
|
|
@@ -5395,7 +5401,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5395
5401
|
* @response `200` `SiteConfiguration` Success
|
|
5396
5402
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5397
5403
|
*/
|
|
5398
|
-
updateSiteConfigurationForAccount: (data: SiteConfiguration, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
5404
|
+
updateSiteConfigurationForAccount: (data: SiteConfiguration, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
5399
5405
|
/**
|
|
5400
5406
|
* No description
|
|
5401
5407
|
*
|
|
@@ -5406,7 +5412,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5406
5412
|
* @secure
|
|
5407
5413
|
* @response `200` `(Account)[]` Success
|
|
5408
5414
|
*/
|
|
5409
|
-
getAccounts: (params?: RequestParams) => Promise<AxiosResponse<Account[], any>>;
|
|
5415
|
+
getAccounts: (params?: RequestParams) => Promise<AxiosResponse<Account[], any, {}>>;
|
|
5410
5416
|
/**
|
|
5411
5417
|
* No description
|
|
5412
5418
|
*
|
|
@@ -5418,7 +5424,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5418
5424
|
* @response `201` `Account` Created
|
|
5419
5425
|
* @response `422` `ProblemDetails` Client Error
|
|
5420
5426
|
*/
|
|
5421
|
-
createAccount: (data: CreateAccountRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
|
|
5427
|
+
createAccount: (data: CreateAccountRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
|
|
5422
5428
|
/**
|
|
5423
5429
|
* No description
|
|
5424
5430
|
*
|
|
@@ -5430,7 +5436,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5430
5436
|
* @response `201` `Account` Created
|
|
5431
5437
|
* @response `422` `ProblemDetails` Client Error
|
|
5432
5438
|
*/
|
|
5433
|
-
getAccount: (id: string, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
|
|
5439
|
+
getAccount: (id: string, params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
|
|
5434
5440
|
/**
|
|
5435
5441
|
* No description
|
|
5436
5442
|
*
|
|
@@ -5446,7 +5452,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5446
5452
|
deleteAccount: (id: string, query?: {
|
|
5447
5453
|
/** @default false */
|
|
5448
5454
|
hardDelete?: boolean;
|
|
5449
|
-
}, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
|
|
5455
|
+
}, params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
|
|
5450
5456
|
/**
|
|
5451
5457
|
* No description
|
|
5452
5458
|
*
|
|
@@ -5459,7 +5465,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5459
5465
|
* @response `404` `ProblemDetails` Not Found
|
|
5460
5466
|
* @response `422` `ProblemDetails` Client Error
|
|
5461
5467
|
*/
|
|
5462
|
-
updateAccountBilling: (id: string, data: AccountBillingRequest, params?: RequestParams) => Promise<AxiosResponse<AccountBilling, any>>;
|
|
5468
|
+
updateAccountBilling: (id: string, data: AccountBillingRequest, params?: RequestParams) => Promise<AxiosResponse<AccountBilling, any, {}>>;
|
|
5463
5469
|
/**
|
|
5464
5470
|
* No description
|
|
5465
5471
|
*
|
|
@@ -5477,7 +5483,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5477
5483
|
pageNumber?: number;
|
|
5478
5484
|
sortBy?: string;
|
|
5479
5485
|
sortDirection?: string;
|
|
5480
|
-
}, params?: RequestParams) => Promise<AxiosResponse<AuditLogEntryPaginated, any>>;
|
|
5486
|
+
}, params?: RequestParams) => Promise<AxiosResponse<AuditLogEntryPaginated, any, {}>>;
|
|
5481
5487
|
/**
|
|
5482
5488
|
* No description
|
|
5483
5489
|
*
|
|
@@ -5489,7 +5495,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5489
5495
|
* @response `200` `AuditLogEntry` Success
|
|
5490
5496
|
* @response `404` `ProblemDetails` Not Found
|
|
5491
5497
|
*/
|
|
5492
|
-
getAuditLogById: (id: string, params?: RequestParams) => Promise<AxiosResponse<AuditLogEntry, any>>;
|
|
5498
|
+
getAuditLogById: (id: string, params?: RequestParams) => Promise<AxiosResponse<AuditLogEntry, any, {}>>;
|
|
5493
5499
|
/**
|
|
5494
5500
|
* No description
|
|
5495
5501
|
*
|
|
@@ -5502,7 +5508,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5502
5508
|
* @response `401` `ProblemDetails` Unauthorized
|
|
5503
5509
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5504
5510
|
*/
|
|
5505
|
-
getTokenFromRefreshToken: (data: RefreshTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any>>;
|
|
5511
|
+
getTokenFromRefreshToken: (data: RefreshTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any, {}>>;
|
|
5506
5512
|
/**
|
|
5507
5513
|
* No description
|
|
5508
5514
|
*
|
|
@@ -5514,7 +5520,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5514
5520
|
* @response `200` `ForcePasswordReset` Success
|
|
5515
5521
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5516
5522
|
*/
|
|
5517
|
-
getToken: (data: TokenRequest, params?: RequestParams) => Promise<AxiosResponse<ForcePasswordReset, any>>;
|
|
5523
|
+
getToken: (data: TokenRequest, params?: RequestParams) => Promise<AxiosResponse<ForcePasswordReset, any, {}>>;
|
|
5518
5524
|
/**
|
|
5519
5525
|
* No description
|
|
5520
5526
|
*
|
|
@@ -5526,7 +5532,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5526
5532
|
* @response `200` `ForcePasswordReset` Success
|
|
5527
5533
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5528
5534
|
*/
|
|
5529
|
-
getTokenFromChallengeCode: (data: TokenChallengeRequest, params?: RequestParams) => Promise<AxiosResponse<ForcePasswordReset, any>>;
|
|
5535
|
+
getTokenFromChallengeCode: (data: TokenChallengeRequest, params?: RequestParams) => Promise<AxiosResponse<ForcePasswordReset, any, {}>>;
|
|
5530
5536
|
/**
|
|
5531
5537
|
* No description
|
|
5532
5538
|
*
|
|
@@ -5538,7 +5544,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5538
5544
|
* @response `200` `Token` Success
|
|
5539
5545
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5540
5546
|
*/
|
|
5541
|
-
getSystemToken: (data: SystemTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any>>;
|
|
5547
|
+
getSystemToken: (data: SystemTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any, {}>>;
|
|
5542
5548
|
/**
|
|
5543
5549
|
* No description
|
|
5544
5550
|
*
|
|
@@ -5550,7 +5556,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5550
5556
|
* @response `200` `SSOToken` Success
|
|
5551
5557
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5552
5558
|
*/
|
|
5553
|
-
getSsoToken: (data: SSOTokenRequest, params?: RequestParams) => Promise<AxiosResponse<SSOToken, any>>;
|
|
5559
|
+
getSsoToken: (data: SSOTokenRequest, params?: RequestParams) => Promise<AxiosResponse<SSOToken, any, {}>>;
|
|
5554
5560
|
/**
|
|
5555
5561
|
* No description
|
|
5556
5562
|
*
|
|
@@ -5562,7 +5568,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5562
5568
|
* @response `204` `NoContentResult` No Content
|
|
5563
5569
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5564
5570
|
*/
|
|
5565
|
-
logOut: (params?: RequestParams) => Promise<AxiosResponse<NoContentResult, any>>;
|
|
5571
|
+
logOut: (params?: RequestParams) => Promise<AxiosResponse<NoContentResult, any, {}>>;
|
|
5566
5572
|
/**
|
|
5567
5573
|
* No description
|
|
5568
5574
|
*
|
|
@@ -5581,7 +5587,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5581
5587
|
pageNumber?: number;
|
|
5582
5588
|
sortBy?: string;
|
|
5583
5589
|
sortDirection?: string;
|
|
5584
|
-
}, params?: RequestParams) => Promise<AxiosResponse<GetBranchPaginated, any>>;
|
|
5590
|
+
}, params?: RequestParams) => Promise<AxiosResponse<GetBranchPaginated, any, {}>>;
|
|
5585
5591
|
/**
|
|
5586
5592
|
* No description
|
|
5587
5593
|
*
|
|
@@ -5593,7 +5599,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5593
5599
|
* @response `200` `GetBranch` Success
|
|
5594
5600
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5595
5601
|
*/
|
|
5596
|
-
createBranch: (data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any>>;
|
|
5602
|
+
createBranch: (data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any, {}>>;
|
|
5597
5603
|
/**
|
|
5598
5604
|
* No description
|
|
5599
5605
|
*
|
|
@@ -5611,7 +5617,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5611
5617
|
pageNumber?: number;
|
|
5612
5618
|
sortBy?: string;
|
|
5613
5619
|
sortDirection?: string;
|
|
5614
|
-
}, params?: RequestParams) => Promise<AxiosResponse<GetBranchPaginated, any>>;
|
|
5620
|
+
}, params?: RequestParams) => Promise<AxiosResponse<GetBranchPaginated, any, {}>>;
|
|
5615
5621
|
/**
|
|
5616
5622
|
* No description
|
|
5617
5623
|
*
|
|
@@ -5622,7 +5628,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5622
5628
|
* @secure
|
|
5623
5629
|
* @response `200` `GetBranch` Success
|
|
5624
5630
|
*/
|
|
5625
|
-
getBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any>>;
|
|
5631
|
+
getBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any, {}>>;
|
|
5626
5632
|
/**
|
|
5627
5633
|
* No description
|
|
5628
5634
|
*
|
|
@@ -5634,7 +5640,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5634
5640
|
* @response `200` `GetBranch` Success
|
|
5635
5641
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5636
5642
|
*/
|
|
5637
|
-
replaceBranch: (branchId: string, data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any>>;
|
|
5643
|
+
replaceBranch: (branchId: string, data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any, {}>>;
|
|
5638
5644
|
/**
|
|
5639
5645
|
* No description
|
|
5640
5646
|
*
|
|
@@ -5645,7 +5651,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5645
5651
|
* @secure
|
|
5646
5652
|
* @response `204` `void` No Content
|
|
5647
5653
|
*/
|
|
5648
|
-
deleteBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
5654
|
+
deleteBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
5649
5655
|
/**
|
|
5650
5656
|
* No description
|
|
5651
5657
|
*
|
|
@@ -5657,7 +5663,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5657
5663
|
* @response `204` `void` No Content
|
|
5658
5664
|
* @response `400` `ProblemDetails` Bad Request
|
|
5659
5665
|
*/
|
|
5660
|
-
restoreBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
5666
|
+
restoreBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
5661
5667
|
/**
|
|
5662
5668
|
* No description
|
|
5663
5669
|
*
|
|
@@ -5669,7 +5675,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5669
5675
|
* @response `200` `SiteConfiguration` Success
|
|
5670
5676
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5671
5677
|
*/
|
|
5672
|
-
createBranchSiteConfiguration: (branchId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
5678
|
+
createBranchSiteConfiguration: (branchId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
5673
5679
|
/**
|
|
5674
5680
|
* No description
|
|
5675
5681
|
*
|
|
@@ -5680,7 +5686,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5680
5686
|
* @secure
|
|
5681
5687
|
* @response `200` `SiteConfigurationWithInherited` Success
|
|
5682
5688
|
*/
|
|
5683
|
-
getBranchSiteConfiguration: (branchId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
|
|
5689
|
+
getBranchSiteConfiguration: (branchId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any, {}>>;
|
|
5684
5690
|
/**
|
|
5685
5691
|
* No description
|
|
5686
5692
|
*
|
|
@@ -5694,7 +5700,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5694
5700
|
*/
|
|
5695
5701
|
replaceBranchSiteConfiguration: (branchId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
|
|
5696
5702
|
applyToChildren?: boolean;
|
|
5697
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
5703
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
5698
5704
|
/**
|
|
5699
5705
|
* No description
|
|
5700
5706
|
*
|
|
@@ -5705,7 +5711,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5705
5711
|
* @secure
|
|
5706
5712
|
* @response `200` `(LoanOfficerPublic)[]` Success
|
|
5707
5713
|
*/
|
|
5708
|
-
getLoanOfficersByBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic[], any>>;
|
|
5714
|
+
getLoanOfficersByBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic[], any, {}>>;
|
|
5709
5715
|
/**
|
|
5710
5716
|
* No description
|
|
5711
5717
|
*
|
|
@@ -5718,7 +5724,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5718
5724
|
*/
|
|
5719
5725
|
getBusinessRules: (query?: {
|
|
5720
5726
|
showAll?: boolean;
|
|
5721
|
-
}, params?: RequestParams) => Promise<AxiosResponse<BusinessRule[], any>>;
|
|
5727
|
+
}, params?: RequestParams) => Promise<AxiosResponse<BusinessRule[], any, {}>>;
|
|
5722
5728
|
/**
|
|
5723
5729
|
* No description
|
|
5724
5730
|
*
|
|
@@ -5730,7 +5736,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5730
5736
|
* @response `200` `BusinessRule` Success
|
|
5731
5737
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5732
5738
|
*/
|
|
5733
|
-
createBusinessRule: (data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
|
|
5739
|
+
createBusinessRule: (data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any, {}>>;
|
|
5734
5740
|
/**
|
|
5735
5741
|
* No description
|
|
5736
5742
|
*
|
|
@@ -5741,7 +5747,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5741
5747
|
* @secure
|
|
5742
5748
|
* @response `200` `BusinessRule` Success
|
|
5743
5749
|
*/
|
|
5744
|
-
getBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
|
|
5750
|
+
getBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any, {}>>;
|
|
5745
5751
|
/**
|
|
5746
5752
|
* No description
|
|
5747
5753
|
*
|
|
@@ -5753,7 +5759,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5753
5759
|
* @response `200` `BusinessRule` Success
|
|
5754
5760
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5755
5761
|
*/
|
|
5756
|
-
replaceBusinessRule: (id: string, data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
|
|
5762
|
+
replaceBusinessRule: (id: string, data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any, {}>>;
|
|
5757
5763
|
/**
|
|
5758
5764
|
* No description
|
|
5759
5765
|
*
|
|
@@ -5764,7 +5770,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5764
5770
|
* @secure
|
|
5765
5771
|
* @response `204` `void` No Content
|
|
5766
5772
|
*/
|
|
5767
|
-
deleteBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
5773
|
+
deleteBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
5768
5774
|
/**
|
|
5769
5775
|
* No description
|
|
5770
5776
|
*
|
|
@@ -5775,7 +5781,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5775
5781
|
* @secure
|
|
5776
5782
|
* @response `200` `BusinessRule` Success
|
|
5777
5783
|
*/
|
|
5778
|
-
restoreBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
|
|
5784
|
+
restoreBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any, {}>>;
|
|
5779
5785
|
/**
|
|
5780
5786
|
* @description Returns closed loan counts per account within the specified date range, including POS vs non-POS breakdown and utilization ratios.
|
|
5781
5787
|
*
|
|
@@ -5786,7 +5792,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5786
5792
|
* @secure
|
|
5787
5793
|
* @response `200` `ClosedLoansReport` Success
|
|
5788
5794
|
*/
|
|
5789
|
-
getClosedLoansReport: (data: ClosedLoansReportRequest, params?: RequestParams) => Promise<AxiosResponse<ClosedLoansReport, any>>;
|
|
5795
|
+
getClosedLoansReport: (data: ClosedLoansReportRequest, params?: RequestParams) => Promise<AxiosResponse<ClosedLoansReport, any, {}>>;
|
|
5790
5796
|
/**
|
|
5791
5797
|
* No description
|
|
5792
5798
|
*
|
|
@@ -5805,7 +5811,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5805
5811
|
pageNumber?: number;
|
|
5806
5812
|
sortBy?: string;
|
|
5807
5813
|
sortDirection?: string;
|
|
5808
|
-
}, params?: RequestParams) => Promise<AxiosResponse<CorporatePaginated, any>>;
|
|
5814
|
+
}, params?: RequestParams) => Promise<AxiosResponse<CorporatePaginated, any, {}>>;
|
|
5809
5815
|
/**
|
|
5810
5816
|
* No description
|
|
5811
5817
|
*
|
|
@@ -5817,7 +5823,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5817
5823
|
* @response `200` `Corporate` Success
|
|
5818
5824
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5819
5825
|
*/
|
|
5820
|
-
createCorporate: (data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any>>;
|
|
5826
|
+
createCorporate: (data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any, {}>>;
|
|
5821
5827
|
/**
|
|
5822
5828
|
* No description
|
|
5823
5829
|
*
|
|
@@ -5835,7 +5841,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5835
5841
|
pageNumber?: number;
|
|
5836
5842
|
sortBy?: string;
|
|
5837
5843
|
sortDirection?: string;
|
|
5838
|
-
}, params?: RequestParams) => Promise<AxiosResponse<CorporatePaginated, any>>;
|
|
5844
|
+
}, params?: RequestParams) => Promise<AxiosResponse<CorporatePaginated, any, {}>>;
|
|
5839
5845
|
/**
|
|
5840
5846
|
* No description
|
|
5841
5847
|
*
|
|
@@ -5846,7 +5852,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5846
5852
|
* @secure
|
|
5847
5853
|
* @response `200` `Corporate` Success
|
|
5848
5854
|
*/
|
|
5849
|
-
getCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<Corporate, any>>;
|
|
5855
|
+
getCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<Corporate, any, {}>>;
|
|
5850
5856
|
/**
|
|
5851
5857
|
* No description
|
|
5852
5858
|
*
|
|
@@ -5858,7 +5864,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5858
5864
|
* @response `200` `Corporate` Success
|
|
5859
5865
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5860
5866
|
*/
|
|
5861
|
-
replaceCorporate: (id: string, data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any>>;
|
|
5867
|
+
replaceCorporate: (id: string, data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any, {}>>;
|
|
5862
5868
|
/**
|
|
5863
5869
|
* No description
|
|
5864
5870
|
*
|
|
@@ -5869,7 +5875,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5869
5875
|
* @secure
|
|
5870
5876
|
* @response `204` `void` No Content
|
|
5871
5877
|
*/
|
|
5872
|
-
deleteCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
5878
|
+
deleteCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
5873
5879
|
/**
|
|
5874
5880
|
* No description
|
|
5875
5881
|
*
|
|
@@ -5880,7 +5886,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5880
5886
|
* @secure
|
|
5881
5887
|
* @response `204` `void` No Content
|
|
5882
5888
|
*/
|
|
5883
|
-
restoreCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
5889
|
+
restoreCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
5884
5890
|
/**
|
|
5885
5891
|
* No description
|
|
5886
5892
|
*
|
|
@@ -5892,7 +5898,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5892
5898
|
* @response `200` `SiteConfiguration` Success
|
|
5893
5899
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5894
5900
|
*/
|
|
5895
|
-
createCorporateSiteConfiguration: (corporateId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
5901
|
+
createCorporateSiteConfiguration: (corporateId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
5896
5902
|
/**
|
|
5897
5903
|
* No description
|
|
5898
5904
|
*
|
|
@@ -5903,7 +5909,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5903
5909
|
* @secure
|
|
5904
5910
|
* @response `200` `SiteConfigurationWithInherited` Success
|
|
5905
5911
|
*/
|
|
5906
|
-
getCorporateSiteConfiguration: (corporateId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
|
|
5912
|
+
getCorporateSiteConfiguration: (corporateId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any, {}>>;
|
|
5907
5913
|
/**
|
|
5908
5914
|
* No description
|
|
5909
5915
|
*
|
|
@@ -5917,7 +5923,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5917
5923
|
*/
|
|
5918
5924
|
replaceCorporateSiteConfiguration: (corporateId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
|
|
5919
5925
|
applyToChildren?: boolean;
|
|
5920
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
5926
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
5921
5927
|
/**
|
|
5922
5928
|
* No description
|
|
5923
5929
|
*
|
|
@@ -5928,7 +5934,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5928
5934
|
* @secure
|
|
5929
5935
|
* @response `200` `(BranchReduced)[]` Success
|
|
5930
5936
|
*/
|
|
5931
|
-
getBranchesByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchReduced[], any>>;
|
|
5937
|
+
getBranchesByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchReduced[], any, {}>>;
|
|
5932
5938
|
/**
|
|
5933
5939
|
* No description
|
|
5934
5940
|
*
|
|
@@ -5939,7 +5945,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5939
5945
|
* @secure
|
|
5940
5946
|
* @response `200` `(LoanOfficerPublic)[]` Success
|
|
5941
5947
|
*/
|
|
5942
|
-
getLoanOfficersByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic[], any>>;
|
|
5948
|
+
getLoanOfficersByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic[], any, {}>>;
|
|
5943
5949
|
/**
|
|
5944
5950
|
* No description
|
|
5945
5951
|
*
|
|
@@ -5959,7 +5965,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5959
5965
|
pageNumber?: number;
|
|
5960
5966
|
sortBy?: string;
|
|
5961
5967
|
sortDirection?: string;
|
|
5962
|
-
}, params?: RequestParams) => Promise<AxiosResponse<DevicePaginated, any>>;
|
|
5968
|
+
}, params?: RequestParams) => Promise<AxiosResponse<DevicePaginated, any, {}>>;
|
|
5963
5969
|
/**
|
|
5964
5970
|
* No description
|
|
5965
5971
|
*
|
|
@@ -5970,7 +5976,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5970
5976
|
* @secure
|
|
5971
5977
|
* @response `200` `Device` Success
|
|
5972
5978
|
*/
|
|
5973
|
-
getDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<Device, any>>;
|
|
5979
|
+
getDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<Device, any, {}>>;
|
|
5974
5980
|
/**
|
|
5975
5981
|
* No description
|
|
5976
5982
|
*
|
|
@@ -5981,7 +5987,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5981
5987
|
* @secure
|
|
5982
5988
|
* @response `200` `Device` Success
|
|
5983
5989
|
*/
|
|
5984
|
-
updateDevice: (id: string, data: DeviceRequest, params?: RequestParams) => Promise<AxiosResponse<Device, any>>;
|
|
5990
|
+
updateDevice: (id: string, data: DeviceRequest, params?: RequestParams) => Promise<AxiosResponse<Device, any, {}>>;
|
|
5985
5991
|
/**
|
|
5986
5992
|
* No description
|
|
5987
5993
|
*
|
|
@@ -5992,7 +5998,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5992
5998
|
* @secure
|
|
5993
5999
|
* @response `200` `DeviceMDM` Success
|
|
5994
6000
|
*/
|
|
5995
|
-
getDeviceBySerialNumber: (sn: string, params?: RequestParams) => Promise<AxiosResponse<DeviceMDM, any>>;
|
|
6001
|
+
getDeviceBySerialNumber: (sn: string, params?: RequestParams) => Promise<AxiosResponse<DeviceMDM, any, {}>>;
|
|
5996
6002
|
/**
|
|
5997
6003
|
* No description
|
|
5998
6004
|
*
|
|
@@ -6003,7 +6009,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6003
6009
|
* @secure
|
|
6004
6010
|
* @response `200` `Action` Success
|
|
6005
6011
|
*/
|
|
6006
|
-
createDeviceActionBySerialNumber: (sn: string, actionName: string, params?: RequestParams) => Promise<AxiosResponse<Action, any>>;
|
|
6012
|
+
createDeviceActionBySerialNumber: (sn: string, actionName: string, params?: RequestParams) => Promise<AxiosResponse<Action, any, {}>>;
|
|
6007
6013
|
/**
|
|
6008
6014
|
* No description
|
|
6009
6015
|
*
|
|
@@ -6017,7 +6023,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6017
6023
|
getDocumentBuckets: (query?: {
|
|
6018
6024
|
/** @default false */
|
|
6019
6025
|
includeSystemBuckets?: boolean;
|
|
6020
|
-
}, params?: RequestParams) => Promise<AxiosResponse<string[], any>>;
|
|
6026
|
+
}, params?: RequestParams) => Promise<AxiosResponse<string[], any, {}>>;
|
|
6021
6027
|
/**
|
|
6022
6028
|
* No description
|
|
6023
6029
|
*
|
|
@@ -6030,7 +6036,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6030
6036
|
*/
|
|
6031
6037
|
getDocumentTemplates: (query?: {
|
|
6032
6038
|
showAll?: boolean;
|
|
6033
|
-
}, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase[], any>>;
|
|
6039
|
+
}, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase[], any, {}>>;
|
|
6034
6040
|
/**
|
|
6035
6041
|
* No description
|
|
6036
6042
|
*
|
|
@@ -6043,7 +6049,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6043
6049
|
* @response `404` `ProblemDetails` Not Found
|
|
6044
6050
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6045
6051
|
*/
|
|
6046
|
-
createDocumentTemplate: (data: CreateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any>>;
|
|
6052
|
+
createDocumentTemplate: (data: CreateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any, {}>>;
|
|
6047
6053
|
/**
|
|
6048
6054
|
* No description
|
|
6049
6055
|
*
|
|
@@ -6059,7 +6065,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6059
6065
|
showAll?: boolean;
|
|
6060
6066
|
/** @default true */
|
|
6061
6067
|
publishedOnly?: boolean;
|
|
6062
|
-
}, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase[], any>>;
|
|
6068
|
+
}, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase[], any, {}>>;
|
|
6063
6069
|
/**
|
|
6064
6070
|
* No description
|
|
6065
6071
|
*
|
|
@@ -6071,7 +6077,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6071
6077
|
* @response `200` `DocumentTemplate` Success
|
|
6072
6078
|
* @response `404` `ProblemDetails` Not Found
|
|
6073
6079
|
*/
|
|
6074
|
-
getDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplate, any>>;
|
|
6080
|
+
getDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplate, any, {}>>;
|
|
6075
6081
|
/**
|
|
6076
6082
|
* No description
|
|
6077
6083
|
*
|
|
@@ -6085,7 +6091,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6085
6091
|
* @response `404` `ProblemDetails` Not Found
|
|
6086
6092
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6087
6093
|
*/
|
|
6088
|
-
replaceDocumentTemplate: (id: string, data: UpdateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any>>;
|
|
6094
|
+
replaceDocumentTemplate: (id: string, data: UpdateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any, {}>>;
|
|
6089
6095
|
/**
|
|
6090
6096
|
* No description
|
|
6091
6097
|
*
|
|
@@ -6098,7 +6104,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6098
6104
|
* @response `401` `ProblemDetails` Unauthorized
|
|
6099
6105
|
* @response `404` `ProblemDetails` Not Found
|
|
6100
6106
|
*/
|
|
6101
|
-
deleteDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6107
|
+
deleteDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6102
6108
|
/**
|
|
6103
6109
|
* No description
|
|
6104
6110
|
*
|
|
@@ -6111,7 +6117,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6111
6117
|
* @response `401` `ProblemDetails` Unauthorized
|
|
6112
6118
|
* @response `404` `ProblemDetails` Not Found
|
|
6113
6119
|
*/
|
|
6114
|
-
restoreDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6120
|
+
restoreDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6115
6121
|
/**
|
|
6116
6122
|
* No description
|
|
6117
6123
|
*
|
|
@@ -6122,7 +6128,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6122
6128
|
* @secure
|
|
6123
6129
|
* @response `200` `(DocumentTemplateVersion)[]` Success
|
|
6124
6130
|
*/
|
|
6125
|
-
getDocumentTemplateVersions: (documentId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion[], any>>;
|
|
6131
|
+
getDocumentTemplateVersions: (documentId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion[], any, {}>>;
|
|
6126
6132
|
/**
|
|
6127
6133
|
* No description
|
|
6128
6134
|
*
|
|
@@ -6133,7 +6139,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6133
6139
|
* @secure
|
|
6134
6140
|
* @response `200` `DocumentTemplateVersion` Success
|
|
6135
6141
|
*/
|
|
6136
|
-
createDocumentTemplateVersion: (documentId: string, data: DocumentTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
|
|
6142
|
+
createDocumentTemplateVersion: (documentId: string, data: DocumentTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any, {}>>;
|
|
6137
6143
|
/**
|
|
6138
6144
|
* No description
|
|
6139
6145
|
*
|
|
@@ -6144,7 +6150,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6144
6150
|
* @secure
|
|
6145
6151
|
* @response `200` `DocumentTemplateVersion` Success
|
|
6146
6152
|
*/
|
|
6147
|
-
getDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
|
|
6153
|
+
getDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any, {}>>;
|
|
6148
6154
|
/**
|
|
6149
6155
|
* No description
|
|
6150
6156
|
*
|
|
@@ -6155,7 +6161,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6155
6161
|
* @secure
|
|
6156
6162
|
* @response `200` `DocumentTemplateVersion` Success
|
|
6157
6163
|
*/
|
|
6158
|
-
replaceDocumentTemplateVersion: (documentId: string, id: string, data: DocumentTemplateVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
|
|
6164
|
+
replaceDocumentTemplateVersion: (documentId: string, id: string, data: DocumentTemplateVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any, {}>>;
|
|
6159
6165
|
/**
|
|
6160
6166
|
* No description
|
|
6161
6167
|
*
|
|
@@ -6166,7 +6172,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6166
6172
|
* @secure
|
|
6167
6173
|
* @response `200` `DocumentTemplateVersion` Success
|
|
6168
6174
|
*/
|
|
6169
|
-
deleteDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
|
|
6175
|
+
deleteDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any, {}>>;
|
|
6170
6176
|
/**
|
|
6171
6177
|
* No description
|
|
6172
6178
|
*
|
|
@@ -6192,7 +6198,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6192
6198
|
* @default 20
|
|
6193
6199
|
*/
|
|
6194
6200
|
pageSize?: number;
|
|
6195
|
-
}, params?: RequestParams) => Promise<AxiosResponse<EncompassPackageList, any>>;
|
|
6201
|
+
}, params?: RequestParams) => Promise<AxiosResponse<EncompassPackageList, any, {}>>;
|
|
6196
6202
|
/**
|
|
6197
6203
|
* No description
|
|
6198
6204
|
*
|
|
@@ -6204,7 +6210,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6204
6210
|
* @response `401` `EncompassError` Unauthorized
|
|
6205
6211
|
* @response `500` `EncompassError` Server Error
|
|
6206
6212
|
*/
|
|
6207
|
-
getUserRecipients: (params?: RequestParams) => Promise<AxiosResponse<EncompassRecipientItem[], any>>;
|
|
6213
|
+
getUserRecipients: (params?: RequestParams) => Promise<AxiosResponse<EncompassRecipientItem[], any, {}>>;
|
|
6208
6214
|
/**
|
|
6209
6215
|
* No description
|
|
6210
6216
|
*
|
|
@@ -6219,7 +6225,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6219
6225
|
* @response `404` `EncompassError` Not Found
|
|
6220
6226
|
* @response `500` `EncompassError` Server Error
|
|
6221
6227
|
*/
|
|
6222
|
-
createEncompassSession: (data: CreateSessionRequest, params?: RequestParams) => Promise<AxiosResponse<CreateSession, any>>;
|
|
6228
|
+
createEncompassSession: (data: CreateSessionRequest, params?: RequestParams) => Promise<AxiosResponse<CreateSession, any, {}>>;
|
|
6223
6229
|
/**
|
|
6224
6230
|
* No description
|
|
6225
6231
|
*
|
|
@@ -6239,7 +6245,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6239
6245
|
sortDirection?: string;
|
|
6240
6246
|
/** @default false */
|
|
6241
6247
|
includeDeleted?: boolean;
|
|
6242
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FilePaginated, any>>;
|
|
6248
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FilePaginated, any, {}>>;
|
|
6243
6249
|
/**
|
|
6244
6250
|
* No description
|
|
6245
6251
|
*
|
|
@@ -6257,7 +6263,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6257
6263
|
file?: File;
|
|
6258
6264
|
isPublic?: boolean;
|
|
6259
6265
|
bucket?: string;
|
|
6260
|
-
}, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
|
|
6266
|
+
}, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
|
|
6261
6267
|
/**
|
|
6262
6268
|
* No description
|
|
6263
6269
|
*
|
|
@@ -6268,7 +6274,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6268
6274
|
* @secure
|
|
6269
6275
|
* @response `201` `File` Created
|
|
6270
6276
|
*/
|
|
6271
|
-
getFileById: (id: string, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
|
|
6277
|
+
getFileById: (id: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
|
|
6272
6278
|
/**
|
|
6273
6279
|
* No description
|
|
6274
6280
|
*
|
|
@@ -6280,7 +6286,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6280
6286
|
* @response `200` `string` Success
|
|
6281
6287
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6282
6288
|
*/
|
|
6283
|
-
replaceFile: (id: string, data: FileRequest, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
6289
|
+
replaceFile: (id: string, data: FileRequest, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
6284
6290
|
/**
|
|
6285
6291
|
* No description
|
|
6286
6292
|
*
|
|
@@ -6291,7 +6297,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6291
6297
|
* @secure
|
|
6292
6298
|
* @response `204` `void` No Content
|
|
6293
6299
|
*/
|
|
6294
|
-
deleteFile: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6300
|
+
deleteFile: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6295
6301
|
/**
|
|
6296
6302
|
* No description
|
|
6297
6303
|
*
|
|
@@ -6309,7 +6315,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6309
6315
|
pageNumber?: number;
|
|
6310
6316
|
sortBy?: string;
|
|
6311
6317
|
sortDirection?: string;
|
|
6312
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FilePaginated, any>>;
|
|
6318
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FilePaginated, any, {}>>;
|
|
6313
6319
|
/**
|
|
6314
6320
|
* No description
|
|
6315
6321
|
*
|
|
@@ -6322,7 +6328,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6322
6328
|
*/
|
|
6323
6329
|
getForms: (query?: {
|
|
6324
6330
|
showAll?: boolean;
|
|
6325
|
-
}, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms[], any>>;
|
|
6331
|
+
}, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms[], any, {}>>;
|
|
6326
6332
|
/**
|
|
6327
6333
|
* No description
|
|
6328
6334
|
*
|
|
@@ -6334,7 +6340,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6334
6340
|
* @response `201` `Form` Created
|
|
6335
6341
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6336
6342
|
*/
|
|
6337
|
-
createForm: (data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<Form, any>>;
|
|
6343
|
+
createForm: (data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<Form, any, {}>>;
|
|
6338
6344
|
/**
|
|
6339
6345
|
* No description
|
|
6340
6346
|
*
|
|
@@ -6345,7 +6351,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6345
6351
|
* @secure
|
|
6346
6352
|
* @response `200` `Form` Success
|
|
6347
6353
|
*/
|
|
6348
|
-
getForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<Form, any>>;
|
|
6354
|
+
getForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<Form, any, {}>>;
|
|
6349
6355
|
/**
|
|
6350
6356
|
* No description
|
|
6351
6357
|
*
|
|
@@ -6357,7 +6363,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6357
6363
|
* @response `200` `Form` Success
|
|
6358
6364
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6359
6365
|
*/
|
|
6360
|
-
replaceForm: (id: string, data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<Form, any>>;
|
|
6366
|
+
replaceForm: (id: string, data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<Form, any, {}>>;
|
|
6361
6367
|
/**
|
|
6362
6368
|
* No description
|
|
6363
6369
|
*
|
|
@@ -6368,7 +6374,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6368
6374
|
* @secure
|
|
6369
6375
|
* @response `204` `void` No Content
|
|
6370
6376
|
*/
|
|
6371
|
-
deleteForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6377
|
+
deleteForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6372
6378
|
/**
|
|
6373
6379
|
* No description
|
|
6374
6380
|
*
|
|
@@ -6379,7 +6385,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6379
6385
|
* @secure
|
|
6380
6386
|
* @response `200` `Form` Success
|
|
6381
6387
|
*/
|
|
6382
|
-
restoreForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<Form, any>>;
|
|
6388
|
+
restoreForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<Form, any, {}>>;
|
|
6383
6389
|
/**
|
|
6384
6390
|
* No description
|
|
6385
6391
|
*
|
|
@@ -6394,7 +6400,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6394
6400
|
/** @format binary */
|
|
6395
6401
|
file?: File;
|
|
6396
6402
|
name?: string;
|
|
6397
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionFile, any>>;
|
|
6403
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionFile, any, {}>>;
|
|
6398
6404
|
/**
|
|
6399
6405
|
* No description
|
|
6400
6406
|
*
|
|
@@ -6405,7 +6411,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6405
6411
|
* @secure
|
|
6406
6412
|
* @response `204` `void` No Content
|
|
6407
6413
|
*/
|
|
6408
|
-
deleteFormSubmissionFile: (formSubmissionFileId: string, formSubmissionId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6414
|
+
deleteFormSubmissionFile: (formSubmissionFileId: string, formSubmissionId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6409
6415
|
/**
|
|
6410
6416
|
* No description
|
|
6411
6417
|
*
|
|
@@ -6419,7 +6425,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6419
6425
|
downloadFormSubmissionFile: (formSubmissionFileId: string, formSubmissionId: string, query?: {
|
|
6420
6426
|
/** @format uuid */
|
|
6421
6427
|
siteConfigurationId?: string;
|
|
6422
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FileWithBytes, any>>;
|
|
6428
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FileWithBytes, any, {}>>;
|
|
6423
6429
|
/**
|
|
6424
6430
|
* No description
|
|
6425
6431
|
*
|
|
@@ -6437,7 +6443,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6437
6443
|
pageNumber?: number;
|
|
6438
6444
|
sortBy?: string;
|
|
6439
6445
|
sortDirection?: string;
|
|
6440
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionPaginated, any>>;
|
|
6446
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionPaginated, any, {}>>;
|
|
6441
6447
|
/**
|
|
6442
6448
|
* No description
|
|
6443
6449
|
*
|
|
@@ -6450,7 +6456,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6450
6456
|
*/
|
|
6451
6457
|
createFormSubmission: (data: FormSubmissionRequest, query?: {
|
|
6452
6458
|
formID?: string;
|
|
6453
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any>>;
|
|
6459
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any, {}>>;
|
|
6454
6460
|
/**
|
|
6455
6461
|
* No description
|
|
6456
6462
|
*
|
|
@@ -6461,7 +6467,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6461
6467
|
* @secure
|
|
6462
6468
|
* @response `200` `FormSubmission` Success
|
|
6463
6469
|
*/
|
|
6464
|
-
getFormSubmission: (id: string, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any>>;
|
|
6470
|
+
getFormSubmission: (id: string, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any, {}>>;
|
|
6465
6471
|
/**
|
|
6466
6472
|
* No description
|
|
6467
6473
|
*
|
|
@@ -6472,7 +6478,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6472
6478
|
* @secure
|
|
6473
6479
|
* @response `200` `FormSubmission` Success
|
|
6474
6480
|
*/
|
|
6475
|
-
replaceFormSubmission: (id: string, data: FormSubmissionRequest, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any>>;
|
|
6481
|
+
replaceFormSubmission: (id: string, data: FormSubmissionRequest, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any, {}>>;
|
|
6476
6482
|
/**
|
|
6477
6483
|
* No description
|
|
6478
6484
|
*
|
|
@@ -6483,7 +6489,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6483
6489
|
* @secure
|
|
6484
6490
|
* @response `204` `void` No Content
|
|
6485
6491
|
*/
|
|
6486
|
-
deleteFormSubmission: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6492
|
+
deleteFormSubmission: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6487
6493
|
/**
|
|
6488
6494
|
* No description
|
|
6489
6495
|
*
|
|
@@ -6501,7 +6507,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6501
6507
|
pageNumber?: number;
|
|
6502
6508
|
sortBy?: string;
|
|
6503
6509
|
sortDirection?: string;
|
|
6504
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionPaginated, any>>;
|
|
6510
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionPaginated, any, {}>>;
|
|
6505
6511
|
/**
|
|
6506
6512
|
* No description
|
|
6507
6513
|
*
|
|
@@ -6512,7 +6518,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6512
6518
|
* @secure
|
|
6513
6519
|
* @response `200` `(FormVersion)[]` Success
|
|
6514
6520
|
*/
|
|
6515
|
-
getFormVersions: (formId: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion[], any>>;
|
|
6521
|
+
getFormVersions: (formId: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion[], any, {}>>;
|
|
6516
6522
|
/**
|
|
6517
6523
|
* No description
|
|
6518
6524
|
*
|
|
@@ -6523,7 +6529,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6523
6529
|
* @secure
|
|
6524
6530
|
* @response `200` `FormVersion` Success
|
|
6525
6531
|
*/
|
|
6526
|
-
createFormVersion: (formId: string, data: FormVersionRequest, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
|
|
6532
|
+
createFormVersion: (formId: string, data: FormVersionRequest, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any, {}>>;
|
|
6527
6533
|
/**
|
|
6528
6534
|
* No description
|
|
6529
6535
|
*
|
|
@@ -6534,7 +6540,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6534
6540
|
* @secure
|
|
6535
6541
|
* @response `200` `FormVersion` Success
|
|
6536
6542
|
*/
|
|
6537
|
-
getFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
|
|
6543
|
+
getFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any, {}>>;
|
|
6538
6544
|
/**
|
|
6539
6545
|
* No description
|
|
6540
6546
|
*
|
|
@@ -6545,7 +6551,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6545
6551
|
* @secure
|
|
6546
6552
|
* @response `200` `FormVersion` Success
|
|
6547
6553
|
*/
|
|
6548
|
-
replaceFormVersion: (formId: string, id: string, data: FormVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
|
|
6554
|
+
replaceFormVersion: (formId: string, id: string, data: FormVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any, {}>>;
|
|
6549
6555
|
/**
|
|
6550
6556
|
* No description
|
|
6551
6557
|
*
|
|
@@ -6556,7 +6562,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6556
6562
|
* @secure
|
|
6557
6563
|
* @response `200` `FormVersion` Success
|
|
6558
6564
|
*/
|
|
6559
|
-
deleteFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
|
|
6565
|
+
deleteFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any, {}>>;
|
|
6560
6566
|
/**
|
|
6561
6567
|
* No description
|
|
6562
6568
|
*
|
|
@@ -6567,7 +6573,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6567
6573
|
* @secure
|
|
6568
6574
|
* @response `200` `Record<string,any>` Success
|
|
6569
6575
|
*/
|
|
6570
|
-
getLoanData: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Record<string, any>, any>>;
|
|
6576
|
+
getLoanData: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Record<string, any>, any, {}>>;
|
|
6571
6577
|
/**
|
|
6572
6578
|
* No description
|
|
6573
6579
|
*
|
|
@@ -6580,7 +6586,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6580
6586
|
* @response `200` `string` Success
|
|
6581
6587
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6582
6588
|
*/
|
|
6583
|
-
updateLoanConsentAndCustomFieldsObsolete: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
6589
|
+
updateLoanConsentAndCustomFieldsObsolete: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
6584
6590
|
/**
|
|
6585
6591
|
* No description
|
|
6586
6592
|
*
|
|
@@ -6591,7 +6597,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6591
6597
|
* @secure
|
|
6592
6598
|
* @response `200` `GetReport` Success
|
|
6593
6599
|
*/
|
|
6594
|
-
getLoansReport: (data: GetReportRequest, params?: RequestParams) => Promise<AxiosResponse<GetReport, any>>;
|
|
6600
|
+
getLoansReport: (data: GetReportRequest, params?: RequestParams) => Promise<AxiosResponse<GetReport, any, {}>>;
|
|
6595
6601
|
/**
|
|
6596
6602
|
* No description
|
|
6597
6603
|
*
|
|
@@ -6608,7 +6614,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6608
6614
|
createLoan: (data: any, query?: {
|
|
6609
6615
|
/** @default false */
|
|
6610
6616
|
isPatch?: boolean;
|
|
6611
|
-
}, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
6617
|
+
}, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
6612
6618
|
/**
|
|
6613
6619
|
* No description
|
|
6614
6620
|
*
|
|
@@ -6624,7 +6630,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6624
6630
|
createLoanInternal: (data: any, query?: {
|
|
6625
6631
|
/** @default false */
|
|
6626
6632
|
isPatch?: boolean;
|
|
6627
|
-
}, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
6633
|
+
}, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
6628
6634
|
/**
|
|
6629
6635
|
* No description
|
|
6630
6636
|
*
|
|
@@ -6636,7 +6642,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6636
6642
|
* @response `200` `string` Success
|
|
6637
6643
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6638
6644
|
*/
|
|
6639
|
-
updateLoanCustomFields: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
6645
|
+
updateLoanCustomFields: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
6640
6646
|
/**
|
|
6641
6647
|
* No description
|
|
6642
6648
|
*
|
|
@@ -6649,7 +6655,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6649
6655
|
* @response `202` `string` Accepted
|
|
6650
6656
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6651
6657
|
*/
|
|
6652
|
-
updateLoanConsent: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
6658
|
+
updateLoanConsent: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
6653
6659
|
/**
|
|
6654
6660
|
* No description
|
|
6655
6661
|
*
|
|
@@ -6660,7 +6666,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6660
6666
|
* @secure
|
|
6661
6667
|
* @response `200` `(DocumentData)[]` Success
|
|
6662
6668
|
*/
|
|
6663
|
-
getTaskDocumentsByLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentData[], any>>;
|
|
6669
|
+
getTaskDocumentsByLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentData[], any, {}>>;
|
|
6664
6670
|
/**
|
|
6665
6671
|
* No description
|
|
6666
6672
|
*
|
|
@@ -6674,7 +6680,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6674
6680
|
getLoanDocumentContent: (loanId: string, documentId: string, query?: {
|
|
6675
6681
|
/** @default "base64" */
|
|
6676
6682
|
contentType?: string;
|
|
6677
|
-
}, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6683
|
+
}, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6678
6684
|
/**
|
|
6679
6685
|
* No description
|
|
6680
6686
|
*
|
|
@@ -6685,7 +6691,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6685
6691
|
* @secure
|
|
6686
6692
|
* @response `204` `void` No Content
|
|
6687
6693
|
*/
|
|
6688
|
-
getLoanRecipients: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6694
|
+
getLoanRecipients: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6689
6695
|
/**
|
|
6690
6696
|
* No description
|
|
6691
6697
|
*
|
|
@@ -6696,7 +6702,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6696
6702
|
* @secure
|
|
6697
6703
|
* @response `200` `(PreliminaryCondition)[]` Success
|
|
6698
6704
|
*/
|
|
6699
|
-
getPreliminaryConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<PreliminaryCondition[], any>>;
|
|
6705
|
+
getPreliminaryConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<PreliminaryCondition[], any, {}>>;
|
|
6700
6706
|
/**
|
|
6701
6707
|
* No description
|
|
6702
6708
|
*
|
|
@@ -6707,7 +6713,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6707
6713
|
* @secure
|
|
6708
6714
|
* @response `200` `(UnderwritingCondition)[]` Success
|
|
6709
6715
|
*/
|
|
6710
|
-
getUnderwritingConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UnderwritingCondition[], any>>;
|
|
6716
|
+
getUnderwritingConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UnderwritingCondition[], any, {}>>;
|
|
6711
6717
|
/**
|
|
6712
6718
|
* No description
|
|
6713
6719
|
*
|
|
@@ -6718,7 +6724,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6718
6724
|
* @secure
|
|
6719
6725
|
* @response `200` `string` Success
|
|
6720
6726
|
*/
|
|
6721
|
-
getLoanEmbeddedSigningLink: (envelopeId: string, userName: string, email: string, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
6727
|
+
getLoanEmbeddedSigningLink: (envelopeId: string, userName: string, email: string, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
6722
6728
|
/**
|
|
6723
6729
|
* No description
|
|
6724
6730
|
*
|
|
@@ -6730,7 +6736,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6730
6736
|
* @secure
|
|
6731
6737
|
* @response `200` `DocumentDataRequest` Success
|
|
6732
6738
|
*/
|
|
6733
|
-
createLegacyLoanDocument: (data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any>>;
|
|
6739
|
+
createLegacyLoanDocument: (data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any, {}>>;
|
|
6734
6740
|
/**
|
|
6735
6741
|
* No description
|
|
6736
6742
|
*
|
|
@@ -6747,7 +6753,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6747
6753
|
createEditDraftForLoan: (loanId: string, query?: {
|
|
6748
6754
|
/** @default false */
|
|
6749
6755
|
isCoBorrower?: boolean;
|
|
6750
|
-
}, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
|
|
6756
|
+
}, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
|
|
6751
6757
|
/**
|
|
6752
6758
|
* No description
|
|
6753
6759
|
*
|
|
@@ -6763,7 +6769,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6763
6769
|
file?: File;
|
|
6764
6770
|
/** @format int32 */
|
|
6765
6771
|
weight?: number;
|
|
6766
|
-
}, params?: RequestParams) => Promise<AxiosResponse<ListingFile, any>>;
|
|
6772
|
+
}, params?: RequestParams) => Promise<AxiosResponse<ListingFile, any, {}>>;
|
|
6767
6773
|
/**
|
|
6768
6774
|
* No description
|
|
6769
6775
|
*
|
|
@@ -6774,7 +6780,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6774
6780
|
* @secure
|
|
6775
6781
|
* @response `200` `ListingFile` Success
|
|
6776
6782
|
*/
|
|
6777
|
-
updateListingFiles: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingFile, any>>;
|
|
6783
|
+
updateListingFiles: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingFile, any, {}>>;
|
|
6778
6784
|
/**
|
|
6779
6785
|
* No description
|
|
6780
6786
|
*
|
|
@@ -6785,7 +6791,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6785
6791
|
* @secure
|
|
6786
6792
|
* @response `204` `Listing` No Content
|
|
6787
6793
|
*/
|
|
6788
|
-
removeListingFile: (listingId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
|
|
6794
|
+
removeListingFile: (listingId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
|
|
6789
6795
|
/**
|
|
6790
6796
|
* No description
|
|
6791
6797
|
*
|
|
@@ -6803,7 +6809,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6803
6809
|
file?: File;
|
|
6804
6810
|
/** @format int32 */
|
|
6805
6811
|
weight?: number;
|
|
6806
|
-
}, params?: RequestParams) => Promise<AxiosResponse<ListingPhoto, any>>;
|
|
6812
|
+
}, params?: RequestParams) => Promise<AxiosResponse<ListingPhoto, any, {}>>;
|
|
6807
6813
|
/**
|
|
6808
6814
|
* No description
|
|
6809
6815
|
*
|
|
@@ -6814,7 +6820,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6814
6820
|
* @secure
|
|
6815
6821
|
* @response `200` `(ListingPhoto)[]` Success
|
|
6816
6822
|
*/
|
|
6817
|
-
updateListingPhotos: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingPhoto[], any>>;
|
|
6823
|
+
updateListingPhotos: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingPhoto[], any, {}>>;
|
|
6818
6824
|
/**
|
|
6819
6825
|
* No description
|
|
6820
6826
|
*
|
|
@@ -6825,7 +6831,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6825
6831
|
* @secure
|
|
6826
6832
|
* @response `204` `Listing` No Content
|
|
6827
6833
|
*/
|
|
6828
|
-
removeListingPhoto: (listingId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
|
|
6834
|
+
removeListingPhoto: (listingId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
|
|
6829
6835
|
/**
|
|
6830
6836
|
* No description
|
|
6831
6837
|
*
|
|
@@ -6843,7 +6849,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6843
6849
|
pageNumber?: number;
|
|
6844
6850
|
sortBy?: string;
|
|
6845
6851
|
sortDirection?: string;
|
|
6846
|
-
}, params?: RequestParams) => Promise<AxiosResponse<ListingPaginated, any>>;
|
|
6852
|
+
}, params?: RequestParams) => Promise<AxiosResponse<ListingPaginated, any, {}>>;
|
|
6847
6853
|
/**
|
|
6848
6854
|
* No description
|
|
6849
6855
|
*
|
|
@@ -6854,7 +6860,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6854
6860
|
* @secure
|
|
6855
6861
|
* @response `201` `Listing` Created
|
|
6856
6862
|
*/
|
|
6857
|
-
createListing: (data: ListingRequest, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
|
|
6863
|
+
createListing: (data: ListingRequest, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
|
|
6858
6864
|
/**
|
|
6859
6865
|
* No description
|
|
6860
6866
|
*
|
|
@@ -6865,7 +6871,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6865
6871
|
* @secure
|
|
6866
6872
|
* @response `200` `Listing` Success
|
|
6867
6873
|
*/
|
|
6868
|
-
getListingBySlug: (slug: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
|
|
6874
|
+
getListingBySlug: (slug: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
|
|
6869
6875
|
/**
|
|
6870
6876
|
* No description
|
|
6871
6877
|
*
|
|
@@ -6876,7 +6882,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6876
6882
|
* @secure
|
|
6877
6883
|
* @response `200` `Listing` Success
|
|
6878
6884
|
*/
|
|
6879
|
-
getListing: (id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
|
|
6885
|
+
getListing: (id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
|
|
6880
6886
|
/**
|
|
6881
6887
|
* No description
|
|
6882
6888
|
*
|
|
@@ -6887,7 +6893,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6887
6893
|
* @secure
|
|
6888
6894
|
* @response `200` `Listing` Success
|
|
6889
6895
|
*/
|
|
6890
|
-
replaceListing: (id: string, data: ListingRequest, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
|
|
6896
|
+
replaceListing: (id: string, data: ListingRequest, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
|
|
6891
6897
|
/**
|
|
6892
6898
|
* No description
|
|
6893
6899
|
*
|
|
@@ -6898,7 +6904,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6898
6904
|
* @secure
|
|
6899
6905
|
* @response `204` `void` No Content
|
|
6900
6906
|
*/
|
|
6901
|
-
deleteListing: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6907
|
+
deleteListing: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6902
6908
|
/**
|
|
6903
6909
|
* No description
|
|
6904
6910
|
*
|
|
@@ -6916,7 +6922,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6916
6922
|
pageNumber?: number;
|
|
6917
6923
|
sortBy?: string;
|
|
6918
6924
|
sortDirection?: string;
|
|
6919
|
-
}, params?: RequestParams) => Promise<AxiosResponse<ListingPaginated, any>>;
|
|
6925
|
+
}, params?: RequestParams) => Promise<AxiosResponse<ListingPaginated, any, {}>>;
|
|
6920
6926
|
/**
|
|
6921
6927
|
* No description
|
|
6922
6928
|
*
|
|
@@ -6930,7 +6936,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6930
6936
|
updateListingBackgroundImage: (id: string, data: {
|
|
6931
6937
|
/** @format binary */
|
|
6932
6938
|
file?: File;
|
|
6933
|
-
}, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
|
|
6939
|
+
}, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
|
|
6934
6940
|
/**
|
|
6935
6941
|
* No description
|
|
6936
6942
|
*
|
|
@@ -6941,7 +6947,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6941
6947
|
* @secure
|
|
6942
6948
|
* @response `204` `void` No Content
|
|
6943
6949
|
*/
|
|
6944
|
-
deleteListingBackgroundImage: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6950
|
+
deleteListingBackgroundImage: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6945
6951
|
/**
|
|
6946
6952
|
* No description
|
|
6947
6953
|
*
|
|
@@ -6952,7 +6958,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6952
6958
|
* @secure
|
|
6953
6959
|
* @response `200` `File` Success
|
|
6954
6960
|
*/
|
|
6955
|
-
getListingOpenHouseFlyer: (id: string, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
|
|
6961
|
+
getListingOpenHouseFlyer: (id: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
|
|
6956
6962
|
/**
|
|
6957
6963
|
* No description
|
|
6958
6964
|
*
|
|
@@ -6963,7 +6969,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6963
6969
|
* @secure
|
|
6964
6970
|
* @response `200` `RunLOCalculation` Success
|
|
6965
6971
|
*/
|
|
6966
|
-
getLoanCalculator: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any>>;
|
|
6972
|
+
getLoanCalculator: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any, {}>>;
|
|
6967
6973
|
/**
|
|
6968
6974
|
* No description
|
|
6969
6975
|
*
|
|
@@ -6976,7 +6982,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6976
6982
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6977
6983
|
* @response `423` `UnprocessableEntity` Client Error
|
|
6978
6984
|
*/
|
|
6979
|
-
runLoanCalculator: (loanId: string, data: RunLOCalculationRequest, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any>>;
|
|
6985
|
+
runLoanCalculator: (loanId: string, data: RunLOCalculationRequest, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any, {}>>;
|
|
6980
6986
|
/**
|
|
6981
6987
|
* No description
|
|
6982
6988
|
*
|
|
@@ -6987,7 +6993,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6987
6993
|
* @secure
|
|
6988
6994
|
* @response `200` `LoanComparison` Success
|
|
6989
6995
|
*/
|
|
6990
|
-
getLoanComparisons: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<LoanComparison, any>>;
|
|
6996
|
+
getLoanComparisons: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<LoanComparison, any, {}>>;
|
|
6991
6997
|
/**
|
|
6992
6998
|
* No description
|
|
6993
6999
|
*
|
|
@@ -7000,7 +7006,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7000
7006
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7001
7007
|
* @response `423` `UnprocessableEntity` Client Error
|
|
7002
7008
|
*/
|
|
7003
|
-
createLoanComparison: (loanId: string, index: number, data: LoanComparisonScenario, params?: RequestParams) => Promise<AxiosResponse<LoanComparisonScenario, any>>;
|
|
7009
|
+
createLoanComparison: (loanId: string, index: number, data: LoanComparisonScenario, params?: RequestParams) => Promise<AxiosResponse<LoanComparisonScenario, any, {}>>;
|
|
7004
7010
|
/**
|
|
7005
7011
|
* No description
|
|
7006
7012
|
*
|
|
@@ -7011,7 +7017,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7011
7017
|
* @secure
|
|
7012
7018
|
* @response `204` `void` No Content
|
|
7013
7019
|
*/
|
|
7014
|
-
deleteLoanComparison: (loanId: string, index: number, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7020
|
+
deleteLoanComparison: (loanId: string, index: number, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7015
7021
|
/**
|
|
7016
7022
|
* No description
|
|
7017
7023
|
*
|
|
@@ -7023,7 +7029,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7023
7029
|
* @response `204` `void` No Content
|
|
7024
7030
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7025
7031
|
*/
|
|
7026
|
-
createLoanComparisonPdf: (loanId: string, data: PostLoanComparisonPdfRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7032
|
+
createLoanComparisonPdf: (loanId: string, data: PostLoanComparisonPdfRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7027
7033
|
/**
|
|
7028
7034
|
* No description
|
|
7029
7035
|
*
|
|
@@ -7034,7 +7040,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7034
7040
|
* @secure
|
|
7035
7041
|
* @response `200` `(string)[]` Success
|
|
7036
7042
|
*/
|
|
7037
|
-
getLoanDocumentBuckets: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<string[], any>>;
|
|
7043
|
+
getLoanDocumentBuckets: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<string[], any, {}>>;
|
|
7038
7044
|
/**
|
|
7039
7045
|
* No description
|
|
7040
7046
|
*
|
|
@@ -7045,7 +7051,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7045
7051
|
* @secure
|
|
7046
7052
|
* @response `201` `(string)[]` Created
|
|
7047
7053
|
*/
|
|
7048
|
-
createLoanDocumentBuckets: (loanId: string, data: string[], params?: RequestParams) => Promise<AxiosResponse<string[], any>>;
|
|
7054
|
+
createLoanDocumentBuckets: (loanId: string, data: string[], params?: RequestParams) => Promise<AxiosResponse<string[], any, {}>>;
|
|
7049
7055
|
/**
|
|
7050
7056
|
* No description
|
|
7051
7057
|
*
|
|
@@ -7060,7 +7066,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7060
7066
|
getLoanDocument: (loanId: string, documentId: string, query?: {
|
|
7061
7067
|
/** @default false */
|
|
7062
7068
|
preview?: boolean;
|
|
7063
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any>>;
|
|
7069
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any, {}>>;
|
|
7064
7070
|
/**
|
|
7065
7071
|
* No description
|
|
7066
7072
|
*
|
|
@@ -7078,7 +7084,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7078
7084
|
pageNumber?: number;
|
|
7079
7085
|
sortBy?: string;
|
|
7080
7086
|
sortDirection?: string;
|
|
7081
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanDocumentSearchPaginated, any>>;
|
|
7087
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanDocumentSearchPaginated, any, {}>>;
|
|
7082
7088
|
/**
|
|
7083
7089
|
* @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).
|
|
7084
7090
|
*
|
|
@@ -7092,7 +7098,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7092
7098
|
getLoanDocumentFolders: (loanId: string, data: DocumentFoldersRequest, query?: {
|
|
7093
7099
|
/** @default false */
|
|
7094
7100
|
folderNamesOnly?: boolean;
|
|
7095
|
-
}, params?: RequestParams) => Promise<AxiosResponse<DocumentFolder[], any>>;
|
|
7101
|
+
}, params?: RequestParams) => Promise<AxiosResponse<DocumentFolder[], any, {}>>;
|
|
7096
7102
|
/**
|
|
7097
7103
|
* No description
|
|
7098
7104
|
*
|
|
@@ -7101,10 +7107,10 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7101
7107
|
* @summary Download By ID
|
|
7102
7108
|
* @request GET:/api/loans/{loanId}/documents/{documentId}/download
|
|
7103
7109
|
* @secure
|
|
7104
|
-
* @response `200` `
|
|
7110
|
+
* @response `200` `string` Success
|
|
7105
7111
|
* @response `404` `ProblemDetails` Not Found
|
|
7106
7112
|
*/
|
|
7107
|
-
downloadLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<
|
|
7113
|
+
downloadLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
7108
7114
|
/**
|
|
7109
7115
|
* No description
|
|
7110
7116
|
*
|
|
@@ -7122,7 +7128,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7122
7128
|
/** @format binary */
|
|
7123
7129
|
file?: File;
|
|
7124
7130
|
bucket?: string;
|
|
7125
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any>>;
|
|
7131
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any, {}>>;
|
|
7126
7132
|
/**
|
|
7127
7133
|
* No description
|
|
7128
7134
|
*
|
|
@@ -7135,7 +7141,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7135
7141
|
* @response `404` `ProblemDetails` Not Found
|
|
7136
7142
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7137
7143
|
*/
|
|
7138
|
-
retryFailedLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any>>;
|
|
7144
|
+
retryFailedLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any, {}>>;
|
|
7139
7145
|
/**
|
|
7140
7146
|
* No description
|
|
7141
7147
|
*
|
|
@@ -7146,7 +7152,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7146
7152
|
* @secure
|
|
7147
7153
|
* @response `200` `DocumentDataRequest` Success
|
|
7148
7154
|
*/
|
|
7149
|
-
generateLoanDocument: (loanId: string, data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any>>;
|
|
7155
|
+
generateLoanDocument: (loanId: string, data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any, {}>>;
|
|
7150
7156
|
/**
|
|
7151
7157
|
* No description
|
|
7152
7158
|
*
|
|
@@ -7159,7 +7165,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7159
7165
|
* @response `400` `ProblemDetails` Bad Request
|
|
7160
7166
|
* @response `404` `ProblemDetails` Not Found
|
|
7161
7167
|
*/
|
|
7162
|
-
sendLoanDocuments: (loanId: string, data: SendLoanDocumentsRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7168
|
+
sendLoanDocuments: (loanId: string, data: SendLoanDocumentsRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7163
7169
|
/**
|
|
7164
7170
|
* @description Fetches all documents from Encompass that don't exist locally and stores them in S3
|
|
7165
7171
|
*
|
|
@@ -7171,7 +7177,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7171
7177
|
* @response `200` `DocumentSync` Success
|
|
7172
7178
|
* @response `404` `ProblemDetails` Not Found
|
|
7173
7179
|
*/
|
|
7174
|
-
syncLoanDocumentsFromLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentSync, any>>;
|
|
7180
|
+
syncLoanDocumentsFromLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentSync, any, {}>>;
|
|
7175
7181
|
/**
|
|
7176
7182
|
* @description Re-attempts to push a failed document to LOS
|
|
7177
7183
|
*
|
|
@@ -7184,7 +7190,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7184
7190
|
* @response `404` `ProblemDetails` Not Found
|
|
7185
7191
|
* @response `423` `ProblemDetails` Client Error
|
|
7186
7192
|
*/
|
|
7187
|
-
retrySyncLoanDocumentToLos: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7193
|
+
retrySyncLoanDocumentToLos: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7188
7194
|
/**
|
|
7189
7195
|
* No description
|
|
7190
7196
|
*
|
|
@@ -7195,7 +7201,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7195
7201
|
* @secure
|
|
7196
7202
|
* @response `201` `Draft` Created
|
|
7197
7203
|
*/
|
|
7198
|
-
createLoanDraft: (data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
|
|
7204
|
+
createLoanDraft: (data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
|
|
7199
7205
|
/**
|
|
7200
7206
|
* No description
|
|
7201
7207
|
*
|
|
@@ -7206,7 +7212,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7206
7212
|
* @secure
|
|
7207
7213
|
* @response `200` `(DraftContent)[]` Success
|
|
7208
7214
|
*/
|
|
7209
|
-
getLoanDrafts: (params?: RequestParams) => Promise<AxiosResponse<DraftContent[], any>>;
|
|
7215
|
+
getLoanDrafts: (params?: RequestParams) => Promise<AxiosResponse<DraftContent[], any, {}>>;
|
|
7210
7216
|
/**
|
|
7211
7217
|
* No description
|
|
7212
7218
|
*
|
|
@@ -7217,7 +7223,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7217
7223
|
* @secure
|
|
7218
7224
|
* @response `200` `DraftContent` Success
|
|
7219
7225
|
*/
|
|
7220
|
-
getLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<DraftContent, any>>;
|
|
7226
|
+
getLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<DraftContent, any, {}>>;
|
|
7221
7227
|
/**
|
|
7222
7228
|
* No description
|
|
7223
7229
|
*
|
|
@@ -7228,7 +7234,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7228
7234
|
* @secure
|
|
7229
7235
|
* @response `200` `Draft` Success
|
|
7230
7236
|
*/
|
|
7231
|
-
replaceLoanDraft: (draftId: string, data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
|
|
7237
|
+
replaceLoanDraft: (draftId: string, data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
|
|
7232
7238
|
/**
|
|
7233
7239
|
* No description
|
|
7234
7240
|
*
|
|
@@ -7239,7 +7245,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7239
7245
|
* @secure
|
|
7240
7246
|
* @response `204` `void` No Content
|
|
7241
7247
|
*/
|
|
7242
|
-
deleteLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7248
|
+
deleteLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7243
7249
|
/**
|
|
7244
7250
|
* No description
|
|
7245
7251
|
*
|
|
@@ -7257,7 +7263,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7257
7263
|
pageNumber?: number;
|
|
7258
7264
|
sortBy?: string;
|
|
7259
7265
|
sortDirection?: string;
|
|
7260
|
-
}, params?: RequestParams) => Promise<AxiosResponse<DraftContentPaginated, any>>;
|
|
7266
|
+
}, params?: RequestParams) => Promise<AxiosResponse<DraftContentPaginated, any, {}>>;
|
|
7261
7267
|
/**
|
|
7262
7268
|
* No description
|
|
7263
7269
|
*
|
|
@@ -7268,7 +7274,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7268
7274
|
* @secure
|
|
7269
7275
|
* @response `200` `Draft` Success
|
|
7270
7276
|
*/
|
|
7271
|
-
reassignLoanOfficer: (draftId: string, data: DraftLoanOfficerReassignRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
|
|
7277
|
+
reassignLoanOfficer: (draftId: string, data: DraftLoanOfficerReassignRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
|
|
7272
7278
|
/**
|
|
7273
7279
|
* No description
|
|
7274
7280
|
*
|
|
@@ -7279,7 +7285,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7279
7285
|
* @secure
|
|
7280
7286
|
* @response `200` `Draft` Success
|
|
7281
7287
|
*/
|
|
7282
|
-
restoreLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
|
|
7288
|
+
restoreLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
|
|
7283
7289
|
/**
|
|
7284
7290
|
* No description
|
|
7285
7291
|
*
|
|
@@ -7299,7 +7305,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7299
7305
|
pageNumber?: number;
|
|
7300
7306
|
sortBy?: string;
|
|
7301
7307
|
sortDirection?: string;
|
|
7302
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanImportPaginated, any>>;
|
|
7308
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanImportPaginated, any, {}>>;
|
|
7303
7309
|
/**
|
|
7304
7310
|
* No description
|
|
7305
7311
|
*
|
|
@@ -7310,7 +7316,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7310
7316
|
* @secure
|
|
7311
7317
|
* @response `201` `LoanImport` Created
|
|
7312
7318
|
*/
|
|
7313
|
-
createLoanImport: (data: CreateLoanImportRequest, params?: RequestParams) => Promise<AxiosResponse<LoanImport, any>>;
|
|
7319
|
+
createLoanImport: (data: CreateLoanImportRequest, params?: RequestParams) => Promise<AxiosResponse<LoanImport, any, {}>>;
|
|
7314
7320
|
/**
|
|
7315
7321
|
* No description
|
|
7316
7322
|
*
|
|
@@ -7321,7 +7327,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7321
7327
|
* @secure
|
|
7322
7328
|
* @response `200` `LoanImport` Success
|
|
7323
7329
|
*/
|
|
7324
|
-
getLoanImport: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanImport, any>>;
|
|
7330
|
+
getLoanImport: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanImport, any, {}>>;
|
|
7325
7331
|
/**
|
|
7326
7332
|
* No description
|
|
7327
7333
|
*
|
|
@@ -7339,7 +7345,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7339
7345
|
pageNumber?: number;
|
|
7340
7346
|
sortBy?: string;
|
|
7341
7347
|
sortDirection?: string;
|
|
7342
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanImportLogPaginated, any>>;
|
|
7348
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanImportLogPaginated, any, {}>>;
|
|
7343
7349
|
/**
|
|
7344
7350
|
* No description
|
|
7345
7351
|
*
|
|
@@ -7351,7 +7357,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7351
7357
|
* @response `200` `(Invite)[]` Success
|
|
7352
7358
|
* @response `404` `ProblemDetails` Not Found
|
|
7353
7359
|
*/
|
|
7354
|
-
getLoanInvites: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Invite[], any>>;
|
|
7360
|
+
getLoanInvites: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Invite[], any, {}>>;
|
|
7355
7361
|
/**
|
|
7356
7362
|
* No description
|
|
7357
7363
|
*
|
|
@@ -7363,7 +7369,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7363
7369
|
* @response `200` `(Invite)[]` Success
|
|
7364
7370
|
* @response `404` `ProblemDetails` Not Found
|
|
7365
7371
|
*/
|
|
7366
|
-
inviteLoanContacts: (loanId: string, data: string[], params?: RequestParams) => Promise<AxiosResponse<Invite[], any>>;
|
|
7372
|
+
inviteLoanContacts: (loanId: string, data: string[], params?: RequestParams) => Promise<AxiosResponse<Invite[], any, {}>>;
|
|
7367
7373
|
/**
|
|
7368
7374
|
* No description
|
|
7369
7375
|
*
|
|
@@ -7381,7 +7387,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7381
7387
|
pageNumber?: number;
|
|
7382
7388
|
sortBy?: string;
|
|
7383
7389
|
sortDirection?: string;
|
|
7384
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanLogPaginated, any>>;
|
|
7390
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanLogPaginated, any, {}>>;
|
|
7385
7391
|
/**
|
|
7386
7392
|
* No description
|
|
7387
7393
|
*
|
|
@@ -7393,7 +7399,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7393
7399
|
* @response `200` `LoanLogDetail` Success
|
|
7394
7400
|
* @response `404` `ProblemDetails` Not Found
|
|
7395
7401
|
*/
|
|
7396
|
-
getLoanLogById: (loanId: string, loanLogId: string, params?: RequestParams) => Promise<AxiosResponse<LoanLogDetail, any>>;
|
|
7402
|
+
getLoanLogById: (loanId: string, loanLogId: string, params?: RequestParams) => Promise<AxiosResponse<LoanLogDetail, any, {}>>;
|
|
7397
7403
|
/**
|
|
7398
7404
|
* No description
|
|
7399
7405
|
*
|
|
@@ -7412,7 +7418,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7412
7418
|
pageNumber?: number;
|
|
7413
7419
|
sortBy?: string;
|
|
7414
7420
|
sortDirection?: string;
|
|
7415
|
-
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any>>;
|
|
7421
|
+
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any, {}>>;
|
|
7416
7422
|
/**
|
|
7417
7423
|
* No description
|
|
7418
7424
|
*
|
|
@@ -7430,7 +7436,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7430
7436
|
pageNumber?: number;
|
|
7431
7437
|
sortBy?: string;
|
|
7432
7438
|
sortDirection?: string;
|
|
7433
|
-
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any>>;
|
|
7439
|
+
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any, {}>>;
|
|
7434
7440
|
/**
|
|
7435
7441
|
* No description
|
|
7436
7442
|
*
|
|
@@ -7441,7 +7447,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7441
7447
|
* @secure
|
|
7442
7448
|
* @response `200` `BranchUser` Success
|
|
7443
7449
|
*/
|
|
7444
|
-
getLoanOfficer: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any>>;
|
|
7450
|
+
getLoanOfficer: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any, {}>>;
|
|
7445
7451
|
/**
|
|
7446
7452
|
* No description
|
|
7447
7453
|
*
|
|
@@ -7453,7 +7459,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7453
7459
|
* @response `200` `SiteConfiguration` Success
|
|
7454
7460
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7455
7461
|
*/
|
|
7456
|
-
createLoanOfficerSiteConfiguration: (loanOfficerId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
7462
|
+
createLoanOfficerSiteConfiguration: (loanOfficerId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
7457
7463
|
/**
|
|
7458
7464
|
* No description
|
|
7459
7465
|
*
|
|
@@ -7464,7 +7470,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7464
7470
|
* @secure
|
|
7465
7471
|
* @response `200` `SiteConfigurationWithInherited` Success
|
|
7466
7472
|
*/
|
|
7467
|
-
getLoanOfficerSiteConfiguration: (loanOfficerId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
|
|
7473
|
+
getLoanOfficerSiteConfiguration: (loanOfficerId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any, {}>>;
|
|
7468
7474
|
/**
|
|
7469
7475
|
* No description
|
|
7470
7476
|
*
|
|
@@ -7478,7 +7484,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7478
7484
|
*/
|
|
7479
7485
|
replaceLoanOfficerSiteConfiguration: (loanOfficerId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
|
|
7480
7486
|
applyToChildren?: boolean;
|
|
7481
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
7487
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
7482
7488
|
/**
|
|
7483
7489
|
* No description
|
|
7484
7490
|
*
|
|
@@ -7496,7 +7502,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7496
7502
|
pageNumber?: number;
|
|
7497
7503
|
sortBy?: string;
|
|
7498
7504
|
sortDirection?: string;
|
|
7499
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanQueuePaginated, any>>;
|
|
7505
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanQueuePaginated, any, {}>>;
|
|
7500
7506
|
/**
|
|
7501
7507
|
* No description
|
|
7502
7508
|
*
|
|
@@ -7508,7 +7514,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7508
7514
|
* @response `200` `any` Success
|
|
7509
7515
|
* @response `404` `ProblemDetails` Not Found
|
|
7510
7516
|
*/
|
|
7511
|
-
getLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<any, any>>;
|
|
7517
|
+
getLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
7512
7518
|
/**
|
|
7513
7519
|
* No description
|
|
7514
7520
|
*
|
|
@@ -7520,7 +7526,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7520
7526
|
* @response `200` `LoanQueueWithData` Success
|
|
7521
7527
|
* @response `404` `ProblemDetails` Not Found
|
|
7522
7528
|
*/
|
|
7523
|
-
replaceLoanQueue: (loanQueueId: string, data: UpdateLoanQueueRequest, params?: RequestParams) => Promise<AxiosResponse<LoanQueueWithData, any>>;
|
|
7529
|
+
replaceLoanQueue: (loanQueueId: string, data: UpdateLoanQueueRequest, params?: RequestParams) => Promise<AxiosResponse<LoanQueueWithData, any, {}>>;
|
|
7524
7530
|
/**
|
|
7525
7531
|
* No description
|
|
7526
7532
|
*
|
|
@@ -7532,7 +7538,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7532
7538
|
* @response `204` `void` No Content
|
|
7533
7539
|
* @response `404` `ProblemDetails` Not Found
|
|
7534
7540
|
*/
|
|
7535
|
-
deleteLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7541
|
+
deleteLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7536
7542
|
/**
|
|
7537
7543
|
* No description
|
|
7538
7544
|
*
|
|
@@ -7544,7 +7550,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7544
7550
|
* @response `204` `void` No Content
|
|
7545
7551
|
* @response `404` `ProblemDetails` Not Found
|
|
7546
7552
|
*/
|
|
7547
|
-
retryLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7553
|
+
retryLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7548
7554
|
/**
|
|
7549
7555
|
* No description
|
|
7550
7556
|
*
|
|
@@ -7556,7 +7562,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7556
7562
|
* @response `200` `Loan` Success
|
|
7557
7563
|
* @response `404` `ProblemDetails` Not Found
|
|
7558
7564
|
*/
|
|
7559
|
-
getLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any>>;
|
|
7565
|
+
getLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any, {}>>;
|
|
7560
7566
|
/**
|
|
7561
7567
|
* No description
|
|
7562
7568
|
*
|
|
@@ -7567,7 +7573,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7567
7573
|
* @secure
|
|
7568
7574
|
* @response `200` `GetApplications` Success
|
|
7569
7575
|
*/
|
|
7570
|
-
getLoans: (params?: RequestParams) => Promise<AxiosResponse<GetApplications, any>>;
|
|
7576
|
+
getLoans: (params?: RequestParams) => Promise<AxiosResponse<GetApplications, any, {}>>;
|
|
7571
7577
|
/**
|
|
7572
7578
|
* No description
|
|
7573
7579
|
*
|
|
@@ -7581,7 +7587,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7581
7587
|
* @response `401` `ProblemDetails` Unauthorized
|
|
7582
7588
|
* @response `403` `ProblemDetails` Forbidden
|
|
7583
7589
|
*/
|
|
7584
|
-
createLoanv3: (data: LoanApplicationRequest, params?: RequestParams) => Promise<AxiosResponse<LoanApplication, any>>;
|
|
7590
|
+
createLoanv3: (data: LoanApplicationRequest, params?: RequestParams) => Promise<AxiosResponse<LoanApplication, any, {}>>;
|
|
7585
7591
|
/**
|
|
7586
7592
|
* No description
|
|
7587
7593
|
*
|
|
@@ -7599,7 +7605,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7599
7605
|
pageNumber?: number;
|
|
7600
7606
|
sortBy?: string;
|
|
7601
7607
|
sortDirection?: string;
|
|
7602
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanListPaginated, any>>;
|
|
7608
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanListPaginated, any, {}>>;
|
|
7603
7609
|
/**
|
|
7604
7610
|
* No description
|
|
7605
7611
|
*
|
|
@@ -7615,7 +7621,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7615
7621
|
* @response `404` `ProblemDetails` Not Found
|
|
7616
7622
|
* @response `409` `any` Conflict
|
|
7617
7623
|
*/
|
|
7618
|
-
updateLoan: (loanId: string, data: any, params?: RequestParams) => Promise<AxiosResponse<Loan, any>>;
|
|
7624
|
+
updateLoan: (loanId: string, data: any, params?: RequestParams) => Promise<AxiosResponse<Loan, any, {}>>;
|
|
7619
7625
|
/**
|
|
7620
7626
|
* No description
|
|
7621
7627
|
*
|
|
@@ -7628,7 +7634,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7628
7634
|
* @response `400` `ProblemDetails` Bad Request
|
|
7629
7635
|
* @response `404` `ProblemDetails` Not Found
|
|
7630
7636
|
*/
|
|
7631
|
-
completeBorrowerApplication: (loanId: string, borrowerId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7637
|
+
completeBorrowerApplication: (loanId: string, borrowerId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7632
7638
|
/**
|
|
7633
7639
|
* No description
|
|
7634
7640
|
*
|
|
@@ -7639,7 +7645,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7639
7645
|
* @secure
|
|
7640
7646
|
* @response `200` `Loan` Success
|
|
7641
7647
|
*/
|
|
7642
|
-
importLoanFromLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any>>;
|
|
7648
|
+
importLoanFromLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any, {}>>;
|
|
7643
7649
|
/**
|
|
7644
7650
|
* No description
|
|
7645
7651
|
*
|
|
@@ -7651,7 +7657,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7651
7657
|
* @response `202` `void` Accepted
|
|
7652
7658
|
* @response `404` `ProblemDetails` Not Found
|
|
7653
7659
|
*/
|
|
7654
|
-
syncLoanToLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7660
|
+
syncLoanToLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7655
7661
|
/**
|
|
7656
7662
|
* No description
|
|
7657
7663
|
*
|
|
@@ -7670,7 +7676,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7670
7676
|
pageNumber?: number;
|
|
7671
7677
|
sortBy?: string;
|
|
7672
7678
|
sortDirection?: string;
|
|
7673
|
-
}, params?: RequestParams) => Promise<AxiosResponse<TaskCommentPaginated, any>>;
|
|
7679
|
+
}, params?: RequestParams) => Promise<AxiosResponse<TaskCommentPaginated, any, {}>>;
|
|
7674
7680
|
/**
|
|
7675
7681
|
* No description
|
|
7676
7682
|
*
|
|
@@ -7682,7 +7688,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7682
7688
|
* @response `200` `TaskComment` Success
|
|
7683
7689
|
* @response `404` `ProblemDetails` Not Found
|
|
7684
7690
|
*/
|
|
7685
|
-
getLoanTaskComment: (id: string, loanId: string, userLoanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any>>;
|
|
7691
|
+
getLoanTaskComment: (id: string, loanId: string, userLoanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any, {}>>;
|
|
7686
7692
|
/**
|
|
7687
7693
|
* No description
|
|
7688
7694
|
*
|
|
@@ -7694,7 +7700,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7694
7700
|
* @response `201` `TaskComment` Created
|
|
7695
7701
|
* @response `404` `ProblemDetails` Not Found
|
|
7696
7702
|
*/
|
|
7697
|
-
createLoanTaskComment: (loanId: string, userLoanTaskId: string, data: TaskCommentRequest, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any>>;
|
|
7703
|
+
createLoanTaskComment: (loanId: string, userLoanTaskId: string, data: TaskCommentRequest, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any, {}>>;
|
|
7698
7704
|
/**
|
|
7699
7705
|
* No description
|
|
7700
7706
|
*
|
|
@@ -7706,7 +7712,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7706
7712
|
* @response `200` `TaskComment` Success
|
|
7707
7713
|
* @response `404` `ProblemDetails` Not Found
|
|
7708
7714
|
*/
|
|
7709
|
-
replaceLoanTaskComment: (loanId: string, userLoanTaskId: string, commentId: string, data: TaskCommentRequest, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any>>;
|
|
7715
|
+
replaceLoanTaskComment: (loanId: string, userLoanTaskId: string, commentId: string, data: TaskCommentRequest, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any, {}>>;
|
|
7710
7716
|
/**
|
|
7711
7717
|
* No description
|
|
7712
7718
|
*
|
|
@@ -7718,7 +7724,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7718
7724
|
* @response `204` `void` No Content
|
|
7719
7725
|
* @response `404` `ProblemDetails` Not Found
|
|
7720
7726
|
*/
|
|
7721
|
-
deleteLoanTaskComment: (loanId: string, userLoanTaskId: string, commentId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7727
|
+
deleteLoanTaskComment: (loanId: string, userLoanTaskId: string, commentId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7722
7728
|
/**
|
|
7723
7729
|
* No description
|
|
7724
7730
|
*
|
|
@@ -7736,7 +7742,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7736
7742
|
/** @format binary */
|
|
7737
7743
|
file?: File;
|
|
7738
7744
|
bucket?: string;
|
|
7739
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
|
|
7745
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
|
|
7740
7746
|
/**
|
|
7741
7747
|
* No description
|
|
7742
7748
|
*
|
|
@@ -7748,7 +7754,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7748
7754
|
* @response `204` `UserLoanTask` No Content
|
|
7749
7755
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7750
7756
|
*/
|
|
7751
|
-
createLoanTaskDocumentBucket: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
|
|
7757
|
+
createLoanTaskDocumentBucket: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
|
|
7752
7758
|
/**
|
|
7753
7759
|
* No description
|
|
7754
7760
|
*
|
|
@@ -7760,7 +7766,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7760
7766
|
* @response `200` `(UserLoanTask)[]` Success
|
|
7761
7767
|
* @response `404` `ProblemDetails` Not Found
|
|
7762
7768
|
*/
|
|
7763
|
-
getLoanTasks: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any>>;
|
|
7769
|
+
getLoanTasks: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any, {}>>;
|
|
7764
7770
|
/**
|
|
7765
7771
|
* No description
|
|
7766
7772
|
*
|
|
@@ -7772,7 +7778,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7772
7778
|
* @response `200` `UserLoanTask` Success
|
|
7773
7779
|
* @response `404` `ProblemDetails` Not Found
|
|
7774
7780
|
*/
|
|
7775
|
-
getLoanTask: (id: string, loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
|
|
7781
|
+
getLoanTask: (id: string, loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
|
|
7776
7782
|
/**
|
|
7777
7783
|
* @description Get the difference between the current loan tasks and the tasks generated by business rules
|
|
7778
7784
|
*
|
|
@@ -7784,7 +7790,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7784
7790
|
* @response `200` `(UserLoanTask)[]` Success
|
|
7785
7791
|
* @response `404` `ProblemDetails` Not Found
|
|
7786
7792
|
*/
|
|
7787
|
-
getLoanTaskDifference: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any>>;
|
|
7793
|
+
getLoanTaskDifference: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any, {}>>;
|
|
7788
7794
|
/**
|
|
7789
7795
|
* No description
|
|
7790
7796
|
*
|
|
@@ -7796,7 +7802,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7796
7802
|
* @response `201` `UserLoanTask` Created
|
|
7797
7803
|
* @response `404` `ProblemDetails` Not Found
|
|
7798
7804
|
*/
|
|
7799
|
-
createLoanTask: (loanId: string, taskId: string, data: UserLoanTaskRequest, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
|
|
7805
|
+
createLoanTask: (loanId: string, taskId: string, data: UserLoanTaskRequest, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
|
|
7800
7806
|
/**
|
|
7801
7807
|
* No description
|
|
7802
7808
|
*
|
|
@@ -7808,7 +7814,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7808
7814
|
* @response `201` `(UserLoanTask)[]` Created
|
|
7809
7815
|
* @response `404` `ProblemDetails` Not Found
|
|
7810
7816
|
*/
|
|
7811
|
-
importLoanTask: (loanId: string, data: ImportUserLoanTaskRequest[], params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any>>;
|
|
7817
|
+
importLoanTask: (loanId: string, data: ImportUserLoanTaskRequest[], params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any, {}>>;
|
|
7812
7818
|
/**
|
|
7813
7819
|
* No description
|
|
7814
7820
|
*
|
|
@@ -7820,7 +7826,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7820
7826
|
* @response `200` `UserLoanTask` Success
|
|
7821
7827
|
* @response `404` `ProblemDetails` Not Found
|
|
7822
7828
|
*/
|
|
7823
|
-
replaceLoanTask: (loanId: string, userLoanTaskId: string, data: UserLoanTaskUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
|
|
7829
|
+
replaceLoanTask: (loanId: string, userLoanTaskId: string, data: UserLoanTaskUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
|
|
7824
7830
|
/**
|
|
7825
7831
|
* No description
|
|
7826
7832
|
*
|
|
@@ -7832,7 +7838,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7832
7838
|
* @response `204` `void` No Content
|
|
7833
7839
|
* @response `404` `ProblemDetails` Not Found
|
|
7834
7840
|
*/
|
|
7835
|
-
deleteLoanTask: (loanId: string, userLoanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7841
|
+
deleteLoanTask: (loanId: string, userLoanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7836
7842
|
/**
|
|
7837
7843
|
* No description
|
|
7838
7844
|
*
|
|
@@ -7844,7 +7850,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7844
7850
|
* @response `204` `void` No Content
|
|
7845
7851
|
* @response `404` `ProblemDetails` Not Found
|
|
7846
7852
|
*/
|
|
7847
|
-
sendOutstandingLoanTaskNotification: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7853
|
+
sendOutstandingLoanTaskNotification: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7848
7854
|
/**
|
|
7849
7855
|
* No description
|
|
7850
7856
|
*
|
|
@@ -7857,7 +7863,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7857
7863
|
* @response `404` `ProblemDetails` Not Found
|
|
7858
7864
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7859
7865
|
*/
|
|
7860
|
-
createLoanTaskVerification: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
|
|
7866
|
+
createLoanTaskVerification: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
|
|
7861
7867
|
/**
|
|
7862
7868
|
* No description
|
|
7863
7869
|
*
|
|
@@ -7868,7 +7874,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7868
7874
|
* @secure
|
|
7869
7875
|
* @response `200` `(UserLoanConsent)[]` Success
|
|
7870
7876
|
*/
|
|
7871
|
-
getLoanUserConsents: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanConsent[], any>>;
|
|
7877
|
+
getLoanUserConsents: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanConsent[], any, {}>>;
|
|
7872
7878
|
/**
|
|
7873
7879
|
* No description
|
|
7874
7880
|
*
|
|
@@ -7879,7 +7885,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7879
7885
|
* @secure
|
|
7880
7886
|
* @response `200` `LoanUser` Success
|
|
7881
7887
|
*/
|
|
7882
|
-
getLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any>>;
|
|
7888
|
+
getLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any, {}>>;
|
|
7883
7889
|
/**
|
|
7884
7890
|
* No description
|
|
7885
7891
|
*
|
|
@@ -7890,7 +7896,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7890
7896
|
* @secure
|
|
7891
7897
|
* @response `201` `LoanUser` Created
|
|
7892
7898
|
*/
|
|
7893
|
-
addLoanUser: (loanId: string, userId: string, data: CreateUserLoan, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any>>;
|
|
7899
|
+
addLoanUser: (loanId: string, userId: string, data: CreateUserLoan, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any, {}>>;
|
|
7894
7900
|
/**
|
|
7895
7901
|
* No description
|
|
7896
7902
|
*
|
|
@@ -7901,7 +7907,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7901
7907
|
* @secure
|
|
7902
7908
|
* @response `204` `LoanUser` No Content
|
|
7903
7909
|
*/
|
|
7904
|
-
removeLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any>>;
|
|
7910
|
+
removeLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any, {}>>;
|
|
7905
7911
|
/**
|
|
7906
7912
|
* No description
|
|
7907
7913
|
*
|
|
@@ -7912,7 +7918,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7912
7918
|
* @secure
|
|
7913
7919
|
* @response `204` `void` No Content
|
|
7914
7920
|
*/
|
|
7915
|
-
sendLoanUserInviteReminderNotification: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7921
|
+
sendLoanUserInviteReminderNotification: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7916
7922
|
/**
|
|
7917
7923
|
* No description
|
|
7918
7924
|
*
|
|
@@ -7923,7 +7929,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7923
7929
|
* @secure
|
|
7924
7930
|
* @response `200` `(MilestoneConfiguration)[]` Success
|
|
7925
7931
|
*/
|
|
7926
|
-
getMilestones: (params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration[], any>>;
|
|
7932
|
+
getMilestones: (params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration[], any, {}>>;
|
|
7927
7933
|
/**
|
|
7928
7934
|
* No description
|
|
7929
7935
|
*
|
|
@@ -7935,7 +7941,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7935
7941
|
* @response `201` `MilestoneConfiguration` Created
|
|
7936
7942
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7937
7943
|
*/
|
|
7938
|
-
createMilestone: (data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any>>;
|
|
7944
|
+
createMilestone: (data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any, {}>>;
|
|
7939
7945
|
/**
|
|
7940
7946
|
* No description
|
|
7941
7947
|
*
|
|
@@ -7947,7 +7953,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7947
7953
|
* @response `200` `MilestoneConfiguration` Success
|
|
7948
7954
|
* @response `404` `Error` Not Found
|
|
7949
7955
|
*/
|
|
7950
|
-
getMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any>>;
|
|
7956
|
+
getMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any, {}>>;
|
|
7951
7957
|
/**
|
|
7952
7958
|
* No description
|
|
7953
7959
|
*
|
|
@@ -7960,7 +7966,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7960
7966
|
* @response `404` `Error` Not Found
|
|
7961
7967
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7962
7968
|
*/
|
|
7963
|
-
replaceMilestone: (id: string, data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any>>;
|
|
7969
|
+
replaceMilestone: (id: string, data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any, {}>>;
|
|
7964
7970
|
/**
|
|
7965
7971
|
* No description
|
|
7966
7972
|
*
|
|
@@ -7972,7 +7978,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7972
7978
|
* @response `204` `void` No Content
|
|
7973
7979
|
* @response `404` `Error` Not Found
|
|
7974
7980
|
*/
|
|
7975
|
-
deleteMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7981
|
+
deleteMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7976
7982
|
/**
|
|
7977
7983
|
* No description
|
|
7978
7984
|
*
|
|
@@ -7984,7 +7990,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7984
7990
|
* @response `200` `MonthlyPaymentCalculator` Success
|
|
7985
7991
|
* @response `422` `ProblemDetails` Client Error
|
|
7986
7992
|
*/
|
|
7987
|
-
calculateMortgageMonthlyPayment: (data: MonthlyPaymentCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<MonthlyPaymentCalculator, any>>;
|
|
7993
|
+
calculateMortgageMonthlyPayment: (data: MonthlyPaymentCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<MonthlyPaymentCalculator, any, {}>>;
|
|
7988
7994
|
/**
|
|
7989
7995
|
* No description
|
|
7990
7996
|
*
|
|
@@ -7996,7 +8002,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7996
8002
|
* @response `200` `AffordabilityCalculator` Success
|
|
7997
8003
|
* @response `422` `ProblemDetails` Client Error
|
|
7998
8004
|
*/
|
|
7999
|
-
calculateMortgageAffordability: (data: AffordabilityCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<AffordabilityCalculator, any>>;
|
|
8005
|
+
calculateMortgageAffordability: (data: AffordabilityCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<AffordabilityCalculator, any, {}>>;
|
|
8000
8006
|
/**
|
|
8001
8007
|
* No description
|
|
8002
8008
|
*
|
|
@@ -8008,7 +8014,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8008
8014
|
* @response `200` `LoanComparisonCalculator` Success
|
|
8009
8015
|
* @response `422` `ProblemDetails` Client Error
|
|
8010
8016
|
*/
|
|
8011
|
-
calculateMortgageLoanComparison: (data: LoanComparisonCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<LoanComparisonCalculator, any>>;
|
|
8017
|
+
calculateMortgageLoanComparison: (data: LoanComparisonCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<LoanComparisonCalculator, any, {}>>;
|
|
8012
8018
|
/**
|
|
8013
8019
|
* No description
|
|
8014
8020
|
*
|
|
@@ -8020,7 +8026,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8020
8026
|
* @response `200` `RefinanceCalculator` Success
|
|
8021
8027
|
* @response `422` `ProblemDetails` Client Error
|
|
8022
8028
|
*/
|
|
8023
|
-
calculateMortgageRefinance: (data: RefinanceCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<RefinanceCalculator, any>>;
|
|
8029
|
+
calculateMortgageRefinance: (data: RefinanceCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<RefinanceCalculator, any, {}>>;
|
|
8024
8030
|
/**
|
|
8025
8031
|
* No description
|
|
8026
8032
|
*
|
|
@@ -8032,7 +8038,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8032
8038
|
* @response `200` `void` Success
|
|
8033
8039
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8034
8040
|
*/
|
|
8035
|
-
sendNotificationForLoan: (data: SendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8041
|
+
sendNotificationForLoan: (data: SendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8036
8042
|
/**
|
|
8037
8043
|
* No description
|
|
8038
8044
|
*
|
|
@@ -8044,7 +8050,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8044
8050
|
* @response `200` `void` Success
|
|
8045
8051
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8046
8052
|
*/
|
|
8047
|
-
sendTestNotificationForLoan: (data: TestSendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8053
|
+
sendTestNotificationForLoan: (data: TestSendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8048
8054
|
/**
|
|
8049
8055
|
* No description
|
|
8050
8056
|
*
|
|
@@ -8057,7 +8063,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8057
8063
|
*/
|
|
8058
8064
|
getNotificationTemplates: (query?: {
|
|
8059
8065
|
showAll?: boolean;
|
|
8060
|
-
}, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateBase[], any>>;
|
|
8066
|
+
}, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateBase[], any, {}>>;
|
|
8061
8067
|
/**
|
|
8062
8068
|
* No description
|
|
8063
8069
|
*
|
|
@@ -8069,7 +8075,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8069
8075
|
* @response `201` `NotificationTemplate` Created
|
|
8070
8076
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8071
8077
|
*/
|
|
8072
|
-
createNotificationTemplate: (data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
|
|
8078
|
+
createNotificationTemplate: (data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any, {}>>;
|
|
8073
8079
|
/**
|
|
8074
8080
|
* No description
|
|
8075
8081
|
*
|
|
@@ -8080,7 +8086,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8080
8086
|
* @secure
|
|
8081
8087
|
* @response `200` `NotificationTemplate` Success
|
|
8082
8088
|
*/
|
|
8083
|
-
getNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
|
|
8089
|
+
getNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any, {}>>;
|
|
8084
8090
|
/**
|
|
8085
8091
|
* No description
|
|
8086
8092
|
*
|
|
@@ -8092,7 +8098,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8092
8098
|
* @response `200` `NotificationTemplate` Success
|
|
8093
8099
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8094
8100
|
*/
|
|
8095
|
-
replaceNotificationTemplate: (id: string, data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
|
|
8101
|
+
replaceNotificationTemplate: (id: string, data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any, {}>>;
|
|
8096
8102
|
/**
|
|
8097
8103
|
* No description
|
|
8098
8104
|
*
|
|
@@ -8103,7 +8109,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8103
8109
|
* @secure
|
|
8104
8110
|
* @response `204` `void` No Content
|
|
8105
8111
|
*/
|
|
8106
|
-
deleteNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8112
|
+
deleteNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8107
8113
|
/**
|
|
8108
8114
|
* No description
|
|
8109
8115
|
*
|
|
@@ -8114,7 +8120,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8114
8120
|
* @secure
|
|
8115
8121
|
* @response `200` `NotificationTemplate` Success
|
|
8116
8122
|
*/
|
|
8117
|
-
restoreNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
|
|
8123
|
+
restoreNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any, {}>>;
|
|
8118
8124
|
/**
|
|
8119
8125
|
* No description
|
|
8120
8126
|
*
|
|
@@ -8125,7 +8131,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8125
8131
|
* @secure
|
|
8126
8132
|
* @response `200` `(NotificationTemplateVersion)[]` Success
|
|
8127
8133
|
*/
|
|
8128
|
-
getNotificationTemplateVersions: (notificationId: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion[], any>>;
|
|
8134
|
+
getNotificationTemplateVersions: (notificationId: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion[], any, {}>>;
|
|
8129
8135
|
/**
|
|
8130
8136
|
* No description
|
|
8131
8137
|
*
|
|
@@ -8136,7 +8142,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8136
8142
|
* @secure
|
|
8137
8143
|
* @response `200` `NotificationTemplateVersion` Success
|
|
8138
8144
|
*/
|
|
8139
|
-
createNotificationTemplateVersion: (notificationId: string, data: NotificationTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
|
|
8145
|
+
createNotificationTemplateVersion: (notificationId: string, data: NotificationTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any, {}>>;
|
|
8140
8146
|
/**
|
|
8141
8147
|
* No description
|
|
8142
8148
|
*
|
|
@@ -8147,7 +8153,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8147
8153
|
* @secure
|
|
8148
8154
|
* @response `200` `NotificationTemplateVersion` Success
|
|
8149
8155
|
*/
|
|
8150
|
-
getNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
|
|
8156
|
+
getNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any, {}>>;
|
|
8151
8157
|
/**
|
|
8152
8158
|
* No description
|
|
8153
8159
|
*
|
|
@@ -8158,7 +8164,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8158
8164
|
* @secure
|
|
8159
8165
|
* @response `200` `NotificationTemplateVersion` Success
|
|
8160
8166
|
*/
|
|
8161
|
-
replaceNotificationTemplateVersion: (notificationId: string, id: string, data: NotificationTemplateVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
|
|
8167
|
+
replaceNotificationTemplateVersion: (notificationId: string, id: string, data: NotificationTemplateVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any, {}>>;
|
|
8162
8168
|
/**
|
|
8163
8169
|
* No description
|
|
8164
8170
|
*
|
|
@@ -8169,7 +8175,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8169
8175
|
* @secure
|
|
8170
8176
|
* @response `200` `NotificationTemplateVersion` Success
|
|
8171
8177
|
*/
|
|
8172
|
-
deleteNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
|
|
8178
|
+
deleteNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any, {}>>;
|
|
8173
8179
|
/**
|
|
8174
8180
|
* No description
|
|
8175
8181
|
*
|
|
@@ -8190,7 +8196,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8190
8196
|
pageNumber?: number;
|
|
8191
8197
|
sortBy?: string;
|
|
8192
8198
|
sortDirection?: string;
|
|
8193
|
-
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any>>;
|
|
8199
|
+
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any, {}>>;
|
|
8194
8200
|
/**
|
|
8195
8201
|
* No description
|
|
8196
8202
|
*
|
|
@@ -8208,7 +8214,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8208
8214
|
pageNumber?: number;
|
|
8209
8215
|
sortBy?: string;
|
|
8210
8216
|
sortDirection?: string;
|
|
8211
|
-
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any>>;
|
|
8217
|
+
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any, {}>>;
|
|
8212
8218
|
/**
|
|
8213
8219
|
* No description
|
|
8214
8220
|
*
|
|
@@ -8219,7 +8225,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8219
8225
|
* @secure
|
|
8220
8226
|
* @response `200` `BranchUser` Success
|
|
8221
8227
|
*/
|
|
8222
|
-
getPartner: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any>>;
|
|
8228
|
+
getPartner: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any, {}>>;
|
|
8223
8229
|
/**
|
|
8224
8230
|
* No description
|
|
8225
8231
|
*
|
|
@@ -8231,7 +8237,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8231
8237
|
* @response `200` `SiteConfiguration` Success
|
|
8232
8238
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8233
8239
|
*/
|
|
8234
|
-
createPartnerSiteConfiguration: (realtorId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
8240
|
+
createPartnerSiteConfiguration: (realtorId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
8235
8241
|
/**
|
|
8236
8242
|
* No description
|
|
8237
8243
|
*
|
|
@@ -8242,7 +8248,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8242
8248
|
* @secure
|
|
8243
8249
|
* @response `200` `SiteConfigurationWithInherited` Success
|
|
8244
8250
|
*/
|
|
8245
|
-
getPartnerSiteConfiguration: (realtorId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
|
|
8251
|
+
getPartnerSiteConfiguration: (realtorId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any, {}>>;
|
|
8246
8252
|
/**
|
|
8247
8253
|
* No description
|
|
8248
8254
|
*
|
|
@@ -8256,7 +8262,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8256
8262
|
*/
|
|
8257
8263
|
replacePartnerSiteConfiguration: (realtorId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
|
|
8258
8264
|
applyToChildren?: boolean;
|
|
8259
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
8265
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
8260
8266
|
/**
|
|
8261
8267
|
* No description
|
|
8262
8268
|
*
|
|
@@ -8267,7 +8273,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8267
8273
|
* @secure
|
|
8268
8274
|
* @response `200` `SiteConfiguration` Success
|
|
8269
8275
|
*/
|
|
8270
|
-
getSiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
8276
|
+
getSiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
8271
8277
|
/**
|
|
8272
8278
|
* No description
|
|
8273
8279
|
*
|
|
@@ -8280,7 +8286,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8280
8286
|
* @response `200` `SiteConfigurationByUrl` Success
|
|
8281
8287
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8282
8288
|
*/
|
|
8283
|
-
searchSiteConfigurationByUrl: (data: GetSiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationByUrl, any>>;
|
|
8289
|
+
searchSiteConfigurationByUrl: (data: GetSiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationByUrl, any, {}>>;
|
|
8284
8290
|
/**
|
|
8285
8291
|
* No description
|
|
8286
8292
|
*
|
|
@@ -8294,7 +8300,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8294
8300
|
*/
|
|
8295
8301
|
getSiteConfigurationByUrl: (query?: {
|
|
8296
8302
|
url?: string;
|
|
8297
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationByUrl, any>>;
|
|
8303
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationByUrl, any, {}>>;
|
|
8298
8304
|
/**
|
|
8299
8305
|
* No description
|
|
8300
8306
|
*
|
|
@@ -8307,7 +8313,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8307
8313
|
* @response `200` `SiteConfiguration` Success
|
|
8308
8314
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8309
8315
|
*/
|
|
8310
|
-
searchSiteConfigurationByLoanOfficerUser: (data: GetSiteConfigurationByLOUserIDRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
8316
|
+
searchSiteConfigurationByLoanOfficerUser: (data: GetSiteConfigurationByLOUserIDRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
8311
8317
|
/**
|
|
8312
8318
|
* No description
|
|
8313
8319
|
*
|
|
@@ -8319,7 +8325,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8319
8325
|
* @response `200` `SiteConfiguration` Success
|
|
8320
8326
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8321
8327
|
*/
|
|
8322
|
-
getSiteConfigurationByLoanOfficerUser: (loUserId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
8328
|
+
getSiteConfigurationByLoanOfficerUser: (loUserId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
8323
8329
|
/**
|
|
8324
8330
|
* No description
|
|
8325
8331
|
*
|
|
@@ -8338,7 +8344,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8338
8344
|
pageNumber?: number;
|
|
8339
8345
|
sortBy?: string;
|
|
8340
8346
|
sortDirection?: string;
|
|
8341
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationSummaryPaginated, any>>;
|
|
8347
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationSummaryPaginated, any, {}>>;
|
|
8342
8348
|
/**
|
|
8343
8349
|
* No description
|
|
8344
8350
|
*
|
|
@@ -8349,7 +8355,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8349
8355
|
* @secure
|
|
8350
8356
|
* @response `200` `(AdminAccessGetForms)[]` Success
|
|
8351
8357
|
*/
|
|
8352
|
-
getFormsBySiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms[], any>>;
|
|
8358
|
+
getFormsBySiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms[], any, {}>>;
|
|
8353
8359
|
/**
|
|
8354
8360
|
* No description
|
|
8355
8361
|
*
|
|
@@ -8361,7 +8367,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8361
8367
|
* @response `200` `File` Success
|
|
8362
8368
|
* @response `404` `ProblemDetails` Not Found
|
|
8363
8369
|
*/
|
|
8364
|
-
getSamlMetadata: (sSoIntegration: GetSamlMetadataParamsEnum, ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
|
|
8370
|
+
getSamlMetadata: (sSoIntegration: GetSamlMetadataParamsEnum, ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
|
|
8365
8371
|
/**
|
|
8366
8372
|
* No description
|
|
8367
8373
|
*
|
|
@@ -8372,7 +8378,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8372
8378
|
* @secure
|
|
8373
8379
|
* @response `200` `File` Success
|
|
8374
8380
|
*/
|
|
8375
|
-
createOrReplaceSamlMetadata: (sSoIntegration: CreateOrReplaceSamlMetadataParamsEnum, ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
|
|
8381
|
+
createOrReplaceSamlMetadata: (sSoIntegration: CreateOrReplaceSamlMetadataParamsEnum, ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
|
|
8376
8382
|
/**
|
|
8377
8383
|
* No description
|
|
8378
8384
|
*
|
|
@@ -8383,7 +8389,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8383
8389
|
* @secure
|
|
8384
8390
|
* @response `200` `(SiteConfigurationForm)[]` Success
|
|
8385
8391
|
*/
|
|
8386
|
-
getWorkflowSiteConfigurations: (workflowId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm[], any>>;
|
|
8392
|
+
getWorkflowSiteConfigurations: (workflowId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm[], any, {}>>;
|
|
8387
8393
|
/**
|
|
8388
8394
|
* No description
|
|
8389
8395
|
*
|
|
@@ -8395,7 +8401,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8395
8401
|
* @response `200` `SiteConfigurationForm` Success
|
|
8396
8402
|
* @response `404` `ProblemDetails` Not Found
|
|
8397
8403
|
*/
|
|
8398
|
-
getWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any>>;
|
|
8404
|
+
getWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any, {}>>;
|
|
8399
8405
|
/**
|
|
8400
8406
|
* No description
|
|
8401
8407
|
*
|
|
@@ -8408,7 +8414,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8408
8414
|
* @response `409` `ProblemDetails` Conflict
|
|
8409
8415
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8410
8416
|
*/
|
|
8411
|
-
createWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any>>;
|
|
8417
|
+
createWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any, {}>>;
|
|
8412
8418
|
/**
|
|
8413
8419
|
* No description
|
|
8414
8420
|
*
|
|
@@ -8419,7 +8425,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8419
8425
|
* @secure
|
|
8420
8426
|
* @response `204` `void` No Content
|
|
8421
8427
|
*/
|
|
8422
|
-
deleteWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8428
|
+
deleteWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8423
8429
|
/**
|
|
8424
8430
|
* No description
|
|
8425
8431
|
*
|
|
@@ -8430,7 +8436,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8430
8436
|
* @secure
|
|
8431
8437
|
* @response `200` `GetForm` Success
|
|
8432
8438
|
*/
|
|
8433
|
-
getFormBySiteConfigurationSlug: (data: GetSiteFormRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any>>;
|
|
8439
|
+
getFormBySiteConfigurationSlug: (data: GetSiteFormRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any, {}>>;
|
|
8434
8440
|
/**
|
|
8435
8441
|
* No description
|
|
8436
8442
|
*
|
|
@@ -8444,7 +8450,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8444
8450
|
getSurveysByUsers: (query?: {
|
|
8445
8451
|
/** @format int32 */
|
|
8446
8452
|
limit?: number;
|
|
8447
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SocialSurveyRecord[], any>>;
|
|
8453
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SocialSurveyRecord[], any, {}>>;
|
|
8448
8454
|
/**
|
|
8449
8455
|
* No description
|
|
8450
8456
|
*
|
|
@@ -8456,7 +8462,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8456
8462
|
* @response `200` `(SocialSurveyRecord)[]` Success
|
|
8457
8463
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8458
8464
|
*/
|
|
8459
|
-
getSurveysByUser: (data: SurveyEmailRequest, params?: RequestParams) => Promise<AxiosResponse<SocialSurveyRecord[], any>>;
|
|
8465
|
+
getSurveysByUser: (data: SurveyEmailRequest, params?: RequestParams) => Promise<AxiosResponse<SocialSurveyRecord[], any, {}>>;
|
|
8460
8466
|
/**
|
|
8461
8467
|
* No description
|
|
8462
8468
|
*
|
|
@@ -8475,7 +8481,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8475
8481
|
pageNumber?: number;
|
|
8476
8482
|
sortBy?: string;
|
|
8477
8483
|
sortDirection?: string;
|
|
8478
|
-
}, params?: RequestParams) => Promise<AxiosResponse<Task, any>>;
|
|
8484
|
+
}, params?: RequestParams) => Promise<AxiosResponse<Task, any, {}>>;
|
|
8479
8485
|
/**
|
|
8480
8486
|
* No description
|
|
8481
8487
|
*
|
|
@@ -8486,7 +8492,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8486
8492
|
* @secure
|
|
8487
8493
|
* @response `201` `Task` Created
|
|
8488
8494
|
*/
|
|
8489
|
-
createTask: (data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<Task, any>>;
|
|
8495
|
+
createTask: (data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<Task, any, {}>>;
|
|
8490
8496
|
/**
|
|
8491
8497
|
* No description
|
|
8492
8498
|
*
|
|
@@ -8498,7 +8504,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8498
8504
|
* @response `200` `Task` Success
|
|
8499
8505
|
* @response `404` `ProblemDetails` Not Found
|
|
8500
8506
|
*/
|
|
8501
|
-
getTask: (id: string, params?: RequestParams) => Promise<AxiosResponse<Task, any>>;
|
|
8507
|
+
getTask: (id: string, params?: RequestParams) => Promise<AxiosResponse<Task, any, {}>>;
|
|
8502
8508
|
/**
|
|
8503
8509
|
* No description
|
|
8504
8510
|
*
|
|
@@ -8510,7 +8516,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8510
8516
|
* @response `200` `void` Success
|
|
8511
8517
|
* @response `404` `ProblemDetails` Not Found
|
|
8512
8518
|
*/
|
|
8513
|
-
replaceTask: (id: string, data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8519
|
+
replaceTask: (id: string, data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8514
8520
|
/**
|
|
8515
8521
|
* No description
|
|
8516
8522
|
*
|
|
@@ -8522,7 +8528,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8522
8528
|
* @response `204` `void` No Content
|
|
8523
8529
|
* @response `404` `ProblemDetails` Not Found
|
|
8524
8530
|
*/
|
|
8525
|
-
deleteTask: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8531
|
+
deleteTask: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8526
8532
|
/**
|
|
8527
8533
|
* No description
|
|
8528
8534
|
*
|
|
@@ -8540,7 +8546,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8540
8546
|
pageNumber?: number;
|
|
8541
8547
|
sortBy?: string;
|
|
8542
8548
|
sortDirection?: string;
|
|
8543
|
-
}, params?: RequestParams) => Promise<AxiosResponse<TaskPaginated, any>>;
|
|
8549
|
+
}, params?: RequestParams) => Promise<AxiosResponse<TaskPaginated, any, {}>>;
|
|
8544
8550
|
/**
|
|
8545
8551
|
* No description
|
|
8546
8552
|
*
|
|
@@ -8550,7 +8556,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8550
8556
|
* @secure
|
|
8551
8557
|
* @response `200` `void` Success
|
|
8552
8558
|
*/
|
|
8553
|
-
integrationsLosLoansCreate: (data: LosLoanCreationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8559
|
+
integrationsLosLoansCreate: (data: LosLoanCreationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8554
8560
|
/**
|
|
8555
8561
|
* No description
|
|
8556
8562
|
*
|
|
@@ -8567,7 +8573,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8567
8573
|
pageNumber: number;
|
|
8568
8574
|
sortBy?: string;
|
|
8569
8575
|
sortDirection?: string;
|
|
8570
|
-
}, data: EncompassLogSearchCriteria, params?: RequestParams) => Promise<AxiosResponse<EncompassRequestLogPaginated, any>>;
|
|
8576
|
+
}, data: EncompassLogSearchCriteria, params?: RequestParams) => Promise<AxiosResponse<EncompassRequestLogPaginated, any, {}>>;
|
|
8571
8577
|
/**
|
|
8572
8578
|
* No description
|
|
8573
8579
|
*
|
|
@@ -8579,7 +8585,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8579
8585
|
* @response `200` `UsageReport` Success
|
|
8580
8586
|
* @response `404` `ProblemDetails` Not Found
|
|
8581
8587
|
*/
|
|
8582
|
-
getUsageReportById: (id: string, params?: RequestParams) => Promise<AxiosResponse<UsageReport, any>>;
|
|
8588
|
+
getUsageReportById: (id: string, params?: RequestParams) => Promise<AxiosResponse<UsageReport, any, {}>>;
|
|
8583
8589
|
/**
|
|
8584
8590
|
* No description
|
|
8585
8591
|
*
|
|
@@ -8596,7 +8602,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8596
8602
|
month?: number;
|
|
8597
8603
|
/** @format int32 */
|
|
8598
8604
|
year?: number;
|
|
8599
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UsageReport[], any>>;
|
|
8605
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UsageReport[], any, {}>>;
|
|
8600
8606
|
/**
|
|
8601
8607
|
* No description
|
|
8602
8608
|
*
|
|
@@ -8613,7 +8619,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8613
8619
|
month?: number;
|
|
8614
8620
|
/** @format int32 */
|
|
8615
8621
|
year?: number;
|
|
8616
|
-
}, params?: RequestParams) => Promise<AxiosResponse<any, any>>;
|
|
8622
|
+
}, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
8617
8623
|
/**
|
|
8618
8624
|
* No description
|
|
8619
8625
|
*
|
|
@@ -8624,7 +8630,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8624
8630
|
* @secure
|
|
8625
8631
|
* @response `200` `UsageReportDashboard` Success
|
|
8626
8632
|
*/
|
|
8627
|
-
getUsageReportDashboard: (params?: RequestParams) => Promise<AxiosResponse<UsageReportDashboard, any>>;
|
|
8633
|
+
getUsageReportDashboard: (params?: RequestParams) => Promise<AxiosResponse<UsageReportDashboard, any, {}>>;
|
|
8628
8634
|
/**
|
|
8629
8635
|
* No description
|
|
8630
8636
|
*
|
|
@@ -8636,7 +8642,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8636
8642
|
* @response `200` `UsageReportExecution` Success
|
|
8637
8643
|
* @response `404` `ProblemDetails` Not Found
|
|
8638
8644
|
*/
|
|
8639
|
-
getUsageReportExecution: (correlationId: string, params?: RequestParams) => Promise<AxiosResponse<UsageReportExecution, any>>;
|
|
8645
|
+
getUsageReportExecution: (correlationId: string, params?: RequestParams) => Promise<AxiosResponse<UsageReportExecution, any, {}>>;
|
|
8640
8646
|
/**
|
|
8641
8647
|
* No description
|
|
8642
8648
|
*
|
|
@@ -8653,7 +8659,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8653
8659
|
month?: number;
|
|
8654
8660
|
/** @format int32 */
|
|
8655
8661
|
year?: number;
|
|
8656
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UsageReportExecution[], any>>;
|
|
8662
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UsageReportExecution[], any, {}>>;
|
|
8657
8663
|
/**
|
|
8658
8664
|
* No description
|
|
8659
8665
|
*
|
|
@@ -8665,7 +8671,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8665
8671
|
* @response `201` `UserDevice` Created
|
|
8666
8672
|
* @response `400` `ProblemDetails` Bad Request
|
|
8667
8673
|
*/
|
|
8668
|
-
createUserDevice: (data: CreateUserDeviceRequest, params?: RequestParams) => Promise<AxiosResponse<UserDevice, any>>;
|
|
8674
|
+
createUserDevice: (data: CreateUserDeviceRequest, params?: RequestParams) => Promise<AxiosResponse<UserDevice, any, {}>>;
|
|
8669
8675
|
/**
|
|
8670
8676
|
* No description
|
|
8671
8677
|
*
|
|
@@ -8677,7 +8683,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8677
8683
|
* @response `204` `void` No Content
|
|
8678
8684
|
* @response `404` `ProblemDetails` Not Found
|
|
8679
8685
|
*/
|
|
8680
|
-
deleteUserDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8686
|
+
deleteUserDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8681
8687
|
/**
|
|
8682
8688
|
* No description
|
|
8683
8689
|
*
|
|
@@ -8695,7 +8701,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8695
8701
|
pageNumber?: number;
|
|
8696
8702
|
sortBy?: string;
|
|
8697
8703
|
sortDirection?: string;
|
|
8698
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UserDraftPaginated, any>>;
|
|
8704
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UserDraftPaginated, any, {}>>;
|
|
8699
8705
|
/**
|
|
8700
8706
|
* No description
|
|
8701
8707
|
*
|
|
@@ -8706,7 +8712,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8706
8712
|
* @secure
|
|
8707
8713
|
* @response `200` `UserDraft` Success
|
|
8708
8714
|
*/
|
|
8709
|
-
getDraftUser: (draftId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<UserDraft, any>>;
|
|
8715
|
+
getDraftUser: (draftId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<UserDraft, any, {}>>;
|
|
8710
8716
|
/**
|
|
8711
8717
|
* No description
|
|
8712
8718
|
*
|
|
@@ -8717,7 +8723,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8717
8723
|
* @secure
|
|
8718
8724
|
* @response `200` `UserDraft` Success
|
|
8719
8725
|
*/
|
|
8720
|
-
addDraftUsers: (draftId: string, userId: string, data: CreateUserDraft, params?: RequestParams) => Promise<AxiosResponse<UserDraft, any>>;
|
|
8726
|
+
addDraftUsers: (draftId: string, userId: string, data: CreateUserDraft, params?: RequestParams) => Promise<AxiosResponse<UserDraft, any, {}>>;
|
|
8721
8727
|
/**
|
|
8722
8728
|
* No description
|
|
8723
8729
|
*
|
|
@@ -8728,7 +8734,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8728
8734
|
* @secure
|
|
8729
8735
|
* @response `204` `void` No Content
|
|
8730
8736
|
*/
|
|
8731
|
-
deleteDraftUser: (draftId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8737
|
+
deleteDraftUser: (draftId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8732
8738
|
/**
|
|
8733
8739
|
* No description
|
|
8734
8740
|
*
|
|
@@ -8739,7 +8745,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8739
8745
|
* @secure
|
|
8740
8746
|
* @response `200` `(UserGroupAccessScope)[]` Success
|
|
8741
8747
|
*/
|
|
8742
|
-
getUserGroupAccessScopes: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope[], any>>;
|
|
8748
|
+
getUserGroupAccessScopes: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope[], any, {}>>;
|
|
8743
8749
|
/**
|
|
8744
8750
|
* No description
|
|
8745
8751
|
*
|
|
@@ -8750,7 +8756,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8750
8756
|
* @secure
|
|
8751
8757
|
* @response `200` `UserGroupAccessScope` Success
|
|
8752
8758
|
*/
|
|
8753
|
-
createUserGroupAccessScope: (groupId: string, data: CreateAccessScopeRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope, any>>;
|
|
8759
|
+
createUserGroupAccessScope: (groupId: string, data: CreateAccessScopeRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope, any, {}>>;
|
|
8754
8760
|
/**
|
|
8755
8761
|
* No description
|
|
8756
8762
|
*
|
|
@@ -8761,7 +8767,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8761
8767
|
* @secure
|
|
8762
8768
|
* @response `204` `void` No Content
|
|
8763
8769
|
*/
|
|
8764
|
-
deleteUserGroupAccessScope: (groupId: string, scopeId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8770
|
+
deleteUserGroupAccessScope: (groupId: string, scopeId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8765
8771
|
/**
|
|
8766
8772
|
* No description
|
|
8767
8773
|
*
|
|
@@ -8772,7 +8778,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8772
8778
|
* @secure
|
|
8773
8779
|
* @response `200` `(UserGroupMember)[]` Success
|
|
8774
8780
|
*/
|
|
8775
|
-
getUserGroupMembers: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupMember[], any>>;
|
|
8781
|
+
getUserGroupMembers: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupMember[], any, {}>>;
|
|
8776
8782
|
/**
|
|
8777
8783
|
* No description
|
|
8778
8784
|
*
|
|
@@ -8786,7 +8792,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8786
8792
|
createUserGroupMember: (groupId: string, data: CreateGroupMemberRequest, query?: {
|
|
8787
8793
|
/** @format uuid */
|
|
8788
8794
|
userId?: string;
|
|
8789
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UserGroupMember, any>>;
|
|
8795
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UserGroupMember, any, {}>>;
|
|
8790
8796
|
/**
|
|
8791
8797
|
* No description
|
|
8792
8798
|
*
|
|
@@ -8797,7 +8803,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8797
8803
|
* @secure
|
|
8798
8804
|
* @response `204` `void` No Content
|
|
8799
8805
|
*/
|
|
8800
|
-
deleteUserGroupMember: (groupId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8806
|
+
deleteUserGroupMember: (groupId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8801
8807
|
/**
|
|
8802
8808
|
* No description
|
|
8803
8809
|
*
|
|
@@ -8816,7 +8822,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8816
8822
|
pageNumber?: number;
|
|
8817
8823
|
sortBy?: string;
|
|
8818
8824
|
sortDirection?: string;
|
|
8819
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UserGroupPaginated, any>>;
|
|
8825
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UserGroupPaginated, any, {}>>;
|
|
8820
8826
|
/**
|
|
8821
8827
|
* No description
|
|
8822
8828
|
*
|
|
@@ -8827,7 +8833,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8827
8833
|
* @secure
|
|
8828
8834
|
* @response `200` `UserGroup` Success
|
|
8829
8835
|
*/
|
|
8830
|
-
getUserGroup: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any>>;
|
|
8836
|
+
getUserGroup: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any, {}>>;
|
|
8831
8837
|
/**
|
|
8832
8838
|
* No description
|
|
8833
8839
|
*
|
|
@@ -8838,7 +8844,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8838
8844
|
* @secure
|
|
8839
8845
|
* @response `200` `UserGroup` Success
|
|
8840
8846
|
*/
|
|
8841
|
-
updateUserGroup: (groupId: string, data: UpdateUserGroupRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any>>;
|
|
8847
|
+
updateUserGroup: (groupId: string, data: UpdateUserGroupRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any, {}>>;
|
|
8842
8848
|
/**
|
|
8843
8849
|
* No description
|
|
8844
8850
|
*
|
|
@@ -8849,7 +8855,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8849
8855
|
* @secure
|
|
8850
8856
|
* @response `204` `void` No Content
|
|
8851
8857
|
*/
|
|
8852
|
-
deleteUserGroup: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8858
|
+
deleteUserGroup: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8853
8859
|
/**
|
|
8854
8860
|
* No description
|
|
8855
8861
|
*
|
|
@@ -8860,7 +8866,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8860
8866
|
* @secure
|
|
8861
8867
|
* @response `201` `UserGroup` Created
|
|
8862
8868
|
*/
|
|
8863
|
-
createUserGroup: (data: CreateUserGroupRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any>>;
|
|
8869
|
+
createUserGroup: (data: CreateUserGroupRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any, {}>>;
|
|
8864
8870
|
/**
|
|
8865
8871
|
* No description
|
|
8866
8872
|
*
|
|
@@ -8873,7 +8879,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8873
8879
|
* @response `404` `Error` Not Found
|
|
8874
8880
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8875
8881
|
*/
|
|
8876
|
-
requestImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8882
|
+
requestImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8877
8883
|
/**
|
|
8878
8884
|
* No description
|
|
8879
8885
|
*
|
|
@@ -8886,7 +8892,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8886
8892
|
* @response `404` `Error` Not Found
|
|
8887
8893
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8888
8894
|
*/
|
|
8889
|
-
allowImpersonation: (data: AllowImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8895
|
+
allowImpersonation: (data: AllowImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8890
8896
|
/**
|
|
8891
8897
|
* No description
|
|
8892
8898
|
*
|
|
@@ -8899,7 +8905,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8899
8905
|
* @response `404` `Error` Not Found
|
|
8900
8906
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8901
8907
|
*/
|
|
8902
|
-
allowImpersonationWithGuid: (allowToken: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8908
|
+
allowImpersonationWithGuid: (allowToken: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8903
8909
|
/**
|
|
8904
8910
|
* No description
|
|
8905
8911
|
*
|
|
@@ -8911,7 +8917,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8911
8917
|
* @response `204` `void` No Content
|
|
8912
8918
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8913
8919
|
*/
|
|
8914
|
-
beginImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8920
|
+
beginImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8915
8921
|
/**
|
|
8916
8922
|
* No description
|
|
8917
8923
|
*
|
|
@@ -8923,7 +8929,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8923
8929
|
* @response `204` `void` No Content
|
|
8924
8930
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8925
8931
|
*/
|
|
8926
|
-
stopImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8932
|
+
stopImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8927
8933
|
/**
|
|
8928
8934
|
* No description
|
|
8929
8935
|
*
|
|
@@ -8936,7 +8942,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8936
8942
|
* @response `404` `Error` Not Found
|
|
8937
8943
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8938
8944
|
*/
|
|
8939
|
-
forceImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8945
|
+
forceImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8940
8946
|
/**
|
|
8941
8947
|
* No description
|
|
8942
8948
|
*
|
|
@@ -8948,7 +8954,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8948
8954
|
* @response `204` `void` No Content
|
|
8949
8955
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8950
8956
|
*/
|
|
8951
|
-
extendImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8957
|
+
extendImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8952
8958
|
/**
|
|
8953
8959
|
* No description
|
|
8954
8960
|
*
|
|
@@ -8960,7 +8966,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8960
8966
|
* @response `204` `void` No Content
|
|
8961
8967
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8962
8968
|
*/
|
|
8963
|
-
inviteUser: (data: CreateInviteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8969
|
+
inviteUser: (data: CreateInviteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8964
8970
|
/**
|
|
8965
8971
|
* No description
|
|
8966
8972
|
*
|
|
@@ -8973,7 +8979,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8973
8979
|
* @response `401` `UnprocessableEntity` Unauthorized
|
|
8974
8980
|
* @response `404` `UnprocessableEntity` Not Found
|
|
8975
8981
|
*/
|
|
8976
|
-
resendInviteNotification: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8982
|
+
resendInviteNotification: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8977
8983
|
/**
|
|
8978
8984
|
* No description
|
|
8979
8985
|
*
|
|
@@ -8985,7 +8991,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8985
8991
|
* @response `200` `Invite` Success
|
|
8986
8992
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8987
8993
|
*/
|
|
8988
|
-
verifyUserInvite: (token: string, params?: RequestParams) => Promise<AxiosResponse<Invite, any>>;
|
|
8994
|
+
verifyUserInvite: (token: string, params?: RequestParams) => Promise<AxiosResponse<Invite, any, {}>>;
|
|
8989
8995
|
/**
|
|
8990
8996
|
* No description
|
|
8991
8997
|
*
|
|
@@ -8996,7 +9002,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8996
9002
|
* @secure
|
|
8997
9003
|
* @response `200` `(UserRelation)[]` Success
|
|
8998
9004
|
*/
|
|
8999
|
-
getUserRelations: (userId: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation[], any>>;
|
|
9005
|
+
getUserRelations: (userId: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation[], any, {}>>;
|
|
9000
9006
|
/**
|
|
9001
9007
|
* No description
|
|
9002
9008
|
*
|
|
@@ -9007,7 +9013,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9007
9013
|
* @secure
|
|
9008
9014
|
* @response `204` `void` No Content
|
|
9009
9015
|
*/
|
|
9010
|
-
createUserRelation: (userId: string, data: CreateUserRelationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9016
|
+
createUserRelation: (userId: string, data: CreateUserRelationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9011
9017
|
/**
|
|
9012
9018
|
* No description
|
|
9013
9019
|
*
|
|
@@ -9018,7 +9024,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9018
9024
|
* @secure
|
|
9019
9025
|
* @response `200` `UserRelation` Success
|
|
9020
9026
|
*/
|
|
9021
|
-
getUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation, any>>;
|
|
9027
|
+
getUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation, any, {}>>;
|
|
9022
9028
|
/**
|
|
9023
9029
|
* No description
|
|
9024
9030
|
*
|
|
@@ -9029,7 +9035,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9029
9035
|
* @secure
|
|
9030
9036
|
* @response `204` `void` No Content
|
|
9031
9037
|
*/
|
|
9032
|
-
deleteUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9038
|
+
deleteUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9033
9039
|
/**
|
|
9034
9040
|
* No description
|
|
9035
9041
|
*
|
|
@@ -9047,7 +9053,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9047
9053
|
pageNumber?: number;
|
|
9048
9054
|
sortBy?: string;
|
|
9049
9055
|
sortDirection?: string;
|
|
9050
|
-
}, params?: RequestParams) => Promise<AxiosResponse<User[], any>>;
|
|
9056
|
+
}, params?: RequestParams) => Promise<AxiosResponse<User[], any, {}>>;
|
|
9051
9057
|
/**
|
|
9052
9058
|
* No description
|
|
9053
9059
|
*
|
|
@@ -9059,7 +9065,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9059
9065
|
* @response `200` `DetailedUser` Success
|
|
9060
9066
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9061
9067
|
*/
|
|
9062
|
-
createUser: (data: CreateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
|
|
9068
|
+
createUser: (data: CreateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any, {}>>;
|
|
9063
9069
|
/**
|
|
9064
9070
|
* No description
|
|
9065
9071
|
*
|
|
@@ -9077,7 +9083,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9077
9083
|
pageNumber?: number;
|
|
9078
9084
|
sortBy?: string;
|
|
9079
9085
|
sortDirection?: string;
|
|
9080
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UserPaginated, any>>;
|
|
9086
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UserPaginated, any, {}>>;
|
|
9081
9087
|
/**
|
|
9082
9088
|
* No description
|
|
9083
9089
|
*
|
|
@@ -9088,7 +9094,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9088
9094
|
* @secure
|
|
9089
9095
|
* @response `200` `AdminAccessUser` Success
|
|
9090
9096
|
*/
|
|
9091
|
-
getUserByEmail: (data: GetUserByEmailRequest, params?: RequestParams) => Promise<AxiosResponse<AdminAccessUser, any>>;
|
|
9097
|
+
getUserByEmail: (data: GetUserByEmailRequest, params?: RequestParams) => Promise<AxiosResponse<AdminAccessUser, any, {}>>;
|
|
9092
9098
|
/**
|
|
9093
9099
|
* No description
|
|
9094
9100
|
*
|
|
@@ -9100,7 +9106,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9100
9106
|
* @response `200` `User` Success
|
|
9101
9107
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9102
9108
|
*/
|
|
9103
|
-
signUp: (data: RegisterUserRequest, params?: RequestParams) => Promise<AxiosResponse<User, any>>;
|
|
9109
|
+
signUp: (data: RegisterUserRequest, params?: RequestParams) => Promise<AxiosResponse<User, any, {}>>;
|
|
9104
9110
|
/**
|
|
9105
9111
|
* No description
|
|
9106
9112
|
*
|
|
@@ -9112,7 +9118,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9112
9118
|
* @response `200` `DetailedUser` Success
|
|
9113
9119
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9114
9120
|
*/
|
|
9115
|
-
replaceUser: (id: string, data: UpdateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
|
|
9121
|
+
replaceUser: (id: string, data: UpdateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any, {}>>;
|
|
9116
9122
|
/**
|
|
9117
9123
|
* No description
|
|
9118
9124
|
*
|
|
@@ -9126,7 +9132,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9126
9132
|
deleteUser: (id: string, query?: {
|
|
9127
9133
|
/** @default false */
|
|
9128
9134
|
permanent?: boolean;
|
|
9129
|
-
}, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9135
|
+
}, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9130
9136
|
/**
|
|
9131
9137
|
* No description
|
|
9132
9138
|
*
|
|
@@ -9137,7 +9143,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9137
9143
|
* @secure
|
|
9138
9144
|
* @response `204` `void` No Content
|
|
9139
9145
|
*/
|
|
9140
|
-
restoreUser: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9146
|
+
restoreUser: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9141
9147
|
/**
|
|
9142
9148
|
* No description
|
|
9143
9149
|
*
|
|
@@ -9149,7 +9155,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9149
9155
|
* @response `204` `void` No Content
|
|
9150
9156
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9151
9157
|
*/
|
|
9152
|
-
changePassword: (data: ChangePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9158
|
+
changePassword: (data: ChangePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9153
9159
|
/**
|
|
9154
9160
|
* No description
|
|
9155
9161
|
*
|
|
@@ -9161,7 +9167,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9161
9167
|
* @response `204` `void` No Content
|
|
9162
9168
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9163
9169
|
*/
|
|
9164
|
-
verifyPassword: (data: VerifyPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9170
|
+
verifyPassword: (data: VerifyPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9165
9171
|
/**
|
|
9166
9172
|
* No description
|
|
9167
9173
|
*
|
|
@@ -9173,7 +9179,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9173
9179
|
* @response `204` `void` No Content
|
|
9174
9180
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9175
9181
|
*/
|
|
9176
|
-
overridePassword: (id: string, data: OverridePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9182
|
+
overridePassword: (id: string, data: OverridePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9177
9183
|
/**
|
|
9178
9184
|
* No description
|
|
9179
9185
|
*
|
|
@@ -9185,7 +9191,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9185
9191
|
* @response `204` `void` No Content
|
|
9186
9192
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9187
9193
|
*/
|
|
9188
|
-
forgotPassword: (data: SendForgotPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9194
|
+
forgotPassword: (data: SendForgotPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9189
9195
|
/**
|
|
9190
9196
|
* No description
|
|
9191
9197
|
*
|
|
@@ -9197,7 +9203,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9197
9203
|
* @response `204` `void` No Content
|
|
9198
9204
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9199
9205
|
*/
|
|
9200
|
-
sendMobilePhoneVerificationCode: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9206
|
+
sendMobilePhoneVerificationCode: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9201
9207
|
/**
|
|
9202
9208
|
* No description
|
|
9203
9209
|
*
|
|
@@ -9209,7 +9215,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9209
9215
|
* @response `204` `void` No Content
|
|
9210
9216
|
* @response `422` `UnprocessableEntity` Client Error
|
|
9211
9217
|
*/
|
|
9212
|
-
verifyUserMobilePhone: (data: UserMobilePhoneVerificationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9218
|
+
verifyUserMobilePhone: (data: UserMobilePhoneVerificationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9213
9219
|
/**
|
|
9214
9220
|
* No description
|
|
9215
9221
|
*
|
|
@@ -9221,7 +9227,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9221
9227
|
* @response `200` `ImpersonatedDetailedUser` Success
|
|
9222
9228
|
* @response `401` `ProblemDetails` Unauthorized
|
|
9223
9229
|
*/
|
|
9224
|
-
getMe: (params?: RequestParams) => Promise<AxiosResponse<ImpersonatedDetailedUser, any>>;
|
|
9230
|
+
getMe: (params?: RequestParams) => Promise<AxiosResponse<ImpersonatedDetailedUser, any, {}>>;
|
|
9225
9231
|
/**
|
|
9226
9232
|
* No description
|
|
9227
9233
|
*
|
|
@@ -9232,7 +9238,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9232
9238
|
* @secure
|
|
9233
9239
|
* @response `200` `DetailedUser` Success
|
|
9234
9240
|
*/
|
|
9235
|
-
replaceMe: (data: UpdateMeRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
|
|
9241
|
+
replaceMe: (data: UpdateMeRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any, {}>>;
|
|
9236
9242
|
/**
|
|
9237
9243
|
* @description Update the phone number If changed will send a verification code to the new number
|
|
9238
9244
|
*
|
|
@@ -9243,7 +9249,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9243
9249
|
* @secure
|
|
9244
9250
|
* @response `204` `DetailedUser` No Content
|
|
9245
9251
|
*/
|
|
9246
|
-
updateMyPhone: (data: UpdateMobilePhoneRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
|
|
9252
|
+
updateMyPhone: (data: UpdateMobilePhoneRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any, {}>>;
|
|
9247
9253
|
/**
|
|
9248
9254
|
* No description
|
|
9249
9255
|
*
|
|
@@ -9254,7 +9260,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9254
9260
|
* @secure
|
|
9255
9261
|
* @response `200` `(UserRelationship)[]` Success
|
|
9256
9262
|
*/
|
|
9257
|
-
getMyRelationships: (params?: RequestParams) => Promise<AxiosResponse<UserRelationship[], any>>;
|
|
9263
|
+
getMyRelationships: (params?: RequestParams) => Promise<AxiosResponse<UserRelationship[], any, {}>>;
|
|
9258
9264
|
/**
|
|
9259
9265
|
* No description
|
|
9260
9266
|
*
|
|
@@ -9265,7 +9271,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9265
9271
|
* @secure
|
|
9266
9272
|
* @response `200` `(UserRelationshipProspect)[]` Success
|
|
9267
9273
|
*/
|
|
9268
|
-
getMyRelationshipProspects: (params?: RequestParams) => Promise<AxiosResponse<UserRelationshipProspect[], any>>;
|
|
9274
|
+
getMyRelationshipProspects: (params?: RequestParams) => Promise<AxiosResponse<UserRelationshipProspect[], any, {}>>;
|
|
9269
9275
|
/**
|
|
9270
9276
|
* No description
|
|
9271
9277
|
*
|
|
@@ -9276,7 +9282,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9276
9282
|
* @secure
|
|
9277
9283
|
* @response `204` `void` No Content
|
|
9278
9284
|
*/
|
|
9279
|
-
deleteRelationshipProspect: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9285
|
+
deleteRelationshipProspect: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9280
9286
|
/**
|
|
9281
9287
|
* No description
|
|
9282
9288
|
*
|
|
@@ -9287,7 +9293,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9287
9293
|
* @secure
|
|
9288
9294
|
* @response `204` `void` No Content
|
|
9289
9295
|
*/
|
|
9290
|
-
deleteMe: (data: UserAccountDeletionRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9296
|
+
deleteMe: (data: UserAccountDeletionRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9291
9297
|
/**
|
|
9292
9298
|
* No description
|
|
9293
9299
|
*
|
|
@@ -9298,7 +9304,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9298
9304
|
* @secure
|
|
9299
9305
|
* @response `200` `GetForm` Success
|
|
9300
9306
|
*/
|
|
9301
|
-
getWorkflow: (data: GetWorkflowRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any>>;
|
|
9307
|
+
getWorkflow: (data: GetWorkflowRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any, {}>>;
|
|
9302
9308
|
};
|
|
9303
9309
|
sso: {
|
|
9304
9310
|
/**
|
|
@@ -9310,6 +9316,6 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9310
9316
|
* @secure
|
|
9311
9317
|
* @response `200` `void` Success
|
|
9312
9318
|
*/
|
|
9313
|
-
logoutList: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9319
|
+
logoutList: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9314
9320
|
};
|
|
9315
9321
|
}
|