@matech/thebigpos-sdk 2.34.0-rc3 → 2.34.0-rc5
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 +306 -306
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -5148,7 +5148,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5148
5148
|
* @secure
|
|
5149
5149
|
* @response `200` `void` Success
|
|
5150
5150
|
*/
|
|
5151
|
-
postRoot: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
5151
|
+
postRoot: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
5152
5152
|
/**
|
|
5153
5153
|
* No description
|
|
5154
5154
|
*
|
|
@@ -5158,7 +5158,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5158
5158
|
* @secure
|
|
5159
5159
|
* @response `200` `string` Success
|
|
5160
5160
|
*/
|
|
5161
|
-
getRoot: (params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
5161
|
+
getRoot: (params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
5162
5162
|
api: {
|
|
5163
5163
|
/**
|
|
5164
5164
|
* No description
|
|
@@ -5171,7 +5171,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5171
5171
|
* @response `200` `Account` Success
|
|
5172
5172
|
* @response `404` `ProblemDetails` Not Found
|
|
5173
5173
|
*/
|
|
5174
|
-
getMyAccount: (params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
|
|
5174
|
+
getMyAccount: (params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
|
|
5175
5175
|
/**
|
|
5176
5176
|
* No description
|
|
5177
5177
|
*
|
|
@@ -5184,7 +5184,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5184
5184
|
* @response `404` `ProblemDetails` Not Found
|
|
5185
5185
|
* @response `422` `ProblemDetails` Client Error
|
|
5186
5186
|
*/
|
|
5187
|
-
replaceMyAccount: (data: UpdateAccountRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
|
|
5187
|
+
replaceMyAccount: (data: UpdateAccountRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
|
|
5188
5188
|
/**
|
|
5189
5189
|
* No description
|
|
5190
5190
|
*
|
|
@@ -5195,7 +5195,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5195
5195
|
* @secure
|
|
5196
5196
|
* @response `200` `SiteConfiguration` Success
|
|
5197
5197
|
*/
|
|
5198
|
-
getSiteConfigurationByAccount: (params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
5198
|
+
getSiteConfigurationByAccount: (params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
5199
5199
|
/**
|
|
5200
5200
|
* No description
|
|
5201
5201
|
*
|
|
@@ -5207,7 +5207,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5207
5207
|
* @response `200` `SiteConfiguration` Success
|
|
5208
5208
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5209
5209
|
*/
|
|
5210
|
-
updateSiteConfigurationForAccount: (data: SiteConfiguration, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
5210
|
+
updateSiteConfigurationForAccount: (data: SiteConfiguration, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
5211
5211
|
/**
|
|
5212
5212
|
* No description
|
|
5213
5213
|
*
|
|
@@ -5218,7 +5218,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5218
5218
|
* @secure
|
|
5219
5219
|
* @response `200` `(Account)[]` Success
|
|
5220
5220
|
*/
|
|
5221
|
-
getAccounts: (params?: RequestParams) => Promise<AxiosResponse<Account[], any>>;
|
|
5221
|
+
getAccounts: (params?: RequestParams) => Promise<AxiosResponse<Account[], any, {}>>;
|
|
5222
5222
|
/**
|
|
5223
5223
|
* No description
|
|
5224
5224
|
*
|
|
@@ -5230,7 +5230,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5230
5230
|
* @response `201` `Account` Created
|
|
5231
5231
|
* @response `422` `ProblemDetails` Client Error
|
|
5232
5232
|
*/
|
|
5233
|
-
createAccount: (data: CreateAccountRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
|
|
5233
|
+
createAccount: (data: CreateAccountRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
|
|
5234
5234
|
/**
|
|
5235
5235
|
* No description
|
|
5236
5236
|
*
|
|
@@ -5242,7 +5242,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5242
5242
|
* @response `201` `Account` Created
|
|
5243
5243
|
* @response `422` `ProblemDetails` Client Error
|
|
5244
5244
|
*/
|
|
5245
|
-
getAccount: (id: string, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
|
|
5245
|
+
getAccount: (id: string, params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
|
|
5246
5246
|
/**
|
|
5247
5247
|
* No description
|
|
5248
5248
|
*
|
|
@@ -5258,7 +5258,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5258
5258
|
deleteAccount: (id: string, query?: {
|
|
5259
5259
|
/** @default false */
|
|
5260
5260
|
hardDelete?: boolean;
|
|
5261
|
-
}, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
|
|
5261
|
+
}, params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
|
|
5262
5262
|
/**
|
|
5263
5263
|
* No description
|
|
5264
5264
|
*
|
|
@@ -5271,7 +5271,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5271
5271
|
* @response `401` `ProblemDetails` Unauthorized
|
|
5272
5272
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5273
5273
|
*/
|
|
5274
|
-
getTokenFromRefreshToken: (data: RefreshTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any>>;
|
|
5274
|
+
getTokenFromRefreshToken: (data: RefreshTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any, {}>>;
|
|
5275
5275
|
/**
|
|
5276
5276
|
* No description
|
|
5277
5277
|
*
|
|
@@ -5283,7 +5283,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5283
5283
|
* @response `200` `Token` Success
|
|
5284
5284
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5285
5285
|
*/
|
|
5286
|
-
getToken: (data: TokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any>>;
|
|
5286
|
+
getToken: (data: TokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any, {}>>;
|
|
5287
5287
|
/**
|
|
5288
5288
|
* No description
|
|
5289
5289
|
*
|
|
@@ -5295,7 +5295,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5295
5295
|
* @response `200` `Token` Success
|
|
5296
5296
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5297
5297
|
*/
|
|
5298
|
-
getTokenFromChallengeCode: (data: TokenChallengeRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any>>;
|
|
5298
|
+
getTokenFromChallengeCode: (data: TokenChallengeRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any, {}>>;
|
|
5299
5299
|
/**
|
|
5300
5300
|
* No description
|
|
5301
5301
|
*
|
|
@@ -5307,7 +5307,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5307
5307
|
* @response `200` `Token` Success
|
|
5308
5308
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5309
5309
|
*/
|
|
5310
|
-
getSystemToken: (data: SystemTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any>>;
|
|
5310
|
+
getSystemToken: (data: SystemTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any, {}>>;
|
|
5311
5311
|
/**
|
|
5312
5312
|
* No description
|
|
5313
5313
|
*
|
|
@@ -5319,7 +5319,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5319
5319
|
* @response `200` `SSOToken` Success
|
|
5320
5320
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5321
5321
|
*/
|
|
5322
|
-
getSsoToken: (data: SSOTokenRequest, params?: RequestParams) => Promise<AxiosResponse<SSOToken, any>>;
|
|
5322
|
+
getSsoToken: (data: SSOTokenRequest, params?: RequestParams) => Promise<AxiosResponse<SSOToken, any, {}>>;
|
|
5323
5323
|
/**
|
|
5324
5324
|
* No description
|
|
5325
5325
|
*
|
|
@@ -5331,7 +5331,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5331
5331
|
* @response `204` `NoContentResult` No Content
|
|
5332
5332
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5333
5333
|
*/
|
|
5334
|
-
logOut: (params?: RequestParams) => Promise<AxiosResponse<NoContentResult, any>>;
|
|
5334
|
+
logOut: (params?: RequestParams) => Promise<AxiosResponse<NoContentResult, any, {}>>;
|
|
5335
5335
|
/**
|
|
5336
5336
|
* No description
|
|
5337
5337
|
*
|
|
@@ -5350,7 +5350,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5350
5350
|
pageNumber?: number;
|
|
5351
5351
|
sortBy?: string;
|
|
5352
5352
|
sortDirection?: string;
|
|
5353
|
-
}, params?: RequestParams) => Promise<AxiosResponse<GetBranchPaginated, any>>;
|
|
5353
|
+
}, params?: RequestParams) => Promise<AxiosResponse<GetBranchPaginated, any, {}>>;
|
|
5354
5354
|
/**
|
|
5355
5355
|
* No description
|
|
5356
5356
|
*
|
|
@@ -5362,7 +5362,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5362
5362
|
* @response `200` `GetBranch` Success
|
|
5363
5363
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5364
5364
|
*/
|
|
5365
|
-
createBranch: (data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any>>;
|
|
5365
|
+
createBranch: (data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any, {}>>;
|
|
5366
5366
|
/**
|
|
5367
5367
|
* No description
|
|
5368
5368
|
*
|
|
@@ -5380,7 +5380,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5380
5380
|
pageNumber?: number;
|
|
5381
5381
|
sortBy?: string;
|
|
5382
5382
|
sortDirection?: string;
|
|
5383
|
-
}, params?: RequestParams) => Promise<AxiosResponse<GetBranchPaginated, any>>;
|
|
5383
|
+
}, params?: RequestParams) => Promise<AxiosResponse<GetBranchPaginated, any, {}>>;
|
|
5384
5384
|
/**
|
|
5385
5385
|
* No description
|
|
5386
5386
|
*
|
|
@@ -5391,7 +5391,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5391
5391
|
* @secure
|
|
5392
5392
|
* @response `200` `GetBranch` Success
|
|
5393
5393
|
*/
|
|
5394
|
-
getBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any>>;
|
|
5394
|
+
getBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any, {}>>;
|
|
5395
5395
|
/**
|
|
5396
5396
|
* No description
|
|
5397
5397
|
*
|
|
@@ -5403,7 +5403,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5403
5403
|
* @response `200` `GetBranch` Success
|
|
5404
5404
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5405
5405
|
*/
|
|
5406
|
-
replaceBranch: (branchId: string, data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any>>;
|
|
5406
|
+
replaceBranch: (branchId: string, data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any, {}>>;
|
|
5407
5407
|
/**
|
|
5408
5408
|
* No description
|
|
5409
5409
|
*
|
|
@@ -5414,7 +5414,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5414
5414
|
* @secure
|
|
5415
5415
|
* @response `204` `void` No Content
|
|
5416
5416
|
*/
|
|
5417
|
-
deleteBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
5417
|
+
deleteBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
5418
5418
|
/**
|
|
5419
5419
|
* No description
|
|
5420
5420
|
*
|
|
@@ -5426,7 +5426,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5426
5426
|
* @response `204` `void` No Content
|
|
5427
5427
|
* @response `400` `ProblemDetails` Bad Request
|
|
5428
5428
|
*/
|
|
5429
|
-
restoreBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
5429
|
+
restoreBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
5430
5430
|
/**
|
|
5431
5431
|
* No description
|
|
5432
5432
|
*
|
|
@@ -5438,7 +5438,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5438
5438
|
* @response `200` `SiteConfiguration` Success
|
|
5439
5439
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5440
5440
|
*/
|
|
5441
|
-
createBranchSiteConfiguration: (branchId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
5441
|
+
createBranchSiteConfiguration: (branchId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
5442
5442
|
/**
|
|
5443
5443
|
* No description
|
|
5444
5444
|
*
|
|
@@ -5449,7 +5449,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5449
5449
|
* @secure
|
|
5450
5450
|
* @response `200` `SiteConfigurationWithInherited` Success
|
|
5451
5451
|
*/
|
|
5452
|
-
getBranchSiteConfiguration: (branchId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
|
|
5452
|
+
getBranchSiteConfiguration: (branchId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any, {}>>;
|
|
5453
5453
|
/**
|
|
5454
5454
|
* No description
|
|
5455
5455
|
*
|
|
@@ -5463,7 +5463,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5463
5463
|
*/
|
|
5464
5464
|
replaceBranchSiteConfiguration: (branchId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
|
|
5465
5465
|
applyToChildren?: boolean;
|
|
5466
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
5466
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
5467
5467
|
/**
|
|
5468
5468
|
* No description
|
|
5469
5469
|
*
|
|
@@ -5474,7 +5474,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5474
5474
|
* @secure
|
|
5475
5475
|
* @response `200` `LoanOfficerPublic` Success
|
|
5476
5476
|
*/
|
|
5477
|
-
getLoanOfficersByBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic, any>>;
|
|
5477
|
+
getLoanOfficersByBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic, any, {}>>;
|
|
5478
5478
|
/**
|
|
5479
5479
|
* No description
|
|
5480
5480
|
*
|
|
@@ -5487,7 +5487,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5487
5487
|
*/
|
|
5488
5488
|
getBusinessRules: (query?: {
|
|
5489
5489
|
showAll?: boolean;
|
|
5490
|
-
}, params?: RequestParams) => Promise<AxiosResponse<BusinessRule[], any>>;
|
|
5490
|
+
}, params?: RequestParams) => Promise<AxiosResponse<BusinessRule[], any, {}>>;
|
|
5491
5491
|
/**
|
|
5492
5492
|
* No description
|
|
5493
5493
|
*
|
|
@@ -5499,7 +5499,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5499
5499
|
* @response `200` `BusinessRule` Success
|
|
5500
5500
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5501
5501
|
*/
|
|
5502
|
-
createBusinessRule: (data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
|
|
5502
|
+
createBusinessRule: (data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any, {}>>;
|
|
5503
5503
|
/**
|
|
5504
5504
|
* No description
|
|
5505
5505
|
*
|
|
@@ -5510,7 +5510,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5510
5510
|
* @secure
|
|
5511
5511
|
* @response `200` `BusinessRule` Success
|
|
5512
5512
|
*/
|
|
5513
|
-
getBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
|
|
5513
|
+
getBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any, {}>>;
|
|
5514
5514
|
/**
|
|
5515
5515
|
* No description
|
|
5516
5516
|
*
|
|
@@ -5522,7 +5522,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5522
5522
|
* @response `200` `BusinessRule` Success
|
|
5523
5523
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5524
5524
|
*/
|
|
5525
|
-
replaceBusinessRule: (id: string, data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
|
|
5525
|
+
replaceBusinessRule: (id: string, data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any, {}>>;
|
|
5526
5526
|
/**
|
|
5527
5527
|
* No description
|
|
5528
5528
|
*
|
|
@@ -5533,7 +5533,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5533
5533
|
* @secure
|
|
5534
5534
|
* @response `204` `void` No Content
|
|
5535
5535
|
*/
|
|
5536
|
-
deleteBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
5536
|
+
deleteBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
5537
5537
|
/**
|
|
5538
5538
|
* No description
|
|
5539
5539
|
*
|
|
@@ -5544,7 +5544,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5544
5544
|
* @secure
|
|
5545
5545
|
* @response `200` `BusinessRule` Success
|
|
5546
5546
|
*/
|
|
5547
|
-
restoreBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
|
|
5547
|
+
restoreBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any, {}>>;
|
|
5548
5548
|
/**
|
|
5549
5549
|
* @description Returns closed loan counts per account within the specified date range, including POS vs non-POS breakdown and utilization ratios.
|
|
5550
5550
|
*
|
|
@@ -5555,7 +5555,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5555
5555
|
* @secure
|
|
5556
5556
|
* @response `200` `ClosedLoansReport` Success
|
|
5557
5557
|
*/
|
|
5558
|
-
getClosedLoansReport: (data: ClosedLoansReportRequest, params?: RequestParams) => Promise<AxiosResponse<ClosedLoansReport, any>>;
|
|
5558
|
+
getClosedLoansReport: (data: ClosedLoansReportRequest, params?: RequestParams) => Promise<AxiosResponse<ClosedLoansReport, any, {}>>;
|
|
5559
5559
|
/**
|
|
5560
5560
|
* No description
|
|
5561
5561
|
*
|
|
@@ -5574,7 +5574,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5574
5574
|
pageNumber?: number;
|
|
5575
5575
|
sortBy?: string;
|
|
5576
5576
|
sortDirection?: string;
|
|
5577
|
-
}, params?: RequestParams) => Promise<AxiosResponse<CorporatePaginated, any>>;
|
|
5577
|
+
}, params?: RequestParams) => Promise<AxiosResponse<CorporatePaginated, any, {}>>;
|
|
5578
5578
|
/**
|
|
5579
5579
|
* No description
|
|
5580
5580
|
*
|
|
@@ -5586,7 +5586,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5586
5586
|
* @response `200` `Corporate` Success
|
|
5587
5587
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5588
5588
|
*/
|
|
5589
|
-
createCorporate: (data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any>>;
|
|
5589
|
+
createCorporate: (data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any, {}>>;
|
|
5590
5590
|
/**
|
|
5591
5591
|
* No description
|
|
5592
5592
|
*
|
|
@@ -5604,7 +5604,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5604
5604
|
pageNumber?: number;
|
|
5605
5605
|
sortBy?: string;
|
|
5606
5606
|
sortDirection?: string;
|
|
5607
|
-
}, params?: RequestParams) => Promise<AxiosResponse<CorporatePaginated, any>>;
|
|
5607
|
+
}, params?: RequestParams) => Promise<AxiosResponse<CorporatePaginated, any, {}>>;
|
|
5608
5608
|
/**
|
|
5609
5609
|
* No description
|
|
5610
5610
|
*
|
|
@@ -5615,7 +5615,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5615
5615
|
* @secure
|
|
5616
5616
|
* @response `200` `Corporate` Success
|
|
5617
5617
|
*/
|
|
5618
|
-
getCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<Corporate, any>>;
|
|
5618
|
+
getCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<Corporate, any, {}>>;
|
|
5619
5619
|
/**
|
|
5620
5620
|
* No description
|
|
5621
5621
|
*
|
|
@@ -5627,7 +5627,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5627
5627
|
* @response `200` `Corporate` Success
|
|
5628
5628
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5629
5629
|
*/
|
|
5630
|
-
replaceCorporate: (id: string, data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any>>;
|
|
5630
|
+
replaceCorporate: (id: string, data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any, {}>>;
|
|
5631
5631
|
/**
|
|
5632
5632
|
* No description
|
|
5633
5633
|
*
|
|
@@ -5638,7 +5638,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5638
5638
|
* @secure
|
|
5639
5639
|
* @response `204` `void` No Content
|
|
5640
5640
|
*/
|
|
5641
|
-
deleteCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
5641
|
+
deleteCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
5642
5642
|
/**
|
|
5643
5643
|
* No description
|
|
5644
5644
|
*
|
|
@@ -5649,7 +5649,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5649
5649
|
* @secure
|
|
5650
5650
|
* @response `204` `void` No Content
|
|
5651
5651
|
*/
|
|
5652
|
-
restoreCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
5652
|
+
restoreCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
5653
5653
|
/**
|
|
5654
5654
|
* No description
|
|
5655
5655
|
*
|
|
@@ -5661,7 +5661,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5661
5661
|
* @response `200` `SiteConfiguration` Success
|
|
5662
5662
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5663
5663
|
*/
|
|
5664
|
-
createCorporateSiteConfiguration: (corporateId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
5664
|
+
createCorporateSiteConfiguration: (corporateId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
5665
5665
|
/**
|
|
5666
5666
|
* No description
|
|
5667
5667
|
*
|
|
@@ -5672,7 +5672,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5672
5672
|
* @secure
|
|
5673
5673
|
* @response `200` `SiteConfigurationWithInherited` Success
|
|
5674
5674
|
*/
|
|
5675
|
-
getCorporateSiteConfiguration: (corporateId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
|
|
5675
|
+
getCorporateSiteConfiguration: (corporateId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any, {}>>;
|
|
5676
5676
|
/**
|
|
5677
5677
|
* No description
|
|
5678
5678
|
*
|
|
@@ -5686,7 +5686,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5686
5686
|
*/
|
|
5687
5687
|
replaceCorporateSiteConfiguration: (corporateId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
|
|
5688
5688
|
applyToChildren?: boolean;
|
|
5689
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
5689
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
5690
5690
|
/**
|
|
5691
5691
|
* No description
|
|
5692
5692
|
*
|
|
@@ -5697,7 +5697,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5697
5697
|
* @secure
|
|
5698
5698
|
* @response `200` `(BranchReduced)[]` Success
|
|
5699
5699
|
*/
|
|
5700
|
-
getBranchesByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchReduced[], any>>;
|
|
5700
|
+
getBranchesByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchReduced[], any, {}>>;
|
|
5701
5701
|
/**
|
|
5702
5702
|
* No description
|
|
5703
5703
|
*
|
|
@@ -5708,7 +5708,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5708
5708
|
* @secure
|
|
5709
5709
|
* @response `200` `LoanOfficerPublic` Success
|
|
5710
5710
|
*/
|
|
5711
|
-
getLoanOfficersByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic, any>>;
|
|
5711
|
+
getLoanOfficersByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic, any, {}>>;
|
|
5712
5712
|
/**
|
|
5713
5713
|
* No description
|
|
5714
5714
|
*
|
|
@@ -5728,7 +5728,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5728
5728
|
pageNumber?: number;
|
|
5729
5729
|
sortBy?: string;
|
|
5730
5730
|
sortDirection?: string;
|
|
5731
|
-
}, params?: RequestParams) => Promise<AxiosResponse<DevicePaginated, any>>;
|
|
5731
|
+
}, params?: RequestParams) => Promise<AxiosResponse<DevicePaginated, any, {}>>;
|
|
5732
5732
|
/**
|
|
5733
5733
|
* No description
|
|
5734
5734
|
*
|
|
@@ -5739,7 +5739,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5739
5739
|
* @secure
|
|
5740
5740
|
* @response `200` `Device` Success
|
|
5741
5741
|
*/
|
|
5742
|
-
getDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<Device, any>>;
|
|
5742
|
+
getDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<Device, any, {}>>;
|
|
5743
5743
|
/**
|
|
5744
5744
|
* No description
|
|
5745
5745
|
*
|
|
@@ -5750,7 +5750,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5750
5750
|
* @secure
|
|
5751
5751
|
* @response `200` `Device` Success
|
|
5752
5752
|
*/
|
|
5753
|
-
updateDevice: (id: string, data: DeviceRequest, params?: RequestParams) => Promise<AxiosResponse<Device, any>>;
|
|
5753
|
+
updateDevice: (id: string, data: DeviceRequest, params?: RequestParams) => Promise<AxiosResponse<Device, any, {}>>;
|
|
5754
5754
|
/**
|
|
5755
5755
|
* No description
|
|
5756
5756
|
*
|
|
@@ -5761,7 +5761,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5761
5761
|
* @secure
|
|
5762
5762
|
* @response `200` `DeviceMDM` Success
|
|
5763
5763
|
*/
|
|
5764
|
-
getDeviceBySerialNumber: (sn: string, params?: RequestParams) => Promise<AxiosResponse<DeviceMDM, any>>;
|
|
5764
|
+
getDeviceBySerialNumber: (sn: string, params?: RequestParams) => Promise<AxiosResponse<DeviceMDM, any, {}>>;
|
|
5765
5765
|
/**
|
|
5766
5766
|
* No description
|
|
5767
5767
|
*
|
|
@@ -5772,7 +5772,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5772
5772
|
* @secure
|
|
5773
5773
|
* @response `200` `Action` Success
|
|
5774
5774
|
*/
|
|
5775
|
-
createDeviceActionBySerialNumber: (sn: string, actionName: string, params?: RequestParams) => Promise<AxiosResponse<Action, any>>;
|
|
5775
|
+
createDeviceActionBySerialNumber: (sn: string, actionName: string, params?: RequestParams) => Promise<AxiosResponse<Action, any, {}>>;
|
|
5776
5776
|
/**
|
|
5777
5777
|
* No description
|
|
5778
5778
|
*
|
|
@@ -5786,7 +5786,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5786
5786
|
getDocumentBuckets: (query?: {
|
|
5787
5787
|
/** @default false */
|
|
5788
5788
|
includeSystemBuckets?: boolean;
|
|
5789
|
-
}, params?: RequestParams) => Promise<AxiosResponse<string[], any>>;
|
|
5789
|
+
}, params?: RequestParams) => Promise<AxiosResponse<string[], any, {}>>;
|
|
5790
5790
|
/**
|
|
5791
5791
|
* No description
|
|
5792
5792
|
*
|
|
@@ -5799,7 +5799,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5799
5799
|
*/
|
|
5800
5800
|
getDocumentTemplates: (query?: {
|
|
5801
5801
|
showAll?: boolean;
|
|
5802
|
-
}, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase[], any>>;
|
|
5802
|
+
}, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase[], any, {}>>;
|
|
5803
5803
|
/**
|
|
5804
5804
|
* No description
|
|
5805
5805
|
*
|
|
@@ -5812,7 +5812,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5812
5812
|
* @response `404` `ProblemDetails` Not Found
|
|
5813
5813
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5814
5814
|
*/
|
|
5815
|
-
createDocumentTemplate: (data: CreateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any>>;
|
|
5815
|
+
createDocumentTemplate: (data: CreateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any, {}>>;
|
|
5816
5816
|
/**
|
|
5817
5817
|
* No description
|
|
5818
5818
|
*
|
|
@@ -5828,7 +5828,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5828
5828
|
showAll?: boolean;
|
|
5829
5829
|
/** @default true */
|
|
5830
5830
|
publishedOnly?: boolean;
|
|
5831
|
-
}, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase[], any>>;
|
|
5831
|
+
}, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase[], any, {}>>;
|
|
5832
5832
|
/**
|
|
5833
5833
|
* No description
|
|
5834
5834
|
*
|
|
@@ -5840,7 +5840,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5840
5840
|
* @response `200` `DocumentTemplate` Success
|
|
5841
5841
|
* @response `404` `ProblemDetails` Not Found
|
|
5842
5842
|
*/
|
|
5843
|
-
getDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplate, any>>;
|
|
5843
|
+
getDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplate, any, {}>>;
|
|
5844
5844
|
/**
|
|
5845
5845
|
* No description
|
|
5846
5846
|
*
|
|
@@ -5854,7 +5854,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5854
5854
|
* @response `404` `ProblemDetails` Not Found
|
|
5855
5855
|
* @response `422` `UnprocessableEntity` Client Error
|
|
5856
5856
|
*/
|
|
5857
|
-
replaceDocumentTemplate: (id: string, data: UpdateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any>>;
|
|
5857
|
+
replaceDocumentTemplate: (id: string, data: UpdateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any, {}>>;
|
|
5858
5858
|
/**
|
|
5859
5859
|
* No description
|
|
5860
5860
|
*
|
|
@@ -5867,7 +5867,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5867
5867
|
* @response `401` `ProblemDetails` Unauthorized
|
|
5868
5868
|
* @response `404` `ProblemDetails` Not Found
|
|
5869
5869
|
*/
|
|
5870
|
-
deleteDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
5870
|
+
deleteDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
5871
5871
|
/**
|
|
5872
5872
|
* No description
|
|
5873
5873
|
*
|
|
@@ -5880,7 +5880,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5880
5880
|
* @response `401` `ProblemDetails` Unauthorized
|
|
5881
5881
|
* @response `404` `ProblemDetails` Not Found
|
|
5882
5882
|
*/
|
|
5883
|
-
restoreDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
5883
|
+
restoreDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
5884
5884
|
/**
|
|
5885
5885
|
* No description
|
|
5886
5886
|
*
|
|
@@ -5891,7 +5891,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5891
5891
|
* @secure
|
|
5892
5892
|
* @response `200` `(DocumentTemplateVersion)[]` Success
|
|
5893
5893
|
*/
|
|
5894
|
-
getDocumentTemplateVersions: (documentId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion[], any>>;
|
|
5894
|
+
getDocumentTemplateVersions: (documentId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion[], any, {}>>;
|
|
5895
5895
|
/**
|
|
5896
5896
|
* No description
|
|
5897
5897
|
*
|
|
@@ -5902,7 +5902,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5902
5902
|
* @secure
|
|
5903
5903
|
* @response `200` `DocumentTemplateVersion` Success
|
|
5904
5904
|
*/
|
|
5905
|
-
createDocumentTemplateVersion: (documentId: string, data: DocumentTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
|
|
5905
|
+
createDocumentTemplateVersion: (documentId: string, data: DocumentTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any, {}>>;
|
|
5906
5906
|
/**
|
|
5907
5907
|
* No description
|
|
5908
5908
|
*
|
|
@@ -5913,7 +5913,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5913
5913
|
* @secure
|
|
5914
5914
|
* @response `200` `DocumentTemplateVersion` Success
|
|
5915
5915
|
*/
|
|
5916
|
-
getDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
|
|
5916
|
+
getDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any, {}>>;
|
|
5917
5917
|
/**
|
|
5918
5918
|
* No description
|
|
5919
5919
|
*
|
|
@@ -5924,7 +5924,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5924
5924
|
* @secure
|
|
5925
5925
|
* @response `200` `DocumentTemplateVersion` Success
|
|
5926
5926
|
*/
|
|
5927
|
-
replaceDocumentTemplateVersion: (documentId: string, id: string, data: DocumentTemplateVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
|
|
5927
|
+
replaceDocumentTemplateVersion: (documentId: string, id: string, data: DocumentTemplateVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any, {}>>;
|
|
5928
5928
|
/**
|
|
5929
5929
|
* No description
|
|
5930
5930
|
*
|
|
@@ -5935,7 +5935,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5935
5935
|
* @secure
|
|
5936
5936
|
* @response `200` `DocumentTemplateVersion` Success
|
|
5937
5937
|
*/
|
|
5938
|
-
deleteDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
|
|
5938
|
+
deleteDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any, {}>>;
|
|
5939
5939
|
/**
|
|
5940
5940
|
* No description
|
|
5941
5941
|
*
|
|
@@ -5961,7 +5961,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5961
5961
|
* @default 20
|
|
5962
5962
|
*/
|
|
5963
5963
|
pageSize?: number;
|
|
5964
|
-
}, params?: RequestParams) => Promise<AxiosResponse<EncompassPackageList, any>>;
|
|
5964
|
+
}, params?: RequestParams) => Promise<AxiosResponse<EncompassPackageList, any, {}>>;
|
|
5965
5965
|
/**
|
|
5966
5966
|
* No description
|
|
5967
5967
|
*
|
|
@@ -5976,7 +5976,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5976
5976
|
* @response `404` `EncompassError` Not Found
|
|
5977
5977
|
* @response `500` `EncompassError` Server Error
|
|
5978
5978
|
*/
|
|
5979
|
-
createEncompassSession: (data: CreateSessionRequest, params?: RequestParams) => Promise<AxiosResponse<CreateSession, any>>;
|
|
5979
|
+
createEncompassSession: (data: CreateSessionRequest, params?: RequestParams) => Promise<AxiosResponse<CreateSession, any, {}>>;
|
|
5980
5980
|
/**
|
|
5981
5981
|
* No description
|
|
5982
5982
|
*
|
|
@@ -5996,7 +5996,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5996
5996
|
sortDirection?: string;
|
|
5997
5997
|
/** @default false */
|
|
5998
5998
|
includeDeleted?: boolean;
|
|
5999
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FilePaginated, any>>;
|
|
5999
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FilePaginated, any, {}>>;
|
|
6000
6000
|
/**
|
|
6001
6001
|
* No description
|
|
6002
6002
|
*
|
|
@@ -6014,7 +6014,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6014
6014
|
file?: File;
|
|
6015
6015
|
isPublic?: boolean;
|
|
6016
6016
|
bucket?: string;
|
|
6017
|
-
}, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
|
|
6017
|
+
}, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
|
|
6018
6018
|
/**
|
|
6019
6019
|
* No description
|
|
6020
6020
|
*
|
|
@@ -6025,7 +6025,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6025
6025
|
* @secure
|
|
6026
6026
|
* @response `201` `File` Created
|
|
6027
6027
|
*/
|
|
6028
|
-
getFileById: (id: string, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
|
|
6028
|
+
getFileById: (id: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
|
|
6029
6029
|
/**
|
|
6030
6030
|
* No description
|
|
6031
6031
|
*
|
|
@@ -6037,7 +6037,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6037
6037
|
* @response `200` `string` Success
|
|
6038
6038
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6039
6039
|
*/
|
|
6040
|
-
replaceFile: (id: string, data: FileRequest, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
6040
|
+
replaceFile: (id: string, data: FileRequest, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
6041
6041
|
/**
|
|
6042
6042
|
* No description
|
|
6043
6043
|
*
|
|
@@ -6048,7 +6048,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6048
6048
|
* @secure
|
|
6049
6049
|
* @response `204` `void` No Content
|
|
6050
6050
|
*/
|
|
6051
|
-
deleteFile: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6051
|
+
deleteFile: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6052
6052
|
/**
|
|
6053
6053
|
* No description
|
|
6054
6054
|
*
|
|
@@ -6066,7 +6066,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6066
6066
|
pageNumber?: number;
|
|
6067
6067
|
sortBy?: string;
|
|
6068
6068
|
sortDirection?: string;
|
|
6069
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FilePaginated, any>>;
|
|
6069
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FilePaginated, any, {}>>;
|
|
6070
6070
|
/**
|
|
6071
6071
|
* No description
|
|
6072
6072
|
*
|
|
@@ -6079,7 +6079,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6079
6079
|
*/
|
|
6080
6080
|
getForms: (query?: {
|
|
6081
6081
|
showAll?: boolean;
|
|
6082
|
-
}, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms[], any>>;
|
|
6082
|
+
}, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms[], any, {}>>;
|
|
6083
6083
|
/**
|
|
6084
6084
|
* No description
|
|
6085
6085
|
*
|
|
@@ -6091,7 +6091,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6091
6091
|
* @response `201` `Form` Created
|
|
6092
6092
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6093
6093
|
*/
|
|
6094
|
-
createForm: (data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<Form, any>>;
|
|
6094
|
+
createForm: (data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<Form, any, {}>>;
|
|
6095
6095
|
/**
|
|
6096
6096
|
* No description
|
|
6097
6097
|
*
|
|
@@ -6102,7 +6102,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6102
6102
|
* @secure
|
|
6103
6103
|
* @response `200` `Form` Success
|
|
6104
6104
|
*/
|
|
6105
|
-
getForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<Form, any>>;
|
|
6105
|
+
getForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<Form, any, {}>>;
|
|
6106
6106
|
/**
|
|
6107
6107
|
* No description
|
|
6108
6108
|
*
|
|
@@ -6114,7 +6114,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6114
6114
|
* @response `200` `Form` Success
|
|
6115
6115
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6116
6116
|
*/
|
|
6117
|
-
replaceForm: (id: string, data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<Form, any>>;
|
|
6117
|
+
replaceForm: (id: string, data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<Form, any, {}>>;
|
|
6118
6118
|
/**
|
|
6119
6119
|
* No description
|
|
6120
6120
|
*
|
|
@@ -6125,7 +6125,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6125
6125
|
* @secure
|
|
6126
6126
|
* @response `204` `void` No Content
|
|
6127
6127
|
*/
|
|
6128
|
-
deleteForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6128
|
+
deleteForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6129
6129
|
/**
|
|
6130
6130
|
* No description
|
|
6131
6131
|
*
|
|
@@ -6136,7 +6136,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6136
6136
|
* @secure
|
|
6137
6137
|
* @response `200` `Form` Success
|
|
6138
6138
|
*/
|
|
6139
|
-
restoreForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<Form, any>>;
|
|
6139
|
+
restoreForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<Form, any, {}>>;
|
|
6140
6140
|
/**
|
|
6141
6141
|
* No description
|
|
6142
6142
|
*
|
|
@@ -6151,7 +6151,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6151
6151
|
/** @format binary */
|
|
6152
6152
|
file?: File;
|
|
6153
6153
|
name?: string;
|
|
6154
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionFile, any>>;
|
|
6154
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionFile, any, {}>>;
|
|
6155
6155
|
/**
|
|
6156
6156
|
* No description
|
|
6157
6157
|
*
|
|
@@ -6162,7 +6162,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6162
6162
|
* @secure
|
|
6163
6163
|
* @response `204` `void` No Content
|
|
6164
6164
|
*/
|
|
6165
|
-
deleteFormSubmissionFile: (formSubmissionFileId: string, formSubmissionId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6165
|
+
deleteFormSubmissionFile: (formSubmissionFileId: string, formSubmissionId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6166
6166
|
/**
|
|
6167
6167
|
* No description
|
|
6168
6168
|
*
|
|
@@ -6176,7 +6176,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6176
6176
|
downloadFormSubmissionFile: (formSubmissionFileId: string, formSubmissionId: string, query?: {
|
|
6177
6177
|
/** @format uuid */
|
|
6178
6178
|
siteConfigurationId?: string;
|
|
6179
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FileWithBytes, any>>;
|
|
6179
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FileWithBytes, any, {}>>;
|
|
6180
6180
|
/**
|
|
6181
6181
|
* No description
|
|
6182
6182
|
*
|
|
@@ -6194,7 +6194,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6194
6194
|
pageNumber?: number;
|
|
6195
6195
|
sortBy?: string;
|
|
6196
6196
|
sortDirection?: string;
|
|
6197
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionPaginated, any>>;
|
|
6197
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionPaginated, any, {}>>;
|
|
6198
6198
|
/**
|
|
6199
6199
|
* No description
|
|
6200
6200
|
*
|
|
@@ -6207,7 +6207,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6207
6207
|
*/
|
|
6208
6208
|
createFormSubmission: (data: FormSubmissionRequest, query?: {
|
|
6209
6209
|
formID?: string;
|
|
6210
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any>>;
|
|
6210
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any, {}>>;
|
|
6211
6211
|
/**
|
|
6212
6212
|
* No description
|
|
6213
6213
|
*
|
|
@@ -6218,7 +6218,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6218
6218
|
* @secure
|
|
6219
6219
|
* @response `200` `FormSubmission` Success
|
|
6220
6220
|
*/
|
|
6221
|
-
getFormSubmission: (id: string, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any>>;
|
|
6221
|
+
getFormSubmission: (id: string, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any, {}>>;
|
|
6222
6222
|
/**
|
|
6223
6223
|
* No description
|
|
6224
6224
|
*
|
|
@@ -6229,7 +6229,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6229
6229
|
* @secure
|
|
6230
6230
|
* @response `200` `FormSubmission` Success
|
|
6231
6231
|
*/
|
|
6232
|
-
replaceFormSubmission: (id: string, data: FormSubmissionRequest, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any>>;
|
|
6232
|
+
replaceFormSubmission: (id: string, data: FormSubmissionRequest, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any, {}>>;
|
|
6233
6233
|
/**
|
|
6234
6234
|
* No description
|
|
6235
6235
|
*
|
|
@@ -6240,7 +6240,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6240
6240
|
* @secure
|
|
6241
6241
|
* @response `204` `void` No Content
|
|
6242
6242
|
*/
|
|
6243
|
-
deleteFormSubmission: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6243
|
+
deleteFormSubmission: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6244
6244
|
/**
|
|
6245
6245
|
* No description
|
|
6246
6246
|
*
|
|
@@ -6258,7 +6258,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6258
6258
|
pageNumber?: number;
|
|
6259
6259
|
sortBy?: string;
|
|
6260
6260
|
sortDirection?: string;
|
|
6261
|
-
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionPaginated, any>>;
|
|
6261
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionPaginated, any, {}>>;
|
|
6262
6262
|
/**
|
|
6263
6263
|
* No description
|
|
6264
6264
|
*
|
|
@@ -6269,7 +6269,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6269
6269
|
* @secure
|
|
6270
6270
|
* @response `200` `(FormVersion)[]` Success
|
|
6271
6271
|
*/
|
|
6272
|
-
getFormVersions: (formId: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion[], any>>;
|
|
6272
|
+
getFormVersions: (formId: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion[], any, {}>>;
|
|
6273
6273
|
/**
|
|
6274
6274
|
* No description
|
|
6275
6275
|
*
|
|
@@ -6280,7 +6280,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6280
6280
|
* @secure
|
|
6281
6281
|
* @response `200` `FormVersion` Success
|
|
6282
6282
|
*/
|
|
6283
|
-
createFormVersion: (formId: string, data: FormVersionRequest, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
|
|
6283
|
+
createFormVersion: (formId: string, data: FormVersionRequest, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any, {}>>;
|
|
6284
6284
|
/**
|
|
6285
6285
|
* No description
|
|
6286
6286
|
*
|
|
@@ -6291,7 +6291,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6291
6291
|
* @secure
|
|
6292
6292
|
* @response `200` `FormVersion` Success
|
|
6293
6293
|
*/
|
|
6294
|
-
getFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
|
|
6294
|
+
getFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any, {}>>;
|
|
6295
6295
|
/**
|
|
6296
6296
|
* No description
|
|
6297
6297
|
*
|
|
@@ -6302,7 +6302,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6302
6302
|
* @secure
|
|
6303
6303
|
* @response `200` `FormVersion` Success
|
|
6304
6304
|
*/
|
|
6305
|
-
replaceFormVersion: (formId: string, id: string, data: FormVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
|
|
6305
|
+
replaceFormVersion: (formId: string, id: string, data: FormVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any, {}>>;
|
|
6306
6306
|
/**
|
|
6307
6307
|
* No description
|
|
6308
6308
|
*
|
|
@@ -6313,7 +6313,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6313
6313
|
* @secure
|
|
6314
6314
|
* @response `200` `FormVersion` Success
|
|
6315
6315
|
*/
|
|
6316
|
-
deleteFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
|
|
6316
|
+
deleteFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any, {}>>;
|
|
6317
6317
|
/**
|
|
6318
6318
|
* No description
|
|
6319
6319
|
*
|
|
@@ -6324,7 +6324,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6324
6324
|
* @secure
|
|
6325
6325
|
* @response `200` `Record<string,any>` Success
|
|
6326
6326
|
*/
|
|
6327
|
-
getLoanData: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Record<string, any>, any>>;
|
|
6327
|
+
getLoanData: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Record<string, any>, any, {}>>;
|
|
6328
6328
|
/**
|
|
6329
6329
|
* No description
|
|
6330
6330
|
*
|
|
@@ -6337,7 +6337,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6337
6337
|
* @response `200` `string` Success
|
|
6338
6338
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6339
6339
|
*/
|
|
6340
|
-
updateLoanConsentAndCustomFieldsObsolete: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
6340
|
+
updateLoanConsentAndCustomFieldsObsolete: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
6341
6341
|
/**
|
|
6342
6342
|
* No description
|
|
6343
6343
|
*
|
|
@@ -6348,7 +6348,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6348
6348
|
* @secure
|
|
6349
6349
|
* @response `200` `GetReport` Success
|
|
6350
6350
|
*/
|
|
6351
|
-
getLoansReport: (data: GetReportRequest, params?: RequestParams) => Promise<AxiosResponse<GetReport, any>>;
|
|
6351
|
+
getLoansReport: (data: GetReportRequest, params?: RequestParams) => Promise<AxiosResponse<GetReport, any, {}>>;
|
|
6352
6352
|
/**
|
|
6353
6353
|
* No description
|
|
6354
6354
|
*
|
|
@@ -6365,7 +6365,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6365
6365
|
createLoan: (data: any, query?: {
|
|
6366
6366
|
/** @default false */
|
|
6367
6367
|
isPatch?: boolean;
|
|
6368
|
-
}, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
6368
|
+
}, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
6369
6369
|
/**
|
|
6370
6370
|
* No description
|
|
6371
6371
|
*
|
|
@@ -6381,7 +6381,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6381
6381
|
createLoanInternal: (data: any, query?: {
|
|
6382
6382
|
/** @default false */
|
|
6383
6383
|
isPatch?: boolean;
|
|
6384
|
-
}, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
6384
|
+
}, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
6385
6385
|
/**
|
|
6386
6386
|
* No description
|
|
6387
6387
|
*
|
|
@@ -6393,7 +6393,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6393
6393
|
* @response `200` `string` Success
|
|
6394
6394
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6395
6395
|
*/
|
|
6396
|
-
updateLoanCustomFields: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
6396
|
+
updateLoanCustomFields: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
6397
6397
|
/**
|
|
6398
6398
|
* No description
|
|
6399
6399
|
*
|
|
@@ -6406,7 +6406,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6406
6406
|
* @response `202` `string` Accepted
|
|
6407
6407
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6408
6408
|
*/
|
|
6409
|
-
updateLoanConsent: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
6409
|
+
updateLoanConsent: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
6410
6410
|
/**
|
|
6411
6411
|
* No description
|
|
6412
6412
|
*
|
|
@@ -6417,7 +6417,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6417
6417
|
* @secure
|
|
6418
6418
|
* @response `200` `(DocumentData)[]` Success
|
|
6419
6419
|
*/
|
|
6420
|
-
getTaskDocumentsByLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentData[], any>>;
|
|
6420
|
+
getTaskDocumentsByLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentData[], any, {}>>;
|
|
6421
6421
|
/**
|
|
6422
6422
|
* No description
|
|
6423
6423
|
*
|
|
@@ -6431,7 +6431,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6431
6431
|
getLoanDocumentContent: (loanId: string, documentId: string, query?: {
|
|
6432
6432
|
/** @default "base64" */
|
|
6433
6433
|
contentType?: string;
|
|
6434
|
-
}, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6434
|
+
}, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6435
6435
|
/**
|
|
6436
6436
|
* No description
|
|
6437
6437
|
*
|
|
@@ -6442,7 +6442,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6442
6442
|
* @secure
|
|
6443
6443
|
* @response `204` `void` No Content
|
|
6444
6444
|
*/
|
|
6445
|
-
getLoanRecipients: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6445
|
+
getLoanRecipients: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6446
6446
|
/**
|
|
6447
6447
|
* No description
|
|
6448
6448
|
*
|
|
@@ -6453,7 +6453,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6453
6453
|
* @secure
|
|
6454
6454
|
* @response `200` `(PreliminaryCondition)[]` Success
|
|
6455
6455
|
*/
|
|
6456
|
-
getPreliminaryConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<PreliminaryCondition[], any>>;
|
|
6456
|
+
getPreliminaryConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<PreliminaryCondition[], any, {}>>;
|
|
6457
6457
|
/**
|
|
6458
6458
|
* No description
|
|
6459
6459
|
*
|
|
@@ -6464,7 +6464,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6464
6464
|
* @secure
|
|
6465
6465
|
* @response `200` `(UnderwritingCondition)[]` Success
|
|
6466
6466
|
*/
|
|
6467
|
-
getUnderwritingConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UnderwritingCondition[], any>>;
|
|
6467
|
+
getUnderwritingConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UnderwritingCondition[], any, {}>>;
|
|
6468
6468
|
/**
|
|
6469
6469
|
* No description
|
|
6470
6470
|
*
|
|
@@ -6475,7 +6475,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6475
6475
|
* @secure
|
|
6476
6476
|
* @response `200` `string` Success
|
|
6477
6477
|
*/
|
|
6478
|
-
getLoanEmbeddedSigningLink: (envelopeId: string, userName: string, email: string, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
6478
|
+
getLoanEmbeddedSigningLink: (envelopeId: string, userName: string, email: string, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
6479
6479
|
/**
|
|
6480
6480
|
* No description
|
|
6481
6481
|
*
|
|
@@ -6487,7 +6487,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6487
6487
|
* @secure
|
|
6488
6488
|
* @response `200` `DocumentDataRequest` Success
|
|
6489
6489
|
*/
|
|
6490
|
-
createLegacyLoanDocument: (data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any>>;
|
|
6490
|
+
createLegacyLoanDocument: (data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any, {}>>;
|
|
6491
6491
|
/**
|
|
6492
6492
|
* No description
|
|
6493
6493
|
*
|
|
@@ -6504,7 +6504,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6504
6504
|
createEditDraftForLoan: (loanId: string, query?: {
|
|
6505
6505
|
/** @default false */
|
|
6506
6506
|
isCoBorrower?: boolean;
|
|
6507
|
-
}, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
|
|
6507
|
+
}, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
|
|
6508
6508
|
/**
|
|
6509
6509
|
* No description
|
|
6510
6510
|
*
|
|
@@ -6520,7 +6520,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6520
6520
|
file?: File;
|
|
6521
6521
|
/** @format int32 */
|
|
6522
6522
|
weight?: number;
|
|
6523
|
-
}, params?: RequestParams) => Promise<AxiosResponse<ListingFile, any>>;
|
|
6523
|
+
}, params?: RequestParams) => Promise<AxiosResponse<ListingFile, any, {}>>;
|
|
6524
6524
|
/**
|
|
6525
6525
|
* No description
|
|
6526
6526
|
*
|
|
@@ -6531,7 +6531,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6531
6531
|
* @secure
|
|
6532
6532
|
* @response `200` `ListingFile` Success
|
|
6533
6533
|
*/
|
|
6534
|
-
updateListingFiles: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingFile, any>>;
|
|
6534
|
+
updateListingFiles: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingFile, any, {}>>;
|
|
6535
6535
|
/**
|
|
6536
6536
|
* No description
|
|
6537
6537
|
*
|
|
@@ -6542,7 +6542,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6542
6542
|
* @secure
|
|
6543
6543
|
* @response `204` `Listing` No Content
|
|
6544
6544
|
*/
|
|
6545
|
-
removeListingFile: (listingId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
|
|
6545
|
+
removeListingFile: (listingId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
|
|
6546
6546
|
/**
|
|
6547
6547
|
* No description
|
|
6548
6548
|
*
|
|
@@ -6560,7 +6560,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6560
6560
|
file?: File;
|
|
6561
6561
|
/** @format int32 */
|
|
6562
6562
|
weight?: number;
|
|
6563
|
-
}, params?: RequestParams) => Promise<AxiosResponse<ListingPhoto, any>>;
|
|
6563
|
+
}, params?: RequestParams) => Promise<AxiosResponse<ListingPhoto, any, {}>>;
|
|
6564
6564
|
/**
|
|
6565
6565
|
* No description
|
|
6566
6566
|
*
|
|
@@ -6571,7 +6571,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6571
6571
|
* @secure
|
|
6572
6572
|
* @response `200` `(ListingPhoto)[]` Success
|
|
6573
6573
|
*/
|
|
6574
|
-
updateListingPhotos: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingPhoto[], any>>;
|
|
6574
|
+
updateListingPhotos: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingPhoto[], any, {}>>;
|
|
6575
6575
|
/**
|
|
6576
6576
|
* No description
|
|
6577
6577
|
*
|
|
@@ -6582,7 +6582,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6582
6582
|
* @secure
|
|
6583
6583
|
* @response `204` `Listing` No Content
|
|
6584
6584
|
*/
|
|
6585
|
-
removeListingPhoto: (listingId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
|
|
6585
|
+
removeListingPhoto: (listingId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
|
|
6586
6586
|
/**
|
|
6587
6587
|
* No description
|
|
6588
6588
|
*
|
|
@@ -6600,7 +6600,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6600
6600
|
pageNumber?: number;
|
|
6601
6601
|
sortBy?: string;
|
|
6602
6602
|
sortDirection?: string;
|
|
6603
|
-
}, params?: RequestParams) => Promise<AxiosResponse<ListingPaginated, any>>;
|
|
6603
|
+
}, params?: RequestParams) => Promise<AxiosResponse<ListingPaginated, any, {}>>;
|
|
6604
6604
|
/**
|
|
6605
6605
|
* No description
|
|
6606
6606
|
*
|
|
@@ -6611,7 +6611,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6611
6611
|
* @secure
|
|
6612
6612
|
* @response `201` `Listing` Created
|
|
6613
6613
|
*/
|
|
6614
|
-
createListing: (data: ListingRequest, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
|
|
6614
|
+
createListing: (data: ListingRequest, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
|
|
6615
6615
|
/**
|
|
6616
6616
|
* No description
|
|
6617
6617
|
*
|
|
@@ -6622,7 +6622,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6622
6622
|
* @secure
|
|
6623
6623
|
* @response `200` `Listing` Success
|
|
6624
6624
|
*/
|
|
6625
|
-
getListingBySlug: (slug: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
|
|
6625
|
+
getListingBySlug: (slug: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
|
|
6626
6626
|
/**
|
|
6627
6627
|
* No description
|
|
6628
6628
|
*
|
|
@@ -6633,7 +6633,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6633
6633
|
* @secure
|
|
6634
6634
|
* @response `200` `Listing` Success
|
|
6635
6635
|
*/
|
|
6636
|
-
getListing: (id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
|
|
6636
|
+
getListing: (id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
|
|
6637
6637
|
/**
|
|
6638
6638
|
* No description
|
|
6639
6639
|
*
|
|
@@ -6644,7 +6644,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6644
6644
|
* @secure
|
|
6645
6645
|
* @response `200` `Listing` Success
|
|
6646
6646
|
*/
|
|
6647
|
-
replaceListing: (id: string, data: ListingRequest, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
|
|
6647
|
+
replaceListing: (id: string, data: ListingRequest, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
|
|
6648
6648
|
/**
|
|
6649
6649
|
* No description
|
|
6650
6650
|
*
|
|
@@ -6655,7 +6655,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6655
6655
|
* @secure
|
|
6656
6656
|
* @response `204` `void` No Content
|
|
6657
6657
|
*/
|
|
6658
|
-
deleteListing: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6658
|
+
deleteListing: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6659
6659
|
/**
|
|
6660
6660
|
* No description
|
|
6661
6661
|
*
|
|
@@ -6673,7 +6673,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6673
6673
|
pageNumber?: number;
|
|
6674
6674
|
sortBy?: string;
|
|
6675
6675
|
sortDirection?: string;
|
|
6676
|
-
}, params?: RequestParams) => Promise<AxiosResponse<ListingPaginated, any>>;
|
|
6676
|
+
}, params?: RequestParams) => Promise<AxiosResponse<ListingPaginated, any, {}>>;
|
|
6677
6677
|
/**
|
|
6678
6678
|
* No description
|
|
6679
6679
|
*
|
|
@@ -6687,7 +6687,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6687
6687
|
updateListingBackgroundImage: (id: string, data: {
|
|
6688
6688
|
/** @format binary */
|
|
6689
6689
|
file?: File;
|
|
6690
|
-
}, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
|
|
6690
|
+
}, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
|
|
6691
6691
|
/**
|
|
6692
6692
|
* No description
|
|
6693
6693
|
*
|
|
@@ -6698,7 +6698,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6698
6698
|
* @secure
|
|
6699
6699
|
* @response `204` `void` No Content
|
|
6700
6700
|
*/
|
|
6701
|
-
deleteListingBackgroundImage: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6701
|
+
deleteListingBackgroundImage: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6702
6702
|
/**
|
|
6703
6703
|
* No description
|
|
6704
6704
|
*
|
|
@@ -6709,7 +6709,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6709
6709
|
* @secure
|
|
6710
6710
|
* @response `200` `File` Success
|
|
6711
6711
|
*/
|
|
6712
|
-
getListingOpenHouseFlyer: (id: string, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
|
|
6712
|
+
getListingOpenHouseFlyer: (id: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
|
|
6713
6713
|
/**
|
|
6714
6714
|
* No description
|
|
6715
6715
|
*
|
|
@@ -6720,7 +6720,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6720
6720
|
* @secure
|
|
6721
6721
|
* @response `200` `RunLOCalculation` Success
|
|
6722
6722
|
*/
|
|
6723
|
-
getLoanCalculator: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any>>;
|
|
6723
|
+
getLoanCalculator: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any, {}>>;
|
|
6724
6724
|
/**
|
|
6725
6725
|
* No description
|
|
6726
6726
|
*
|
|
@@ -6733,7 +6733,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6733
6733
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6734
6734
|
* @response `423` `UnprocessableEntity` Client Error
|
|
6735
6735
|
*/
|
|
6736
|
-
runLoanCalculator: (loanId: string, data: RunLOCalculationRequest, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any>>;
|
|
6736
|
+
runLoanCalculator: (loanId: string, data: RunLOCalculationRequest, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any, {}>>;
|
|
6737
6737
|
/**
|
|
6738
6738
|
* No description
|
|
6739
6739
|
*
|
|
@@ -6744,7 +6744,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6744
6744
|
* @secure
|
|
6745
6745
|
* @response `200` `LoanComparison` Success
|
|
6746
6746
|
*/
|
|
6747
|
-
getLoanComparisons: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<LoanComparison, any>>;
|
|
6747
|
+
getLoanComparisons: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<LoanComparison, any, {}>>;
|
|
6748
6748
|
/**
|
|
6749
6749
|
* No description
|
|
6750
6750
|
*
|
|
@@ -6757,7 +6757,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6757
6757
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6758
6758
|
* @response `423` `UnprocessableEntity` Client Error
|
|
6759
6759
|
*/
|
|
6760
|
-
createLoanComparison: (loanId: string, index: number, data: LoanComparisonScenario, params?: RequestParams) => Promise<AxiosResponse<LoanComparisonScenario, any>>;
|
|
6760
|
+
createLoanComparison: (loanId: string, index: number, data: LoanComparisonScenario, params?: RequestParams) => Promise<AxiosResponse<LoanComparisonScenario, any, {}>>;
|
|
6761
6761
|
/**
|
|
6762
6762
|
* No description
|
|
6763
6763
|
*
|
|
@@ -6768,7 +6768,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6768
6768
|
* @secure
|
|
6769
6769
|
* @response `204` `void` No Content
|
|
6770
6770
|
*/
|
|
6771
|
-
deleteLoanComparison: (loanId: string, index: number, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6771
|
+
deleteLoanComparison: (loanId: string, index: number, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6772
6772
|
/**
|
|
6773
6773
|
* No description
|
|
6774
6774
|
*
|
|
@@ -6780,7 +6780,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6780
6780
|
* @response `204` `void` No Content
|
|
6781
6781
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6782
6782
|
*/
|
|
6783
|
-
createLoanComparisonPdf: (loanId: string, data: PostLoanComparisonPdfRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6783
|
+
createLoanComparisonPdf: (loanId: string, data: PostLoanComparisonPdfRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6784
6784
|
/**
|
|
6785
6785
|
* No description
|
|
6786
6786
|
*
|
|
@@ -6791,7 +6791,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6791
6791
|
* @secure
|
|
6792
6792
|
* @response `200` `(string)[]` Success
|
|
6793
6793
|
*/
|
|
6794
|
-
getLoanDocumentBuckets: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<string[], any>>;
|
|
6794
|
+
getLoanDocumentBuckets: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<string[], any, {}>>;
|
|
6795
6795
|
/**
|
|
6796
6796
|
* No description
|
|
6797
6797
|
*
|
|
@@ -6802,7 +6802,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6802
6802
|
* @secure
|
|
6803
6803
|
* @response `201` `(string)[]` Created
|
|
6804
6804
|
*/
|
|
6805
|
-
createLoanDocumentBuckets: (loanId: string, data: string[], params?: RequestParams) => Promise<AxiosResponse<string[], any>>;
|
|
6805
|
+
createLoanDocumentBuckets: (loanId: string, data: string[], params?: RequestParams) => Promise<AxiosResponse<string[], any, {}>>;
|
|
6806
6806
|
/**
|
|
6807
6807
|
* No description
|
|
6808
6808
|
*
|
|
@@ -6817,7 +6817,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6817
6817
|
getLoanDocument: (loanId: string, documentId: string, query?: {
|
|
6818
6818
|
/** @default false */
|
|
6819
6819
|
preview?: boolean;
|
|
6820
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any>>;
|
|
6820
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any, {}>>;
|
|
6821
6821
|
/**
|
|
6822
6822
|
* No description
|
|
6823
6823
|
*
|
|
@@ -6835,7 +6835,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6835
6835
|
pageNumber?: number;
|
|
6836
6836
|
sortBy?: string;
|
|
6837
6837
|
sortDirection?: string;
|
|
6838
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanDocumentSearchPaginated, any>>;
|
|
6838
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanDocumentSearchPaginated, any, {}>>;
|
|
6839
6839
|
/**
|
|
6840
6840
|
* @description Returns all documents grouped by folder for sidebar display
|
|
6841
6841
|
*
|
|
@@ -6846,7 +6846,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6846
6846
|
* @secure
|
|
6847
6847
|
* @response `200` `(DocumentFolder)[]` Success
|
|
6848
6848
|
*/
|
|
6849
|
-
getLoanDocumentFolders: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentFolder[], any>>;
|
|
6849
|
+
getLoanDocumentFolders: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentFolder[], any, {}>>;
|
|
6850
6850
|
/**
|
|
6851
6851
|
* No description
|
|
6852
6852
|
*
|
|
@@ -6858,7 +6858,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6858
6858
|
* @response `200` `string` Success
|
|
6859
6859
|
* @response `404` `ProblemDetails` Not Found
|
|
6860
6860
|
*/
|
|
6861
|
-
downloadLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
|
|
6861
|
+
downloadLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
6862
6862
|
/**
|
|
6863
6863
|
* No description
|
|
6864
6864
|
*
|
|
@@ -6876,7 +6876,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6876
6876
|
/** @format binary */
|
|
6877
6877
|
file?: File;
|
|
6878
6878
|
bucket?: string;
|
|
6879
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any>>;
|
|
6879
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any, {}>>;
|
|
6880
6880
|
/**
|
|
6881
6881
|
* No description
|
|
6882
6882
|
*
|
|
@@ -6889,7 +6889,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6889
6889
|
* @response `404` `ProblemDetails` Not Found
|
|
6890
6890
|
* @response `422` `UnprocessableEntity` Client Error
|
|
6891
6891
|
*/
|
|
6892
|
-
retryFailedLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any>>;
|
|
6892
|
+
retryFailedLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any, {}>>;
|
|
6893
6893
|
/**
|
|
6894
6894
|
* No description
|
|
6895
6895
|
*
|
|
@@ -6900,7 +6900,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6900
6900
|
* @secure
|
|
6901
6901
|
* @response `200` `DocumentDataRequest` Success
|
|
6902
6902
|
*/
|
|
6903
|
-
generateLoanDocument: (loanId: string, data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any>>;
|
|
6903
|
+
generateLoanDocument: (loanId: string, data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any, {}>>;
|
|
6904
6904
|
/**
|
|
6905
6905
|
* No description
|
|
6906
6906
|
*
|
|
@@ -6913,7 +6913,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6913
6913
|
* @response `400` `ProblemDetails` Bad Request
|
|
6914
6914
|
* @response `404` `ProblemDetails` Not Found
|
|
6915
6915
|
*/
|
|
6916
|
-
sendLoanDocuments: (loanId: string, data: SendLoanDocumentsRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6916
|
+
sendLoanDocuments: (loanId: string, data: SendLoanDocumentsRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6917
6917
|
/**
|
|
6918
6918
|
* @description Fetches all documents from Encompass that don't exist locally and stores them in S3
|
|
6919
6919
|
*
|
|
@@ -6925,7 +6925,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6925
6925
|
* @response `200` `DocumentSync` Success
|
|
6926
6926
|
* @response `404` `ProblemDetails` Not Found
|
|
6927
6927
|
*/
|
|
6928
|
-
syncLoanDocumentsFromEncompass: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentSync, any>>;
|
|
6928
|
+
syncLoanDocumentsFromEncompass: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentSync, any, {}>>;
|
|
6929
6929
|
/**
|
|
6930
6930
|
* @description Re-attempts to push a failed document to Encompass
|
|
6931
6931
|
*
|
|
@@ -6938,7 +6938,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6938
6938
|
* @response `404` `ProblemDetails` Not Found
|
|
6939
6939
|
* @response `423` `ProblemDetails` Client Error
|
|
6940
6940
|
*/
|
|
6941
|
-
retrySyncLoanDocumentToEncompass: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6941
|
+
retrySyncLoanDocumentToEncompass: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6942
6942
|
/**
|
|
6943
6943
|
* No description
|
|
6944
6944
|
*
|
|
@@ -6949,7 +6949,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6949
6949
|
* @secure
|
|
6950
6950
|
* @response `201` `Draft` Created
|
|
6951
6951
|
*/
|
|
6952
|
-
createLoanDraft: (data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
|
|
6952
|
+
createLoanDraft: (data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
|
|
6953
6953
|
/**
|
|
6954
6954
|
* No description
|
|
6955
6955
|
*
|
|
@@ -6960,7 +6960,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6960
6960
|
* @secure
|
|
6961
6961
|
* @response `200` `(DraftContent)[]` Success
|
|
6962
6962
|
*/
|
|
6963
|
-
getLoanDrafts: (params?: RequestParams) => Promise<AxiosResponse<DraftContent[], any>>;
|
|
6963
|
+
getLoanDrafts: (params?: RequestParams) => Promise<AxiosResponse<DraftContent[], any, {}>>;
|
|
6964
6964
|
/**
|
|
6965
6965
|
* No description
|
|
6966
6966
|
*
|
|
@@ -6971,7 +6971,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6971
6971
|
* @secure
|
|
6972
6972
|
* @response `200` `DraftContent` Success
|
|
6973
6973
|
*/
|
|
6974
|
-
getLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<DraftContent, any>>;
|
|
6974
|
+
getLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<DraftContent, any, {}>>;
|
|
6975
6975
|
/**
|
|
6976
6976
|
* No description
|
|
6977
6977
|
*
|
|
@@ -6982,7 +6982,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6982
6982
|
* @secure
|
|
6983
6983
|
* @response `200` `Draft` Success
|
|
6984
6984
|
*/
|
|
6985
|
-
replaceLoanDraft: (draftId: string, data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
|
|
6985
|
+
replaceLoanDraft: (draftId: string, data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
|
|
6986
6986
|
/**
|
|
6987
6987
|
* No description
|
|
6988
6988
|
*
|
|
@@ -6993,7 +6993,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6993
6993
|
* @secure
|
|
6994
6994
|
* @response `204` `void` No Content
|
|
6995
6995
|
*/
|
|
6996
|
-
deleteLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
6996
|
+
deleteLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
6997
6997
|
/**
|
|
6998
6998
|
* No description
|
|
6999
6999
|
*
|
|
@@ -7011,7 +7011,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7011
7011
|
pageNumber?: number;
|
|
7012
7012
|
sortBy?: string;
|
|
7013
7013
|
sortDirection?: string;
|
|
7014
|
-
}, params?: RequestParams) => Promise<AxiosResponse<DraftContentPaginated, any>>;
|
|
7014
|
+
}, params?: RequestParams) => Promise<AxiosResponse<DraftContentPaginated, any, {}>>;
|
|
7015
7015
|
/**
|
|
7016
7016
|
* No description
|
|
7017
7017
|
*
|
|
@@ -7022,7 +7022,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7022
7022
|
* @secure
|
|
7023
7023
|
* @response `200` `Draft` Success
|
|
7024
7024
|
*/
|
|
7025
|
-
reassignLoanOfficer: (draftId: string, data: DraftLoanOfficerReassignRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
|
|
7025
|
+
reassignLoanOfficer: (draftId: string, data: DraftLoanOfficerReassignRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
|
|
7026
7026
|
/**
|
|
7027
7027
|
* No description
|
|
7028
7028
|
*
|
|
@@ -7033,7 +7033,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7033
7033
|
* @secure
|
|
7034
7034
|
* @response `200` `Draft` Success
|
|
7035
7035
|
*/
|
|
7036
|
-
restoreLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
|
|
7036
|
+
restoreLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
|
|
7037
7037
|
/**
|
|
7038
7038
|
* No description
|
|
7039
7039
|
*
|
|
@@ -7053,7 +7053,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7053
7053
|
pageNumber?: number;
|
|
7054
7054
|
sortBy?: string;
|
|
7055
7055
|
sortDirection?: string;
|
|
7056
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanImportPaginated, any>>;
|
|
7056
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanImportPaginated, any, {}>>;
|
|
7057
7057
|
/**
|
|
7058
7058
|
* No description
|
|
7059
7059
|
*
|
|
@@ -7064,7 +7064,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7064
7064
|
* @secure
|
|
7065
7065
|
* @response `201` `LoanImport` Created
|
|
7066
7066
|
*/
|
|
7067
|
-
createLoanImport: (data: CreateLoanImportRequest, params?: RequestParams) => Promise<AxiosResponse<LoanImport, any>>;
|
|
7067
|
+
createLoanImport: (data: CreateLoanImportRequest, params?: RequestParams) => Promise<AxiosResponse<LoanImport, any, {}>>;
|
|
7068
7068
|
/**
|
|
7069
7069
|
* No description
|
|
7070
7070
|
*
|
|
@@ -7075,7 +7075,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7075
7075
|
* @secure
|
|
7076
7076
|
* @response `200` `LoanImport` Success
|
|
7077
7077
|
*/
|
|
7078
|
-
getLoanImport: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanImport, any>>;
|
|
7078
|
+
getLoanImport: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanImport, any, {}>>;
|
|
7079
7079
|
/**
|
|
7080
7080
|
* No description
|
|
7081
7081
|
*
|
|
@@ -7093,7 +7093,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7093
7093
|
pageNumber?: number;
|
|
7094
7094
|
sortBy?: string;
|
|
7095
7095
|
sortDirection?: string;
|
|
7096
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanImportLogPaginated, any>>;
|
|
7096
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanImportLogPaginated, any, {}>>;
|
|
7097
7097
|
/**
|
|
7098
7098
|
* No description
|
|
7099
7099
|
*
|
|
@@ -7105,7 +7105,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7105
7105
|
* @response `200` `(Invite)[]` Success
|
|
7106
7106
|
* @response `404` `ProblemDetails` Not Found
|
|
7107
7107
|
*/
|
|
7108
|
-
getLoanInvites: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Invite[], any>>;
|
|
7108
|
+
getLoanInvites: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Invite[], any, {}>>;
|
|
7109
7109
|
/**
|
|
7110
7110
|
* No description
|
|
7111
7111
|
*
|
|
@@ -7117,7 +7117,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7117
7117
|
* @response `200` `(Invite)[]` Success
|
|
7118
7118
|
* @response `404` `ProblemDetails` Not Found
|
|
7119
7119
|
*/
|
|
7120
|
-
inviteLoanContacts: (loanId: string, data: string[], params?: RequestParams) => Promise<AxiosResponse<Invite[], any>>;
|
|
7120
|
+
inviteLoanContacts: (loanId: string, data: string[], params?: RequestParams) => Promise<AxiosResponse<Invite[], any, {}>>;
|
|
7121
7121
|
/**
|
|
7122
7122
|
* No description
|
|
7123
7123
|
*
|
|
@@ -7135,7 +7135,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7135
7135
|
pageNumber?: number;
|
|
7136
7136
|
sortBy?: string;
|
|
7137
7137
|
sortDirection?: string;
|
|
7138
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanLogPaginated, any>>;
|
|
7138
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanLogPaginated, any, {}>>;
|
|
7139
7139
|
/**
|
|
7140
7140
|
* No description
|
|
7141
7141
|
*
|
|
@@ -7154,7 +7154,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7154
7154
|
pageNumber?: number;
|
|
7155
7155
|
sortBy?: string;
|
|
7156
7156
|
sortDirection?: string;
|
|
7157
|
-
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any>>;
|
|
7157
|
+
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any, {}>>;
|
|
7158
7158
|
/**
|
|
7159
7159
|
* No description
|
|
7160
7160
|
*
|
|
@@ -7172,7 +7172,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7172
7172
|
pageNumber?: number;
|
|
7173
7173
|
sortBy?: string;
|
|
7174
7174
|
sortDirection?: string;
|
|
7175
|
-
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any>>;
|
|
7175
|
+
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any, {}>>;
|
|
7176
7176
|
/**
|
|
7177
7177
|
* No description
|
|
7178
7178
|
*
|
|
@@ -7183,7 +7183,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7183
7183
|
* @secure
|
|
7184
7184
|
* @response `200` `BranchUser` Success
|
|
7185
7185
|
*/
|
|
7186
|
-
getLoanOfficer: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any>>;
|
|
7186
|
+
getLoanOfficer: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any, {}>>;
|
|
7187
7187
|
/**
|
|
7188
7188
|
* No description
|
|
7189
7189
|
*
|
|
@@ -7195,7 +7195,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7195
7195
|
* @response `200` `SiteConfiguration` Success
|
|
7196
7196
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7197
7197
|
*/
|
|
7198
|
-
createLoanOfficerSiteConfiguration: (loanOfficerId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
7198
|
+
createLoanOfficerSiteConfiguration: (loanOfficerId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
7199
7199
|
/**
|
|
7200
7200
|
* No description
|
|
7201
7201
|
*
|
|
@@ -7206,7 +7206,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7206
7206
|
* @secure
|
|
7207
7207
|
* @response `200` `SiteConfigurationWithInherited` Success
|
|
7208
7208
|
*/
|
|
7209
|
-
getLoanOfficerSiteConfiguration: (loanOfficerId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
|
|
7209
|
+
getLoanOfficerSiteConfiguration: (loanOfficerId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any, {}>>;
|
|
7210
7210
|
/**
|
|
7211
7211
|
* No description
|
|
7212
7212
|
*
|
|
@@ -7220,7 +7220,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7220
7220
|
*/
|
|
7221
7221
|
replaceLoanOfficerSiteConfiguration: (loanOfficerId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
|
|
7222
7222
|
applyToChildren?: boolean;
|
|
7223
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
7223
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
7224
7224
|
/**
|
|
7225
7225
|
* No description
|
|
7226
7226
|
*
|
|
@@ -7238,7 +7238,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7238
7238
|
pageNumber?: number;
|
|
7239
7239
|
sortBy?: string;
|
|
7240
7240
|
sortDirection?: string;
|
|
7241
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanQueuePaginated, any>>;
|
|
7241
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanQueuePaginated, any, {}>>;
|
|
7242
7242
|
/**
|
|
7243
7243
|
* No description
|
|
7244
7244
|
*
|
|
@@ -7250,7 +7250,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7250
7250
|
* @response `200` `any` Success
|
|
7251
7251
|
* @response `404` `ProblemDetails` Not Found
|
|
7252
7252
|
*/
|
|
7253
|
-
getLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<any, any>>;
|
|
7253
|
+
getLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
7254
7254
|
/**
|
|
7255
7255
|
* No description
|
|
7256
7256
|
*
|
|
@@ -7262,7 +7262,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7262
7262
|
* @response `200` `LoanQueueWithData` Success
|
|
7263
7263
|
* @response `404` `ProblemDetails` Not Found
|
|
7264
7264
|
*/
|
|
7265
|
-
replaceLoanQueue: (loanQueueId: string, data: UpdateLoanQueueRequest, params?: RequestParams) => Promise<AxiosResponse<LoanQueueWithData, any>>;
|
|
7265
|
+
replaceLoanQueue: (loanQueueId: string, data: UpdateLoanQueueRequest, params?: RequestParams) => Promise<AxiosResponse<LoanQueueWithData, any, {}>>;
|
|
7266
7266
|
/**
|
|
7267
7267
|
* No description
|
|
7268
7268
|
*
|
|
@@ -7274,7 +7274,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7274
7274
|
* @response `204` `void` No Content
|
|
7275
7275
|
* @response `404` `ProblemDetails` Not Found
|
|
7276
7276
|
*/
|
|
7277
|
-
deleteLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7277
|
+
deleteLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7278
7278
|
/**
|
|
7279
7279
|
* No description
|
|
7280
7280
|
*
|
|
@@ -7286,7 +7286,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7286
7286
|
* @response `204` `void` No Content
|
|
7287
7287
|
* @response `404` `ProblemDetails` Not Found
|
|
7288
7288
|
*/
|
|
7289
|
-
retryLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7289
|
+
retryLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7290
7290
|
/**
|
|
7291
7291
|
* No description
|
|
7292
7292
|
*
|
|
@@ -7298,7 +7298,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7298
7298
|
* @response `200` `Loan` Success
|
|
7299
7299
|
* @response `404` `ProblemDetails` Not Found
|
|
7300
7300
|
*/
|
|
7301
|
-
getLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any>>;
|
|
7301
|
+
getLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any, {}>>;
|
|
7302
7302
|
/**
|
|
7303
7303
|
* No description
|
|
7304
7304
|
*
|
|
@@ -7310,7 +7310,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7310
7310
|
* @secure
|
|
7311
7311
|
* @response `200` `GetApplications` Success
|
|
7312
7312
|
*/
|
|
7313
|
-
getLoans: (params?: RequestParams) => Promise<AxiosResponse<GetApplications, any>>;
|
|
7313
|
+
getLoans: (params?: RequestParams) => Promise<AxiosResponse<GetApplications, any, {}>>;
|
|
7314
7314
|
/**
|
|
7315
7315
|
* No description
|
|
7316
7316
|
*
|
|
@@ -7324,7 +7324,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7324
7324
|
* @response `401` `ProblemDetails` Unauthorized
|
|
7325
7325
|
* @response `403` `ProblemDetails` Forbidden
|
|
7326
7326
|
*/
|
|
7327
|
-
createLoanv3: (data: LoanApplicationRequest, params?: RequestParams) => Promise<AxiosResponse<LoanApplication, any>>;
|
|
7327
|
+
createLoanv3: (data: LoanApplicationRequest, params?: RequestParams) => Promise<AxiosResponse<LoanApplication, any, {}>>;
|
|
7328
7328
|
/**
|
|
7329
7329
|
* No description
|
|
7330
7330
|
*
|
|
@@ -7342,7 +7342,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7342
7342
|
pageNumber?: number;
|
|
7343
7343
|
sortBy?: string;
|
|
7344
7344
|
sortDirection?: string;
|
|
7345
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LoanListPaginated, any>>;
|
|
7345
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LoanListPaginated, any, {}>>;
|
|
7346
7346
|
/**
|
|
7347
7347
|
* No description
|
|
7348
7348
|
*
|
|
@@ -7358,7 +7358,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7358
7358
|
* @response `404` `ProblemDetails` Not Found
|
|
7359
7359
|
* @response `409` `any` Conflict
|
|
7360
7360
|
*/
|
|
7361
|
-
updateLoan: (loanId: string, data: any, params?: RequestParams) => Promise<AxiosResponse<Loan, any>>;
|
|
7361
|
+
updateLoan: (loanId: string, data: any, params?: RequestParams) => Promise<AxiosResponse<Loan, any, {}>>;
|
|
7362
7362
|
/**
|
|
7363
7363
|
* No description
|
|
7364
7364
|
*
|
|
@@ -7371,7 +7371,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7371
7371
|
* @response `400` `ProblemDetails` Bad Request
|
|
7372
7372
|
* @response `404` `ProblemDetails` Not Found
|
|
7373
7373
|
*/
|
|
7374
|
-
completeBorrowerApplication: (loanId: string, borrowerId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7374
|
+
completeBorrowerApplication: (loanId: string, borrowerId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7375
7375
|
/**
|
|
7376
7376
|
* No description
|
|
7377
7377
|
*
|
|
@@ -7382,7 +7382,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7382
7382
|
* @secure
|
|
7383
7383
|
* @response `200` `Loan` Success
|
|
7384
7384
|
*/
|
|
7385
|
-
importLoanFromLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any>>;
|
|
7385
|
+
importLoanFromLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any, {}>>;
|
|
7386
7386
|
/**
|
|
7387
7387
|
* No description
|
|
7388
7388
|
*
|
|
@@ -7401,7 +7401,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7401
7401
|
pageNumber?: number;
|
|
7402
7402
|
sortBy?: string;
|
|
7403
7403
|
sortDirection?: string;
|
|
7404
|
-
}, params?: RequestParams) => Promise<AxiosResponse<TaskCommentPaginated, any>>;
|
|
7404
|
+
}, params?: RequestParams) => Promise<AxiosResponse<TaskCommentPaginated, any, {}>>;
|
|
7405
7405
|
/**
|
|
7406
7406
|
* No description
|
|
7407
7407
|
*
|
|
@@ -7413,7 +7413,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7413
7413
|
* @response `200` `TaskComment` Success
|
|
7414
7414
|
* @response `404` `ProblemDetails` Not Found
|
|
7415
7415
|
*/
|
|
7416
|
-
getLoanTaskComment: (id: string, loanId: string, userLoanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any>>;
|
|
7416
|
+
getLoanTaskComment: (id: string, loanId: string, userLoanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any, {}>>;
|
|
7417
7417
|
/**
|
|
7418
7418
|
* No description
|
|
7419
7419
|
*
|
|
@@ -7425,7 +7425,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7425
7425
|
* @response `201` `TaskComment` Created
|
|
7426
7426
|
* @response `404` `ProblemDetails` Not Found
|
|
7427
7427
|
*/
|
|
7428
|
-
createLoanTaskComment: (loanId: string, userLoanTaskId: string, data: TaskCommentRequest, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any>>;
|
|
7428
|
+
createLoanTaskComment: (loanId: string, userLoanTaskId: string, data: TaskCommentRequest, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any, {}>>;
|
|
7429
7429
|
/**
|
|
7430
7430
|
* No description
|
|
7431
7431
|
*
|
|
@@ -7437,7 +7437,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7437
7437
|
* @response `200` `TaskComment` Success
|
|
7438
7438
|
* @response `404` `ProblemDetails` Not Found
|
|
7439
7439
|
*/
|
|
7440
|
-
replaceLoanTaskComment: (loanId: string, userLoanTaskId: string, commentId: string, data: TaskCommentRequest, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any>>;
|
|
7440
|
+
replaceLoanTaskComment: (loanId: string, userLoanTaskId: string, commentId: string, data: TaskCommentRequest, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any, {}>>;
|
|
7441
7441
|
/**
|
|
7442
7442
|
* No description
|
|
7443
7443
|
*
|
|
@@ -7449,7 +7449,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7449
7449
|
* @response `204` `void` No Content
|
|
7450
7450
|
* @response `404` `ProblemDetails` Not Found
|
|
7451
7451
|
*/
|
|
7452
|
-
deleteLoanTaskComment: (loanId: string, userLoanTaskId: string, commentId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7452
|
+
deleteLoanTaskComment: (loanId: string, userLoanTaskId: string, commentId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7453
7453
|
/**
|
|
7454
7454
|
* No description
|
|
7455
7455
|
*
|
|
@@ -7467,7 +7467,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7467
7467
|
/** @format binary */
|
|
7468
7468
|
file?: File;
|
|
7469
7469
|
bucket?: string;
|
|
7470
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
|
|
7470
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
|
|
7471
7471
|
/**
|
|
7472
7472
|
* No description
|
|
7473
7473
|
*
|
|
@@ -7479,7 +7479,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7479
7479
|
* @response `204` `UserLoanTask` No Content
|
|
7480
7480
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7481
7481
|
*/
|
|
7482
|
-
createLoanTaskDocumentBucket: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
|
|
7482
|
+
createLoanTaskDocumentBucket: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
|
|
7483
7483
|
/**
|
|
7484
7484
|
* No description
|
|
7485
7485
|
*
|
|
@@ -7491,7 +7491,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7491
7491
|
* @response `200` `(UserLoanTask)[]` Success
|
|
7492
7492
|
* @response `404` `ProblemDetails` Not Found
|
|
7493
7493
|
*/
|
|
7494
|
-
getLoanTasks: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any>>;
|
|
7494
|
+
getLoanTasks: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any, {}>>;
|
|
7495
7495
|
/**
|
|
7496
7496
|
* No description
|
|
7497
7497
|
*
|
|
@@ -7503,7 +7503,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7503
7503
|
* @response `200` `UserLoanTask` Success
|
|
7504
7504
|
* @response `404` `ProblemDetails` Not Found
|
|
7505
7505
|
*/
|
|
7506
|
-
getLoanTask: (id: string, loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
|
|
7506
|
+
getLoanTask: (id: string, loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
|
|
7507
7507
|
/**
|
|
7508
7508
|
* @description Get the difference between the current loan tasks and the tasks generated by business rules
|
|
7509
7509
|
*
|
|
@@ -7515,7 +7515,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7515
7515
|
* @response `200` `(UserLoanTask)[]` Success
|
|
7516
7516
|
* @response `404` `ProblemDetails` Not Found
|
|
7517
7517
|
*/
|
|
7518
|
-
getLoanTaskDifference: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any>>;
|
|
7518
|
+
getLoanTaskDifference: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any, {}>>;
|
|
7519
7519
|
/**
|
|
7520
7520
|
* No description
|
|
7521
7521
|
*
|
|
@@ -7527,7 +7527,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7527
7527
|
* @response `201` `UserLoanTask` Created
|
|
7528
7528
|
* @response `404` `ProblemDetails` Not Found
|
|
7529
7529
|
*/
|
|
7530
|
-
createLoanTask: (loanId: string, taskId: string, data: UserLoanTaskRequest, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
|
|
7530
|
+
createLoanTask: (loanId: string, taskId: string, data: UserLoanTaskRequest, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
|
|
7531
7531
|
/**
|
|
7532
7532
|
* No description
|
|
7533
7533
|
*
|
|
@@ -7539,7 +7539,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7539
7539
|
* @response `201` `(UserLoanTask)[]` Created
|
|
7540
7540
|
* @response `404` `ProblemDetails` Not Found
|
|
7541
7541
|
*/
|
|
7542
|
-
importLoanTask: (loanId: string, data: ImportUserLoanTaskRequest[], params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any>>;
|
|
7542
|
+
importLoanTask: (loanId: string, data: ImportUserLoanTaskRequest[], params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any, {}>>;
|
|
7543
7543
|
/**
|
|
7544
7544
|
* No description
|
|
7545
7545
|
*
|
|
@@ -7551,7 +7551,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7551
7551
|
* @response `200` `UserLoanTask` Success
|
|
7552
7552
|
* @response `404` `ProblemDetails` Not Found
|
|
7553
7553
|
*/
|
|
7554
|
-
replaceLoanTask: (loanId: string, userLoanTaskId: string, data: UserLoanTaskUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
|
|
7554
|
+
replaceLoanTask: (loanId: string, userLoanTaskId: string, data: UserLoanTaskUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
|
|
7555
7555
|
/**
|
|
7556
7556
|
* No description
|
|
7557
7557
|
*
|
|
@@ -7563,7 +7563,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7563
7563
|
* @response `204` `void` No Content
|
|
7564
7564
|
* @response `404` `ProblemDetails` Not Found
|
|
7565
7565
|
*/
|
|
7566
|
-
deleteLoanTask: (loanId: string, userLoanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7566
|
+
deleteLoanTask: (loanId: string, userLoanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7567
7567
|
/**
|
|
7568
7568
|
* No description
|
|
7569
7569
|
*
|
|
@@ -7575,7 +7575,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7575
7575
|
* @response `204` `void` No Content
|
|
7576
7576
|
* @response `404` `ProblemDetails` Not Found
|
|
7577
7577
|
*/
|
|
7578
|
-
sendOutstandingLoanTaskNotification: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7578
|
+
sendOutstandingLoanTaskNotification: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7579
7579
|
/**
|
|
7580
7580
|
* No description
|
|
7581
7581
|
*
|
|
@@ -7588,7 +7588,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7588
7588
|
* @response `404` `ProblemDetails` Not Found
|
|
7589
7589
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7590
7590
|
*/
|
|
7591
|
-
createLoanTaskVerification: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
|
|
7591
|
+
createLoanTaskVerification: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
|
|
7592
7592
|
/**
|
|
7593
7593
|
* No description
|
|
7594
7594
|
*
|
|
@@ -7599,7 +7599,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7599
7599
|
* @secure
|
|
7600
7600
|
* @response `200` `(UserLoanConsent)[]` Success
|
|
7601
7601
|
*/
|
|
7602
|
-
getLoanUserConsents: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanConsent[], any>>;
|
|
7602
|
+
getLoanUserConsents: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanConsent[], any, {}>>;
|
|
7603
7603
|
/**
|
|
7604
7604
|
* No description
|
|
7605
7605
|
*
|
|
@@ -7610,7 +7610,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7610
7610
|
* @secure
|
|
7611
7611
|
* @response `200` `LoanUser` Success
|
|
7612
7612
|
*/
|
|
7613
|
-
getLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any>>;
|
|
7613
|
+
getLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any, {}>>;
|
|
7614
7614
|
/**
|
|
7615
7615
|
* No description
|
|
7616
7616
|
*
|
|
@@ -7621,7 +7621,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7621
7621
|
* @secure
|
|
7622
7622
|
* @response `201` `LoanUser` Created
|
|
7623
7623
|
*/
|
|
7624
|
-
addLoanUser: (loanId: string, userId: string, data: CreateUserLoan, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any>>;
|
|
7624
|
+
addLoanUser: (loanId: string, userId: string, data: CreateUserLoan, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any, {}>>;
|
|
7625
7625
|
/**
|
|
7626
7626
|
* No description
|
|
7627
7627
|
*
|
|
@@ -7632,7 +7632,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7632
7632
|
* @secure
|
|
7633
7633
|
* @response `204` `LoanUser` No Content
|
|
7634
7634
|
*/
|
|
7635
|
-
removeLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any>>;
|
|
7635
|
+
removeLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any, {}>>;
|
|
7636
7636
|
/**
|
|
7637
7637
|
* No description
|
|
7638
7638
|
*
|
|
@@ -7643,7 +7643,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7643
7643
|
* @secure
|
|
7644
7644
|
* @response `204` `void` No Content
|
|
7645
7645
|
*/
|
|
7646
|
-
sendLoanUserInviteReminderNotification: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7646
|
+
sendLoanUserInviteReminderNotification: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7647
7647
|
/**
|
|
7648
7648
|
* No description
|
|
7649
7649
|
*
|
|
@@ -7654,7 +7654,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7654
7654
|
* @secure
|
|
7655
7655
|
* @response `200` `(MilestoneConfiguration)[]` Success
|
|
7656
7656
|
*/
|
|
7657
|
-
getMilestones: (params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration[], any>>;
|
|
7657
|
+
getMilestones: (params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration[], any, {}>>;
|
|
7658
7658
|
/**
|
|
7659
7659
|
* No description
|
|
7660
7660
|
*
|
|
@@ -7666,7 +7666,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7666
7666
|
* @response `201` `MilestoneConfiguration` Created
|
|
7667
7667
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7668
7668
|
*/
|
|
7669
|
-
createMilestone: (data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any>>;
|
|
7669
|
+
createMilestone: (data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any, {}>>;
|
|
7670
7670
|
/**
|
|
7671
7671
|
* No description
|
|
7672
7672
|
*
|
|
@@ -7678,7 +7678,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7678
7678
|
* @response `200` `MilestoneConfiguration` Success
|
|
7679
7679
|
* @response `404` `Error` Not Found
|
|
7680
7680
|
*/
|
|
7681
|
-
getMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any>>;
|
|
7681
|
+
getMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any, {}>>;
|
|
7682
7682
|
/**
|
|
7683
7683
|
* No description
|
|
7684
7684
|
*
|
|
@@ -7691,7 +7691,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7691
7691
|
* @response `404` `Error` Not Found
|
|
7692
7692
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7693
7693
|
*/
|
|
7694
|
-
replaceMilestone: (id: string, data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any>>;
|
|
7694
|
+
replaceMilestone: (id: string, data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any, {}>>;
|
|
7695
7695
|
/**
|
|
7696
7696
|
* No description
|
|
7697
7697
|
*
|
|
@@ -7703,7 +7703,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7703
7703
|
* @response `204` `void` No Content
|
|
7704
7704
|
* @response `404` `Error` Not Found
|
|
7705
7705
|
*/
|
|
7706
|
-
deleteMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7706
|
+
deleteMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7707
7707
|
/**
|
|
7708
7708
|
* No description
|
|
7709
7709
|
*
|
|
@@ -7715,7 +7715,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7715
7715
|
* @response `200` `MonthlyPaymentCalculator` Success
|
|
7716
7716
|
* @response `422` `ProblemDetails` Client Error
|
|
7717
7717
|
*/
|
|
7718
|
-
calculateMortgageMonthlyPayment: (data: MonthlyPaymentCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<MonthlyPaymentCalculator, any>>;
|
|
7718
|
+
calculateMortgageMonthlyPayment: (data: MonthlyPaymentCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<MonthlyPaymentCalculator, any, {}>>;
|
|
7719
7719
|
/**
|
|
7720
7720
|
* No description
|
|
7721
7721
|
*
|
|
@@ -7727,7 +7727,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7727
7727
|
* @response `200` `AffordabilityCalculator` Success
|
|
7728
7728
|
* @response `422` `ProblemDetails` Client Error
|
|
7729
7729
|
*/
|
|
7730
|
-
calculateMortgageAffordability: (data: AffordabilityCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<AffordabilityCalculator, any>>;
|
|
7730
|
+
calculateMortgageAffordability: (data: AffordabilityCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<AffordabilityCalculator, any, {}>>;
|
|
7731
7731
|
/**
|
|
7732
7732
|
* No description
|
|
7733
7733
|
*
|
|
@@ -7739,7 +7739,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7739
7739
|
* @response `200` `LoanComparisonCalculator` Success
|
|
7740
7740
|
* @response `422` `ProblemDetails` Client Error
|
|
7741
7741
|
*/
|
|
7742
|
-
calculateMortgageLoanComparison: (data: LoanComparisonCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<LoanComparisonCalculator, any>>;
|
|
7742
|
+
calculateMortgageLoanComparison: (data: LoanComparisonCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<LoanComparisonCalculator, any, {}>>;
|
|
7743
7743
|
/**
|
|
7744
7744
|
* No description
|
|
7745
7745
|
*
|
|
@@ -7751,7 +7751,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7751
7751
|
* @response `200` `RefinanceCalculator` Success
|
|
7752
7752
|
* @response `422` `ProblemDetails` Client Error
|
|
7753
7753
|
*/
|
|
7754
|
-
calculateMortgageRefinance: (data: RefinanceCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<RefinanceCalculator, any>>;
|
|
7754
|
+
calculateMortgageRefinance: (data: RefinanceCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<RefinanceCalculator, any, {}>>;
|
|
7755
7755
|
/**
|
|
7756
7756
|
* No description
|
|
7757
7757
|
*
|
|
@@ -7763,7 +7763,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7763
7763
|
* @response `200` `void` Success
|
|
7764
7764
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7765
7765
|
*/
|
|
7766
|
-
sendNotificationForLoan: (data: SendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7766
|
+
sendNotificationForLoan: (data: SendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7767
7767
|
/**
|
|
7768
7768
|
* No description
|
|
7769
7769
|
*
|
|
@@ -7775,7 +7775,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7775
7775
|
* @response `200` `void` Success
|
|
7776
7776
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7777
7777
|
*/
|
|
7778
|
-
sendTestNotificationForLoan: (data: TestSendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7778
|
+
sendTestNotificationForLoan: (data: TestSendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7779
7779
|
/**
|
|
7780
7780
|
* No description
|
|
7781
7781
|
*
|
|
@@ -7788,7 +7788,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7788
7788
|
*/
|
|
7789
7789
|
getNotificationTemplates: (query?: {
|
|
7790
7790
|
showAll?: boolean;
|
|
7791
|
-
}, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateBase[], any>>;
|
|
7791
|
+
}, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateBase[], any, {}>>;
|
|
7792
7792
|
/**
|
|
7793
7793
|
* No description
|
|
7794
7794
|
*
|
|
@@ -7800,7 +7800,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7800
7800
|
* @response `201` `NotificationTemplate` Created
|
|
7801
7801
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7802
7802
|
*/
|
|
7803
|
-
createNotificationTemplate: (data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
|
|
7803
|
+
createNotificationTemplate: (data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any, {}>>;
|
|
7804
7804
|
/**
|
|
7805
7805
|
* No description
|
|
7806
7806
|
*
|
|
@@ -7811,7 +7811,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7811
7811
|
* @secure
|
|
7812
7812
|
* @response `200` `NotificationTemplate` Success
|
|
7813
7813
|
*/
|
|
7814
|
-
getNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
|
|
7814
|
+
getNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any, {}>>;
|
|
7815
7815
|
/**
|
|
7816
7816
|
* No description
|
|
7817
7817
|
*
|
|
@@ -7823,7 +7823,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7823
7823
|
* @response `200` `NotificationTemplate` Success
|
|
7824
7824
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7825
7825
|
*/
|
|
7826
|
-
replaceNotificationTemplate: (id: string, data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
|
|
7826
|
+
replaceNotificationTemplate: (id: string, data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any, {}>>;
|
|
7827
7827
|
/**
|
|
7828
7828
|
* No description
|
|
7829
7829
|
*
|
|
@@ -7834,7 +7834,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7834
7834
|
* @secure
|
|
7835
7835
|
* @response `204` `void` No Content
|
|
7836
7836
|
*/
|
|
7837
|
-
deleteNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
7837
|
+
deleteNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7838
7838
|
/**
|
|
7839
7839
|
* No description
|
|
7840
7840
|
*
|
|
@@ -7845,7 +7845,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7845
7845
|
* @secure
|
|
7846
7846
|
* @response `200` `NotificationTemplate` Success
|
|
7847
7847
|
*/
|
|
7848
|
-
restoreNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
|
|
7848
|
+
restoreNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any, {}>>;
|
|
7849
7849
|
/**
|
|
7850
7850
|
* No description
|
|
7851
7851
|
*
|
|
@@ -7856,7 +7856,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7856
7856
|
* @secure
|
|
7857
7857
|
* @response `200` `(NotificationTemplateVersion)[]` Success
|
|
7858
7858
|
*/
|
|
7859
|
-
getNotificationTemplateVersions: (notificationId: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion[], any>>;
|
|
7859
|
+
getNotificationTemplateVersions: (notificationId: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion[], any, {}>>;
|
|
7860
7860
|
/**
|
|
7861
7861
|
* No description
|
|
7862
7862
|
*
|
|
@@ -7867,7 +7867,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7867
7867
|
* @secure
|
|
7868
7868
|
* @response `200` `NotificationTemplateVersion` Success
|
|
7869
7869
|
*/
|
|
7870
|
-
createNotificationTemplateVersion: (notificationId: string, data: NotificationTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
|
|
7870
|
+
createNotificationTemplateVersion: (notificationId: string, data: NotificationTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any, {}>>;
|
|
7871
7871
|
/**
|
|
7872
7872
|
* No description
|
|
7873
7873
|
*
|
|
@@ -7878,7 +7878,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7878
7878
|
* @secure
|
|
7879
7879
|
* @response `200` `NotificationTemplateVersion` Success
|
|
7880
7880
|
*/
|
|
7881
|
-
getNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
|
|
7881
|
+
getNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any, {}>>;
|
|
7882
7882
|
/**
|
|
7883
7883
|
* No description
|
|
7884
7884
|
*
|
|
@@ -7889,7 +7889,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7889
7889
|
* @secure
|
|
7890
7890
|
* @response `200` `NotificationTemplateVersion` Success
|
|
7891
7891
|
*/
|
|
7892
|
-
replaceNotificationTemplateVersion: (notificationId: string, id: string, data: NotificationTemplateVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
|
|
7892
|
+
replaceNotificationTemplateVersion: (notificationId: string, id: string, data: NotificationTemplateVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any, {}>>;
|
|
7893
7893
|
/**
|
|
7894
7894
|
* No description
|
|
7895
7895
|
*
|
|
@@ -7900,7 +7900,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7900
7900
|
* @secure
|
|
7901
7901
|
* @response `200` `NotificationTemplateVersion` Success
|
|
7902
7902
|
*/
|
|
7903
|
-
deleteNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
|
|
7903
|
+
deleteNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any, {}>>;
|
|
7904
7904
|
/**
|
|
7905
7905
|
* No description
|
|
7906
7906
|
*
|
|
@@ -7921,7 +7921,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7921
7921
|
pageNumber?: number;
|
|
7922
7922
|
sortBy?: string;
|
|
7923
7923
|
sortDirection?: string;
|
|
7924
|
-
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any>>;
|
|
7924
|
+
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any, {}>>;
|
|
7925
7925
|
/**
|
|
7926
7926
|
* No description
|
|
7927
7927
|
*
|
|
@@ -7939,7 +7939,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7939
7939
|
pageNumber?: number;
|
|
7940
7940
|
sortBy?: string;
|
|
7941
7941
|
sortDirection?: string;
|
|
7942
|
-
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any>>;
|
|
7942
|
+
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any, {}>>;
|
|
7943
7943
|
/**
|
|
7944
7944
|
* No description
|
|
7945
7945
|
*
|
|
@@ -7950,7 +7950,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7950
7950
|
* @secure
|
|
7951
7951
|
* @response `200` `BranchUser` Success
|
|
7952
7952
|
*/
|
|
7953
|
-
getPartner: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any>>;
|
|
7953
|
+
getPartner: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any, {}>>;
|
|
7954
7954
|
/**
|
|
7955
7955
|
* No description
|
|
7956
7956
|
*
|
|
@@ -7962,7 +7962,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7962
7962
|
* @response `200` `SiteConfiguration` Success
|
|
7963
7963
|
* @response `422` `UnprocessableEntity` Client Error
|
|
7964
7964
|
*/
|
|
7965
|
-
createPartnerSiteConfiguration: (realtorId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
7965
|
+
createPartnerSiteConfiguration: (realtorId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
7966
7966
|
/**
|
|
7967
7967
|
* No description
|
|
7968
7968
|
*
|
|
@@ -7973,7 +7973,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7973
7973
|
* @secure
|
|
7974
7974
|
* @response `200` `SiteConfigurationWithInherited` Success
|
|
7975
7975
|
*/
|
|
7976
|
-
getPartnerSiteConfiguration: (realtorId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
|
|
7976
|
+
getPartnerSiteConfiguration: (realtorId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any, {}>>;
|
|
7977
7977
|
/**
|
|
7978
7978
|
* No description
|
|
7979
7979
|
*
|
|
@@ -7987,7 +7987,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7987
7987
|
*/
|
|
7988
7988
|
replacePartnerSiteConfiguration: (realtorId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
|
|
7989
7989
|
applyToChildren?: boolean;
|
|
7990
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
7990
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
7991
7991
|
/**
|
|
7992
7992
|
* No description
|
|
7993
7993
|
*
|
|
@@ -7998,7 +7998,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7998
7998
|
* @secure
|
|
7999
7999
|
* @response `200` `SiteConfiguration` Success
|
|
8000
8000
|
*/
|
|
8001
|
-
getSiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
8001
|
+
getSiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
8002
8002
|
/**
|
|
8003
8003
|
* No description
|
|
8004
8004
|
*
|
|
@@ -8011,7 +8011,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8011
8011
|
* @response `200` `SiteConfigurationByUrl` Success
|
|
8012
8012
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8013
8013
|
*/
|
|
8014
|
-
searchSiteConfigurationByUrl: (data: GetSiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationByUrl, any>>;
|
|
8014
|
+
searchSiteConfigurationByUrl: (data: GetSiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationByUrl, any, {}>>;
|
|
8015
8015
|
/**
|
|
8016
8016
|
* No description
|
|
8017
8017
|
*
|
|
@@ -8025,7 +8025,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8025
8025
|
*/
|
|
8026
8026
|
getSiteConfigurationByUrl: (query?: {
|
|
8027
8027
|
url?: string;
|
|
8028
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationByUrl, any>>;
|
|
8028
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationByUrl, any, {}>>;
|
|
8029
8029
|
/**
|
|
8030
8030
|
* No description
|
|
8031
8031
|
*
|
|
@@ -8038,7 +8038,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8038
8038
|
* @response `200` `SiteConfiguration` Success
|
|
8039
8039
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8040
8040
|
*/
|
|
8041
|
-
searchSiteConfigurationByLoanOfficerUser: (data: GetSiteConfigurationByLOUserIDRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
8041
|
+
searchSiteConfigurationByLoanOfficerUser: (data: GetSiteConfigurationByLOUserIDRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
8042
8042
|
/**
|
|
8043
8043
|
* No description
|
|
8044
8044
|
*
|
|
@@ -8050,7 +8050,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8050
8050
|
* @response `200` `SiteConfiguration` Success
|
|
8051
8051
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8052
8052
|
*/
|
|
8053
|
-
getSiteConfigurationByLoanOfficerUser: (loUserId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
|
|
8053
|
+
getSiteConfigurationByLoanOfficerUser: (loUserId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
8054
8054
|
/**
|
|
8055
8055
|
* No description
|
|
8056
8056
|
*
|
|
@@ -8069,7 +8069,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8069
8069
|
pageNumber?: number;
|
|
8070
8070
|
sortBy?: string;
|
|
8071
8071
|
sortDirection?: string;
|
|
8072
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationSummaryPaginated, any>>;
|
|
8072
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationSummaryPaginated, any, {}>>;
|
|
8073
8073
|
/**
|
|
8074
8074
|
* No description
|
|
8075
8075
|
*
|
|
@@ -8080,7 +8080,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8080
8080
|
* @secure
|
|
8081
8081
|
* @response `200` `(AdminAccessGetForms)[]` Success
|
|
8082
8082
|
*/
|
|
8083
|
-
getFormsBySiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms[], any>>;
|
|
8083
|
+
getFormsBySiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms[], any, {}>>;
|
|
8084
8084
|
/**
|
|
8085
8085
|
* No description
|
|
8086
8086
|
*
|
|
@@ -8092,7 +8092,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8092
8092
|
* @response `200` `File` Success
|
|
8093
8093
|
* @response `404` `ProblemDetails` Not Found
|
|
8094
8094
|
*/
|
|
8095
|
-
getSamlMetadata: (sSoIntegration: "ConsumerConnect" | "TheBigPOS" | "POSF", ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
|
|
8095
|
+
getSamlMetadata: (sSoIntegration: "ConsumerConnect" | "TheBigPOS" | "POSF", ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
|
|
8096
8096
|
/**
|
|
8097
8097
|
* No description
|
|
8098
8098
|
*
|
|
@@ -8103,7 +8103,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8103
8103
|
* @secure
|
|
8104
8104
|
* @response `200` `File` Success
|
|
8105
8105
|
*/
|
|
8106
|
-
createOrReplaceSamlMetadata: (sSoIntegration: "ConsumerConnect" | "TheBigPOS" | "POSF", ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
|
|
8106
|
+
createOrReplaceSamlMetadata: (sSoIntegration: "ConsumerConnect" | "TheBigPOS" | "POSF", ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
|
|
8107
8107
|
/**
|
|
8108
8108
|
* No description
|
|
8109
8109
|
*
|
|
@@ -8114,7 +8114,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8114
8114
|
* @secure
|
|
8115
8115
|
* @response `200` `(SiteConfigurationForm)[]` Success
|
|
8116
8116
|
*/
|
|
8117
|
-
getWorkflowSiteConfigurations: (workflowId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm[], any>>;
|
|
8117
|
+
getWorkflowSiteConfigurations: (workflowId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm[], any, {}>>;
|
|
8118
8118
|
/**
|
|
8119
8119
|
* No description
|
|
8120
8120
|
*
|
|
@@ -8126,7 +8126,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8126
8126
|
* @response `200` `SiteConfigurationForm` Success
|
|
8127
8127
|
* @response `404` `ProblemDetails` Not Found
|
|
8128
8128
|
*/
|
|
8129
|
-
getWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any>>;
|
|
8129
|
+
getWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any, {}>>;
|
|
8130
8130
|
/**
|
|
8131
8131
|
* No description
|
|
8132
8132
|
*
|
|
@@ -8139,7 +8139,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8139
8139
|
* @response `409` `ProblemDetails` Conflict
|
|
8140
8140
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8141
8141
|
*/
|
|
8142
|
-
createWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any>>;
|
|
8142
|
+
createWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any, {}>>;
|
|
8143
8143
|
/**
|
|
8144
8144
|
* No description
|
|
8145
8145
|
*
|
|
@@ -8150,7 +8150,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8150
8150
|
* @secure
|
|
8151
8151
|
* @response `204` `void` No Content
|
|
8152
8152
|
*/
|
|
8153
|
-
deleteWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8153
|
+
deleteWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8154
8154
|
/**
|
|
8155
8155
|
* No description
|
|
8156
8156
|
*
|
|
@@ -8161,7 +8161,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8161
8161
|
* @secure
|
|
8162
8162
|
* @response `200` `GetForm` Success
|
|
8163
8163
|
*/
|
|
8164
|
-
getFormBySiteConfigurationSlug: (data: GetSiteFormRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any>>;
|
|
8164
|
+
getFormBySiteConfigurationSlug: (data: GetSiteFormRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any, {}>>;
|
|
8165
8165
|
/**
|
|
8166
8166
|
* No description
|
|
8167
8167
|
*
|
|
@@ -8175,7 +8175,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8175
8175
|
getSurveysByUsers: (query?: {
|
|
8176
8176
|
/** @format int32 */
|
|
8177
8177
|
limit?: number;
|
|
8178
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SocialSurveyRecord[], any>>;
|
|
8178
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SocialSurveyRecord[], any, {}>>;
|
|
8179
8179
|
/**
|
|
8180
8180
|
* No description
|
|
8181
8181
|
*
|
|
@@ -8187,7 +8187,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8187
8187
|
* @response `200` `(SocialSurveyRecord)[]` Success
|
|
8188
8188
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8189
8189
|
*/
|
|
8190
|
-
getSurveysByUser: (data: SurveyEmailRequest, params?: RequestParams) => Promise<AxiosResponse<SocialSurveyRecord[], any>>;
|
|
8190
|
+
getSurveysByUser: (data: SurveyEmailRequest, params?: RequestParams) => Promise<AxiosResponse<SocialSurveyRecord[], any, {}>>;
|
|
8191
8191
|
/**
|
|
8192
8192
|
* No description
|
|
8193
8193
|
*
|
|
@@ -8206,7 +8206,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8206
8206
|
pageNumber?: number;
|
|
8207
8207
|
sortBy?: string;
|
|
8208
8208
|
sortDirection?: string;
|
|
8209
|
-
}, params?: RequestParams) => Promise<AxiosResponse<Task, any>>;
|
|
8209
|
+
}, params?: RequestParams) => Promise<AxiosResponse<Task, any, {}>>;
|
|
8210
8210
|
/**
|
|
8211
8211
|
* No description
|
|
8212
8212
|
*
|
|
@@ -8217,7 +8217,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8217
8217
|
* @secure
|
|
8218
8218
|
* @response `201` `Task` Created
|
|
8219
8219
|
*/
|
|
8220
|
-
createTask: (data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<Task, any>>;
|
|
8220
|
+
createTask: (data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<Task, any, {}>>;
|
|
8221
8221
|
/**
|
|
8222
8222
|
* No description
|
|
8223
8223
|
*
|
|
@@ -8229,7 +8229,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8229
8229
|
* @response `200` `Task` Success
|
|
8230
8230
|
* @response `404` `ProblemDetails` Not Found
|
|
8231
8231
|
*/
|
|
8232
|
-
getTask: (id: string, params?: RequestParams) => Promise<AxiosResponse<Task, any>>;
|
|
8232
|
+
getTask: (id: string, params?: RequestParams) => Promise<AxiosResponse<Task, any, {}>>;
|
|
8233
8233
|
/**
|
|
8234
8234
|
* No description
|
|
8235
8235
|
*
|
|
@@ -8241,7 +8241,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8241
8241
|
* @response `200` `void` Success
|
|
8242
8242
|
* @response `404` `ProblemDetails` Not Found
|
|
8243
8243
|
*/
|
|
8244
|
-
replaceTask: (id: string, data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8244
|
+
replaceTask: (id: string, data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8245
8245
|
/**
|
|
8246
8246
|
* No description
|
|
8247
8247
|
*
|
|
@@ -8253,7 +8253,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8253
8253
|
* @response `204` `void` No Content
|
|
8254
8254
|
* @response `404` `ProblemDetails` Not Found
|
|
8255
8255
|
*/
|
|
8256
|
-
deleteTask: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8256
|
+
deleteTask: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8257
8257
|
/**
|
|
8258
8258
|
* No description
|
|
8259
8259
|
*
|
|
@@ -8271,7 +8271,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8271
8271
|
pageNumber?: number;
|
|
8272
8272
|
sortBy?: string;
|
|
8273
8273
|
sortDirection?: string;
|
|
8274
|
-
}, params?: RequestParams) => Promise<AxiosResponse<TaskPaginated, any>>;
|
|
8274
|
+
}, params?: RequestParams) => Promise<AxiosResponse<TaskPaginated, any, {}>>;
|
|
8275
8275
|
/**
|
|
8276
8276
|
* No description
|
|
8277
8277
|
*
|
|
@@ -8281,7 +8281,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8281
8281
|
* @secure
|
|
8282
8282
|
* @response `200` `void` Success
|
|
8283
8283
|
*/
|
|
8284
|
-
integrationsLosLoansCreate: (data: LosLoanCreationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8284
|
+
integrationsLosLoansCreate: (data: LosLoanCreationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8285
8285
|
/**
|
|
8286
8286
|
* No description
|
|
8287
8287
|
*
|
|
@@ -8293,7 +8293,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8293
8293
|
* @response `200` `UsageReport` Success
|
|
8294
8294
|
* @response `404` `ProblemDetails` Not Found
|
|
8295
8295
|
*/
|
|
8296
|
-
getUsageReportById: (id: string, params?: RequestParams) => Promise<AxiosResponse<UsageReport, any>>;
|
|
8296
|
+
getUsageReportById: (id: string, params?: RequestParams) => Promise<AxiosResponse<UsageReport, any, {}>>;
|
|
8297
8297
|
/**
|
|
8298
8298
|
* No description
|
|
8299
8299
|
*
|
|
@@ -8310,7 +8310,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8310
8310
|
month?: number;
|
|
8311
8311
|
/** @format int32 */
|
|
8312
8312
|
year?: number;
|
|
8313
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UsageReport[], any>>;
|
|
8313
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UsageReport[], any, {}>>;
|
|
8314
8314
|
/**
|
|
8315
8315
|
* No description
|
|
8316
8316
|
*
|
|
@@ -8327,7 +8327,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8327
8327
|
month?: number;
|
|
8328
8328
|
/** @format int32 */
|
|
8329
8329
|
year?: number;
|
|
8330
|
-
}, params?: RequestParams) => Promise<AxiosResponse<any, any>>;
|
|
8330
|
+
}, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
8331
8331
|
/**
|
|
8332
8332
|
* No description
|
|
8333
8333
|
*
|
|
@@ -8338,7 +8338,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8338
8338
|
* @secure
|
|
8339
8339
|
* @response `200` `UsageReportDashboard` Success
|
|
8340
8340
|
*/
|
|
8341
|
-
getUsageReportDashboard: (params?: RequestParams) => Promise<AxiosResponse<UsageReportDashboard, any>>;
|
|
8341
|
+
getUsageReportDashboard: (params?: RequestParams) => Promise<AxiosResponse<UsageReportDashboard, any, {}>>;
|
|
8342
8342
|
/**
|
|
8343
8343
|
* No description
|
|
8344
8344
|
*
|
|
@@ -8350,7 +8350,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8350
8350
|
* @response `200` `UsageReportExecution` Success
|
|
8351
8351
|
* @response `404` `ProblemDetails` Not Found
|
|
8352
8352
|
*/
|
|
8353
|
-
getUsageReportExecution: (correlationId: string, params?: RequestParams) => Promise<AxiosResponse<UsageReportExecution, any>>;
|
|
8353
|
+
getUsageReportExecution: (correlationId: string, params?: RequestParams) => Promise<AxiosResponse<UsageReportExecution, any, {}>>;
|
|
8354
8354
|
/**
|
|
8355
8355
|
* No description
|
|
8356
8356
|
*
|
|
@@ -8367,7 +8367,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8367
8367
|
month?: number;
|
|
8368
8368
|
/** @format int32 */
|
|
8369
8369
|
year?: number;
|
|
8370
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UsageReportExecution[], any>>;
|
|
8370
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UsageReportExecution[], any, {}>>;
|
|
8371
8371
|
/**
|
|
8372
8372
|
* No description
|
|
8373
8373
|
*
|
|
@@ -8379,7 +8379,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8379
8379
|
* @response `201` `UserDevice` Created
|
|
8380
8380
|
* @response `400` `ProblemDetails` Bad Request
|
|
8381
8381
|
*/
|
|
8382
|
-
createUserDevice: (data: CreateUserDeviceRequest, params?: RequestParams) => Promise<AxiosResponse<UserDevice, any>>;
|
|
8382
|
+
createUserDevice: (data: CreateUserDeviceRequest, params?: RequestParams) => Promise<AxiosResponse<UserDevice, any, {}>>;
|
|
8383
8383
|
/**
|
|
8384
8384
|
* No description
|
|
8385
8385
|
*
|
|
@@ -8391,7 +8391,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8391
8391
|
* @response `204` `void` No Content
|
|
8392
8392
|
* @response `404` `ProblemDetails` Not Found
|
|
8393
8393
|
*/
|
|
8394
|
-
deleteUserDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8394
|
+
deleteUserDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8395
8395
|
/**
|
|
8396
8396
|
* No description
|
|
8397
8397
|
*
|
|
@@ -8409,7 +8409,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8409
8409
|
pageNumber?: number;
|
|
8410
8410
|
sortBy?: string;
|
|
8411
8411
|
sortDirection?: string;
|
|
8412
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UserDraftPaginated, any>>;
|
|
8412
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UserDraftPaginated, any, {}>>;
|
|
8413
8413
|
/**
|
|
8414
8414
|
* No description
|
|
8415
8415
|
*
|
|
@@ -8420,7 +8420,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8420
8420
|
* @secure
|
|
8421
8421
|
* @response `200` `UserDraft` Success
|
|
8422
8422
|
*/
|
|
8423
|
-
getDraftUser: (draftId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<UserDraft, any>>;
|
|
8423
|
+
getDraftUser: (draftId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<UserDraft, any, {}>>;
|
|
8424
8424
|
/**
|
|
8425
8425
|
* No description
|
|
8426
8426
|
*
|
|
@@ -8431,7 +8431,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8431
8431
|
* @secure
|
|
8432
8432
|
* @response `200` `UserDraft` Success
|
|
8433
8433
|
*/
|
|
8434
|
-
addDraftUsers: (draftId: string, userId: string, data: CreateUserDraft, params?: RequestParams) => Promise<AxiosResponse<UserDraft, any>>;
|
|
8434
|
+
addDraftUsers: (draftId: string, userId: string, data: CreateUserDraft, params?: RequestParams) => Promise<AxiosResponse<UserDraft, any, {}>>;
|
|
8435
8435
|
/**
|
|
8436
8436
|
* No description
|
|
8437
8437
|
*
|
|
@@ -8442,7 +8442,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8442
8442
|
* @secure
|
|
8443
8443
|
* @response `204` `void` No Content
|
|
8444
8444
|
*/
|
|
8445
|
-
deleteDraftUser: (draftId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8445
|
+
deleteDraftUser: (draftId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8446
8446
|
/**
|
|
8447
8447
|
* No description
|
|
8448
8448
|
*
|
|
@@ -8453,7 +8453,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8453
8453
|
* @secure
|
|
8454
8454
|
* @response `200` `(UserGroupAccessScope)[]` Success
|
|
8455
8455
|
*/
|
|
8456
|
-
getUserGroupAccessScopes: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope[], any>>;
|
|
8456
|
+
getUserGroupAccessScopes: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope[], any, {}>>;
|
|
8457
8457
|
/**
|
|
8458
8458
|
* No description
|
|
8459
8459
|
*
|
|
@@ -8464,7 +8464,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8464
8464
|
* @secure
|
|
8465
8465
|
* @response `200` `UserGroupAccessScope` Success
|
|
8466
8466
|
*/
|
|
8467
|
-
createUserGroupAccessScope: (groupId: string, data: CreateAccessScopeRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope, any>>;
|
|
8467
|
+
createUserGroupAccessScope: (groupId: string, data: CreateAccessScopeRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope, any, {}>>;
|
|
8468
8468
|
/**
|
|
8469
8469
|
* No description
|
|
8470
8470
|
*
|
|
@@ -8475,7 +8475,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8475
8475
|
* @secure
|
|
8476
8476
|
* @response `204` `void` No Content
|
|
8477
8477
|
*/
|
|
8478
|
-
deleteUserGroupAccessScope: (groupId: string, scopeId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8478
|
+
deleteUserGroupAccessScope: (groupId: string, scopeId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8479
8479
|
/**
|
|
8480
8480
|
* No description
|
|
8481
8481
|
*
|
|
@@ -8486,7 +8486,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8486
8486
|
* @secure
|
|
8487
8487
|
* @response `200` `(UserGroupMember)[]` Success
|
|
8488
8488
|
*/
|
|
8489
|
-
getUserGroupMembers: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupMember[], any>>;
|
|
8489
|
+
getUserGroupMembers: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupMember[], any, {}>>;
|
|
8490
8490
|
/**
|
|
8491
8491
|
* No description
|
|
8492
8492
|
*
|
|
@@ -8500,7 +8500,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8500
8500
|
createUserGroupMember: (groupId: string, data: CreateGroupMemberRequest, query?: {
|
|
8501
8501
|
/** @format uuid */
|
|
8502
8502
|
userId?: string;
|
|
8503
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UserGroupMember, any>>;
|
|
8503
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UserGroupMember, any, {}>>;
|
|
8504
8504
|
/**
|
|
8505
8505
|
* No description
|
|
8506
8506
|
*
|
|
@@ -8511,7 +8511,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8511
8511
|
* @secure
|
|
8512
8512
|
* @response `204` `void` No Content
|
|
8513
8513
|
*/
|
|
8514
|
-
deleteUserGroupMember: (groupId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8514
|
+
deleteUserGroupMember: (groupId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8515
8515
|
/**
|
|
8516
8516
|
* No description
|
|
8517
8517
|
*
|
|
@@ -8530,7 +8530,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8530
8530
|
pageNumber?: number;
|
|
8531
8531
|
sortBy?: string;
|
|
8532
8532
|
sortDirection?: string;
|
|
8533
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UserGroupPaginated, any>>;
|
|
8533
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UserGroupPaginated, any, {}>>;
|
|
8534
8534
|
/**
|
|
8535
8535
|
* No description
|
|
8536
8536
|
*
|
|
@@ -8541,7 +8541,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8541
8541
|
* @secure
|
|
8542
8542
|
* @response `200` `UserGroup` Success
|
|
8543
8543
|
*/
|
|
8544
|
-
getUserGroup: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any>>;
|
|
8544
|
+
getUserGroup: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any, {}>>;
|
|
8545
8545
|
/**
|
|
8546
8546
|
* No description
|
|
8547
8547
|
*
|
|
@@ -8552,7 +8552,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8552
8552
|
* @secure
|
|
8553
8553
|
* @response `200` `UserGroup` Success
|
|
8554
8554
|
*/
|
|
8555
|
-
updateUserGroup: (groupId: string, data: UpdateUserGroupRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any>>;
|
|
8555
|
+
updateUserGroup: (groupId: string, data: UpdateUserGroupRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any, {}>>;
|
|
8556
8556
|
/**
|
|
8557
8557
|
* No description
|
|
8558
8558
|
*
|
|
@@ -8563,7 +8563,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8563
8563
|
* @secure
|
|
8564
8564
|
* @response `204` `void` No Content
|
|
8565
8565
|
*/
|
|
8566
|
-
deleteUserGroup: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8566
|
+
deleteUserGroup: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8567
8567
|
/**
|
|
8568
8568
|
* No description
|
|
8569
8569
|
*
|
|
@@ -8574,7 +8574,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8574
8574
|
* @secure
|
|
8575
8575
|
* @response `201` `UserGroup` Created
|
|
8576
8576
|
*/
|
|
8577
|
-
createUserGroup: (data: CreateUserGroupRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any>>;
|
|
8577
|
+
createUserGroup: (data: CreateUserGroupRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any, {}>>;
|
|
8578
8578
|
/**
|
|
8579
8579
|
* No description
|
|
8580
8580
|
*
|
|
@@ -8587,7 +8587,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8587
8587
|
* @response `404` `Error` Not Found
|
|
8588
8588
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8589
8589
|
*/
|
|
8590
|
-
requestImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8590
|
+
requestImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8591
8591
|
/**
|
|
8592
8592
|
* No description
|
|
8593
8593
|
*
|
|
@@ -8600,7 +8600,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8600
8600
|
* @response `404` `Error` Not Found
|
|
8601
8601
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8602
8602
|
*/
|
|
8603
|
-
allowImpersonation: (data: AllowImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8603
|
+
allowImpersonation: (data: AllowImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8604
8604
|
/**
|
|
8605
8605
|
* No description
|
|
8606
8606
|
*
|
|
@@ -8613,7 +8613,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8613
8613
|
* @response `404` `Error` Not Found
|
|
8614
8614
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8615
8615
|
*/
|
|
8616
|
-
allowImpersonationWithGuid: (allowToken: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8616
|
+
allowImpersonationWithGuid: (allowToken: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8617
8617
|
/**
|
|
8618
8618
|
* No description
|
|
8619
8619
|
*
|
|
@@ -8625,7 +8625,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8625
8625
|
* @response `204` `void` No Content
|
|
8626
8626
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8627
8627
|
*/
|
|
8628
|
-
beginImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8628
|
+
beginImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8629
8629
|
/**
|
|
8630
8630
|
* No description
|
|
8631
8631
|
*
|
|
@@ -8637,7 +8637,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8637
8637
|
* @response `204` `void` No Content
|
|
8638
8638
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8639
8639
|
*/
|
|
8640
|
-
stopImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8640
|
+
stopImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8641
8641
|
/**
|
|
8642
8642
|
* No description
|
|
8643
8643
|
*
|
|
@@ -8650,7 +8650,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8650
8650
|
* @response `404` `Error` Not Found
|
|
8651
8651
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8652
8652
|
*/
|
|
8653
|
-
forceImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8653
|
+
forceImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8654
8654
|
/**
|
|
8655
8655
|
* No description
|
|
8656
8656
|
*
|
|
@@ -8662,7 +8662,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8662
8662
|
* @response `204` `void` No Content
|
|
8663
8663
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8664
8664
|
*/
|
|
8665
|
-
extendImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8665
|
+
extendImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8666
8666
|
/**
|
|
8667
8667
|
* No description
|
|
8668
8668
|
*
|
|
@@ -8674,7 +8674,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8674
8674
|
* @response `204` `void` No Content
|
|
8675
8675
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8676
8676
|
*/
|
|
8677
|
-
inviteUser: (data: CreateInviteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8677
|
+
inviteUser: (data: CreateInviteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8678
8678
|
/**
|
|
8679
8679
|
* No description
|
|
8680
8680
|
*
|
|
@@ -8687,7 +8687,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8687
8687
|
* @response `401` `UnprocessableEntity` Unauthorized
|
|
8688
8688
|
* @response `404` `UnprocessableEntity` Not Found
|
|
8689
8689
|
*/
|
|
8690
|
-
resendInviteNotification: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8690
|
+
resendInviteNotification: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8691
8691
|
/**
|
|
8692
8692
|
* No description
|
|
8693
8693
|
*
|
|
@@ -8699,7 +8699,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8699
8699
|
* @response `200` `Invite` Success
|
|
8700
8700
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8701
8701
|
*/
|
|
8702
|
-
verifyUserInvite: (token: string, params?: RequestParams) => Promise<AxiosResponse<Invite, any>>;
|
|
8702
|
+
verifyUserInvite: (token: string, params?: RequestParams) => Promise<AxiosResponse<Invite, any, {}>>;
|
|
8703
8703
|
/**
|
|
8704
8704
|
* No description
|
|
8705
8705
|
*
|
|
@@ -8710,7 +8710,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8710
8710
|
* @secure
|
|
8711
8711
|
* @response `200` `(UserRelation)[]` Success
|
|
8712
8712
|
*/
|
|
8713
|
-
getUserRelations: (userId: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation[], any>>;
|
|
8713
|
+
getUserRelations: (userId: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation[], any, {}>>;
|
|
8714
8714
|
/**
|
|
8715
8715
|
* No description
|
|
8716
8716
|
*
|
|
@@ -8721,7 +8721,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8721
8721
|
* @secure
|
|
8722
8722
|
* @response `204` `void` No Content
|
|
8723
8723
|
*/
|
|
8724
|
-
createUserRelation: (userId: string, data: CreateUserRelationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8724
|
+
createUserRelation: (userId: string, data: CreateUserRelationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8725
8725
|
/**
|
|
8726
8726
|
* No description
|
|
8727
8727
|
*
|
|
@@ -8732,7 +8732,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8732
8732
|
* @secure
|
|
8733
8733
|
* @response `200` `UserRelation` Success
|
|
8734
8734
|
*/
|
|
8735
|
-
getUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation, any>>;
|
|
8735
|
+
getUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation, any, {}>>;
|
|
8736
8736
|
/**
|
|
8737
8737
|
* No description
|
|
8738
8738
|
*
|
|
@@ -8743,7 +8743,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8743
8743
|
* @secure
|
|
8744
8744
|
* @response `204` `void` No Content
|
|
8745
8745
|
*/
|
|
8746
|
-
deleteUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8746
|
+
deleteUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8747
8747
|
/**
|
|
8748
8748
|
* No description
|
|
8749
8749
|
*
|
|
@@ -8761,7 +8761,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8761
8761
|
pageNumber?: number;
|
|
8762
8762
|
sortBy?: string;
|
|
8763
8763
|
sortDirection?: string;
|
|
8764
|
-
}, params?: RequestParams) => Promise<AxiosResponse<User[], any>>;
|
|
8764
|
+
}, params?: RequestParams) => Promise<AxiosResponse<User[], any, {}>>;
|
|
8765
8765
|
/**
|
|
8766
8766
|
* No description
|
|
8767
8767
|
*
|
|
@@ -8773,7 +8773,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8773
8773
|
* @response `200` `DetailedUser` Success
|
|
8774
8774
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8775
8775
|
*/
|
|
8776
|
-
createUser: (data: CreateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
|
|
8776
|
+
createUser: (data: CreateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any, {}>>;
|
|
8777
8777
|
/**
|
|
8778
8778
|
* No description
|
|
8779
8779
|
*
|
|
@@ -8791,7 +8791,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8791
8791
|
pageNumber?: number;
|
|
8792
8792
|
sortBy?: string;
|
|
8793
8793
|
sortDirection?: string;
|
|
8794
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UserPaginated, any>>;
|
|
8794
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UserPaginated, any, {}>>;
|
|
8795
8795
|
/**
|
|
8796
8796
|
* No description
|
|
8797
8797
|
*
|
|
@@ -8802,7 +8802,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8802
8802
|
* @secure
|
|
8803
8803
|
* @response `200` `AdminAccessUser` Success
|
|
8804
8804
|
*/
|
|
8805
|
-
getUserByEmail: (data: GetUserByEmailRequest, params?: RequestParams) => Promise<AxiosResponse<AdminAccessUser, any>>;
|
|
8805
|
+
getUserByEmail: (data: GetUserByEmailRequest, params?: RequestParams) => Promise<AxiosResponse<AdminAccessUser, any, {}>>;
|
|
8806
8806
|
/**
|
|
8807
8807
|
* No description
|
|
8808
8808
|
*
|
|
@@ -8814,7 +8814,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8814
8814
|
* @response `200` `User` Success
|
|
8815
8815
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8816
8816
|
*/
|
|
8817
|
-
signUp: (data: RegisterUserRequest, params?: RequestParams) => Promise<AxiosResponse<User, any>>;
|
|
8817
|
+
signUp: (data: RegisterUserRequest, params?: RequestParams) => Promise<AxiosResponse<User, any, {}>>;
|
|
8818
8818
|
/**
|
|
8819
8819
|
* No description
|
|
8820
8820
|
*
|
|
@@ -8826,7 +8826,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8826
8826
|
* @response `200` `DetailedUser` Success
|
|
8827
8827
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8828
8828
|
*/
|
|
8829
|
-
replaceUser: (id: string, data: UpdateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
|
|
8829
|
+
replaceUser: (id: string, data: UpdateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any, {}>>;
|
|
8830
8830
|
/**
|
|
8831
8831
|
* No description
|
|
8832
8832
|
*
|
|
@@ -8840,7 +8840,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8840
8840
|
deleteUser: (id: string, query?: {
|
|
8841
8841
|
/** @default false */
|
|
8842
8842
|
permanent?: boolean;
|
|
8843
|
-
}, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8843
|
+
}, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8844
8844
|
/**
|
|
8845
8845
|
* No description
|
|
8846
8846
|
*
|
|
@@ -8851,7 +8851,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8851
8851
|
* @secure
|
|
8852
8852
|
* @response `204` `void` No Content
|
|
8853
8853
|
*/
|
|
8854
|
-
restoreUser: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8854
|
+
restoreUser: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8855
8855
|
/**
|
|
8856
8856
|
* No description
|
|
8857
8857
|
*
|
|
@@ -8863,7 +8863,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8863
8863
|
* @response `204` `void` No Content
|
|
8864
8864
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8865
8865
|
*/
|
|
8866
|
-
changePassword: (data: ChangePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8866
|
+
changePassword: (data: ChangePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8867
8867
|
/**
|
|
8868
8868
|
* No description
|
|
8869
8869
|
*
|
|
@@ -8875,7 +8875,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8875
8875
|
* @response `204` `void` No Content
|
|
8876
8876
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8877
8877
|
*/
|
|
8878
|
-
verifyPassword: (data: VerifyPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8878
|
+
verifyPassword: (data: VerifyPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8879
8879
|
/**
|
|
8880
8880
|
* No description
|
|
8881
8881
|
*
|
|
@@ -8887,7 +8887,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8887
8887
|
* @response `204` `void` No Content
|
|
8888
8888
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8889
8889
|
*/
|
|
8890
|
-
overridePassword: (id: string, data: OverridePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8890
|
+
overridePassword: (id: string, data: OverridePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8891
8891
|
/**
|
|
8892
8892
|
* No description
|
|
8893
8893
|
*
|
|
@@ -8899,7 +8899,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8899
8899
|
* @response `204` `void` No Content
|
|
8900
8900
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8901
8901
|
*/
|
|
8902
|
-
forgotPassword: (data: SendForgotPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8902
|
+
forgotPassword: (data: SendForgotPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8903
8903
|
/**
|
|
8904
8904
|
* No description
|
|
8905
8905
|
*
|
|
@@ -8911,7 +8911,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8911
8911
|
* @response `204` `void` No Content
|
|
8912
8912
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8913
8913
|
*/
|
|
8914
|
-
sendMobilePhoneVerificationCode: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8914
|
+
sendMobilePhoneVerificationCode: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8915
8915
|
/**
|
|
8916
8916
|
* No description
|
|
8917
8917
|
*
|
|
@@ -8923,7 +8923,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8923
8923
|
* @response `204` `void` No Content
|
|
8924
8924
|
* @response `422` `UnprocessableEntity` Client Error
|
|
8925
8925
|
*/
|
|
8926
|
-
verifyUserMobilePhone: (data: UserMobilePhoneVerificationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8926
|
+
verifyUserMobilePhone: (data: UserMobilePhoneVerificationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8927
8927
|
/**
|
|
8928
8928
|
* No description
|
|
8929
8929
|
*
|
|
@@ -8935,7 +8935,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8935
8935
|
* @response `200` `ImpersonatedDetailedUser` Success
|
|
8936
8936
|
* @response `401` `ProblemDetails` Unauthorized
|
|
8937
8937
|
*/
|
|
8938
|
-
getMe: (params?: RequestParams) => Promise<AxiosResponse<ImpersonatedDetailedUser, any>>;
|
|
8938
|
+
getMe: (params?: RequestParams) => Promise<AxiosResponse<ImpersonatedDetailedUser, any, {}>>;
|
|
8939
8939
|
/**
|
|
8940
8940
|
* No description
|
|
8941
8941
|
*
|
|
@@ -8946,7 +8946,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8946
8946
|
* @secure
|
|
8947
8947
|
* @response `200` `DetailedUser` Success
|
|
8948
8948
|
*/
|
|
8949
|
-
replaceMe: (data: UpdateMeRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
|
|
8949
|
+
replaceMe: (data: UpdateMeRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any, {}>>;
|
|
8950
8950
|
/**
|
|
8951
8951
|
* @description Update the phone number If changed will send a verification code to the new number
|
|
8952
8952
|
*
|
|
@@ -8957,7 +8957,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8957
8957
|
* @secure
|
|
8958
8958
|
* @response `204` `DetailedUser` No Content
|
|
8959
8959
|
*/
|
|
8960
|
-
updateMyPhone: (data: UpdateMobilePhoneRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
|
|
8960
|
+
updateMyPhone: (data: UpdateMobilePhoneRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any, {}>>;
|
|
8961
8961
|
/**
|
|
8962
8962
|
* No description
|
|
8963
8963
|
*
|
|
@@ -8968,7 +8968,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8968
8968
|
* @secure
|
|
8969
8969
|
* @response `200` `(UserRelationship)[]` Success
|
|
8970
8970
|
*/
|
|
8971
|
-
getMyRelationships: (params?: RequestParams) => Promise<AxiosResponse<UserRelationship[], any>>;
|
|
8971
|
+
getMyRelationships: (params?: RequestParams) => Promise<AxiosResponse<UserRelationship[], any, {}>>;
|
|
8972
8972
|
/**
|
|
8973
8973
|
* No description
|
|
8974
8974
|
*
|
|
@@ -8979,7 +8979,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8979
8979
|
* @secure
|
|
8980
8980
|
* @response `200` `(UserRelationshipProspect)[]` Success
|
|
8981
8981
|
*/
|
|
8982
|
-
getMyRelationshipProspects: (params?: RequestParams) => Promise<AxiosResponse<UserRelationshipProspect[], any>>;
|
|
8982
|
+
getMyRelationshipProspects: (params?: RequestParams) => Promise<AxiosResponse<UserRelationshipProspect[], any, {}>>;
|
|
8983
8983
|
/**
|
|
8984
8984
|
* No description
|
|
8985
8985
|
*
|
|
@@ -8990,7 +8990,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8990
8990
|
* @secure
|
|
8991
8991
|
* @response `204` `void` No Content
|
|
8992
8992
|
*/
|
|
8993
|
-
deleteRelationshipProspect: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
8993
|
+
deleteRelationshipProspect: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8994
8994
|
/**
|
|
8995
8995
|
* No description
|
|
8996
8996
|
*
|
|
@@ -9001,7 +9001,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9001
9001
|
* @secure
|
|
9002
9002
|
* @response `204` `void` No Content
|
|
9003
9003
|
*/
|
|
9004
|
-
deleteMe: (data: UserAccountDeletionRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9004
|
+
deleteMe: (data: UserAccountDeletionRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9005
9005
|
/**
|
|
9006
9006
|
* No description
|
|
9007
9007
|
*
|
|
@@ -9012,7 +9012,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9012
9012
|
* @secure
|
|
9013
9013
|
* @response `200` `GetForm` Success
|
|
9014
9014
|
*/
|
|
9015
|
-
getWorkflow: (data: GetWorkflowRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any>>;
|
|
9015
|
+
getWorkflow: (data: GetWorkflowRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any, {}>>;
|
|
9016
9016
|
};
|
|
9017
9017
|
sso: {
|
|
9018
9018
|
/**
|
|
@@ -9024,6 +9024,6 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9024
9024
|
* @secure
|
|
9025
9025
|
* @response `200` `void` Success
|
|
9026
9026
|
*/
|
|
9027
|
-
logoutList: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
9027
|
+
logoutList: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9028
9028
|
};
|
|
9029
9029
|
}
|