@matech/thebigpos-sdk 2.37.8 → 2.37.9-rc0

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