@matech/thebigpos-sdk 2.34.1 → 2.35.0-rc1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -49,6 +49,7 @@ export type ConsentType = "Econsent" | "CreditAuthorization" | "Tcpa";
49
49
  export type BranchType = "Mortgage" | "RealEstate";
50
50
  export type BorrowerType = "Borrower" | "CoBorrower" | "Unknown";
51
51
  export type BorrowerRelationship = "NotApplicable" | "Spouse" | "NonSpouse";
52
+ export type BillingType = "ClosedLoan" | "LoanOfficer";
52
53
  export type AddressFamily = "Unspecified" | "Unix" | "InterNetwork" | "ImpLink" | "Pup" | "Chaos" | "NS" | "Ipx" | "Iso" | "Osi" | "Ecma" | "DataKit" | "Ccitt" | "Sna" | "DecNet" | "DataLink" | "Lat" | "HyperChannel" | "AppleTalk" | "NetBios" | "VoiceView" | "FireFox" | "Banyan" | "Atm" | "InterNetworkV6" | "Cluster" | "Ieee12844" | "Irda" | "NetworkDesigners" | "Max" | "Packet" | "ControllerAreaNetwork" | "Unknown";
53
54
  export interface ASOSettings {
54
55
  enabled: boolean;
@@ -91,12 +92,21 @@ export interface Account {
91
92
  losSettings: LOSSettings;
92
93
  asoSettings?: ASOSettings | null;
93
94
  settings: AccountSettings;
95
+ billingSettings?: AccountBilling | null;
94
96
  }
95
- export interface AccountReportFailure {
96
- /** @format uuid */
97
- accountID: string;
98
- accountName: string;
99
- errorMessage: string;
97
+ export interface AccountBilling {
98
+ billingType: string;
99
+ /** @format double */
100
+ contractedRate: number;
101
+ }
102
+ export interface AccountBillingRequest {
103
+ billingType: "ClosedLoan" | "LoanOfficer";
104
+ /**
105
+ * @format double
106
+ * @min 0
107
+ * @exclusiveMin true
108
+ */
109
+ contractedRate: number;
100
110
  }
101
111
  export interface AccountSettings {
102
112
  isSmsEnabled: boolean;
@@ -205,6 +215,7 @@ export interface AdminAccessUser {
205
215
  /** @format int32 */
206
216
  loginsWithoutMFACount: number;
207
217
  canImpersonate: boolean;
218
+ preferredLoanOfficer?: PreferredLoanOfficer | null;
208
219
  loanIDs: string[];
209
220
  drafts: Draft[];
210
221
  notificationSettings?: UserNotificationSettings | null;
@@ -452,6 +463,7 @@ export interface BranchUser {
452
463
  /** @format int32 */
453
464
  loginsWithoutMFACount: number;
454
465
  canImpersonate: boolean;
466
+ preferredLoanOfficer?: PreferredLoanOfficer | null;
455
467
  loanIDs: string[];
456
468
  drafts: Draft[];
457
469
  notificationSettings?: UserNotificationSettings | null;
@@ -648,6 +660,7 @@ export interface CreateAccountRequest {
648
660
  settings: AccountSettingsRequest;
649
661
  environment: "Development" | "Staging" | "UAT" | "Production";
650
662
  losIntegration: LOSIntegration;
663
+ billingSettings: AccountBillingRequest;
651
664
  }
652
665
  export interface CreateBranchRequest {
653
666
  /**
@@ -801,6 +814,7 @@ export interface DetailedUser {
801
814
  /** @format int32 */
802
815
  loginsWithoutMFACount: number;
803
816
  canImpersonate: boolean;
817
+ preferredLoanOfficer?: PreferredLoanOfficer | null;
804
818
  loanIDs: string[];
805
819
  drafts: Draft[];
806
820
  notificationSettings?: UserNotificationSettings | null;
@@ -907,9 +921,17 @@ export interface DocumentFolder {
907
921
  count: number;
908
922
  files: DocumentFile[];
909
923
  }
924
+ export interface DocumentFoldersRequest {
925
+ searchText?: string | null;
926
+ losStatuses?: LOSStatus[] | null;
927
+ sortBy?: string | null;
928
+ sortDirection?: string | null;
929
+ }
910
930
  export interface DocumentSync {
911
931
  /** @format int32 */
912
932
  syncedCount: number;
933
+ /** @format date-time */
934
+ lastLosDocumentsSyncDate?: string | null;
913
935
  }
914
936
  export interface DocumentTemplate {
915
937
  /** @format date-time */
@@ -1474,6 +1496,7 @@ export interface ImpersonatedDetailedUser {
1474
1496
  /** @format int32 */
1475
1497
  loginsWithoutMFACount: number;
1476
1498
  canImpersonate: boolean;
1499
+ preferredLoanOfficer?: PreferredLoanOfficer | null;
1477
1500
  loanIDs: string[];
1478
1501
  drafts: Draft[];
1479
1502
  notificationSettings?: UserNotificationSettings | null;
@@ -1672,6 +1695,8 @@ export interface Loan {
1672
1695
  isInSync: boolean;
1673
1696
  /** @format date-time */
1674
1697
  syncDate?: string | null;
1698
+ /** @format date-time */
1699
+ lastLosDocumentsSyncDate?: string | null;
1675
1700
  isLocked: boolean;
1676
1701
  isLockedFromEditing: boolean;
1677
1702
  excludeFromAutoTaskReminders?: boolean | null;
@@ -1720,6 +1745,8 @@ export interface LoanApplicationRequest {
1720
1745
  borrowers: LoanBorrowerRequest[];
1721
1746
  nonOwningBorrowers: LoanNonOwningBorrowerRequest[];
1722
1747
  /** @format uuid */
1748
+ draftId?: string | null;
1749
+ /** @format uuid */
1723
1750
  existingLoanId?: string | null;
1724
1751
  }
1725
1752
  export interface LoanBorrower {
@@ -3336,6 +3363,14 @@ export interface PostLoanComparisonPdfRequest {
3336
3363
  */
3337
3364
  siteConfigurationID: string;
3338
3365
  }
3366
+ export interface PreferredLoanOfficer {
3367
+ /** @format uuid */
3368
+ id: string;
3369
+ firstName: string;
3370
+ lastName: string;
3371
+ email: string;
3372
+ phone?: string | null;
3373
+ }
3339
3374
  export interface PreliminaryCondition {
3340
3375
  /** @format uuid */
3341
3376
  id: string;
@@ -4607,6 +4642,8 @@ export interface UpdateMeRequest {
4607
4642
  forcePasswordReset: boolean;
4608
4643
  mfaEnabled: boolean;
4609
4644
  notificationSettings: UserNotificationSettingsUpdateRequest;
4645
+ /** @format uuid */
4646
+ preferredLoanOfficerId?: string | null;
4610
4647
  }
4611
4648
  export interface UpdateMobilePhoneRequest {
4612
4649
  phone: string;
@@ -4638,6 +4675,8 @@ export interface UpdateUserRequest {
4638
4675
  branchId?: string | null;
4639
4676
  forcePasswordReset: boolean;
4640
4677
  mfaEnabled: boolean;
4678
+ /** @format uuid */
4679
+ preferredLoanOfficerId?: string | null;
4641
4680
  }
4642
4681
  export interface UsageReport {
4643
4682
  /** @format uuid */
@@ -4666,15 +4705,134 @@ export interface UsageReport {
4666
4705
  /** @format date-time */
4667
4706
  createdAt: string;
4668
4707
  }
4669
- export interface UsageReportGenerationResult {
4670
- fileKey: string;
4671
- fileUrl: string;
4708
+ export interface UsageReportAccountBrief {
4709
+ /** @format uuid */
4710
+ accountId: string;
4711
+ accountName: string;
4712
+ hasDiscrepancy: boolean;
4713
+ errorMessage?: string | null;
4714
+ currentStep?: string | null;
4715
+ }
4716
+ export interface UsageReportAccountExecution {
4717
+ /** @format uuid */
4718
+ accountId: string;
4719
+ accountName: string;
4720
+ status: string;
4721
+ hasDiscrepancy: boolean;
4722
+ excelFileUrl?: string | null;
4723
+ errorMessage?: string | null;
4724
+ /** @format date-time */
4725
+ validationStartedAt?: string | null;
4726
+ /** @format date-time */
4727
+ validationCompletedAt?: string | null;
4728
+ /** @format date-time */
4729
+ processingStartedAt?: string | null;
4730
+ /** @format date-time */
4731
+ processingCompletedAt?: string | null;
4732
+ }
4733
+ export interface UsageReportAccountStatus {
4734
+ status: string;
4735
+ /** @format int32 */
4736
+ count: number;
4737
+ accounts: UsageReportAccountBrief[];
4738
+ }
4739
+ export interface UsageReportActiveExecution {
4740
+ /** @format uuid */
4741
+ correlationId: string;
4742
+ currentState: string;
4743
+ /** @format int32 */
4744
+ month: number;
4745
+ /** @format int32 */
4746
+ year: number;
4747
+ /** @format date-time */
4748
+ startedAt?: string | null;
4749
+ elapsedTime: string;
4750
+ progress: UsageReportProgress;
4751
+ accountsByStatus: UsageReportAccountStatus[];
4752
+ }
4753
+ export interface UsageReportDashboard {
4754
+ activeExecution?: UsageReportActiveExecution | null;
4755
+ recentExecutions: UsageReportExecutionSummary[];
4756
+ statistics: UsageReportStatistics;
4757
+ }
4758
+ export interface UsageReportExecution {
4759
+ /** @format uuid */
4760
+ correlationId: string;
4761
+ currentState: string;
4762
+ /** @format int32 */
4763
+ month: number;
4764
+ /** @format int32 */
4765
+ year: number;
4766
+ /** @format int32 */
4767
+ totalAccounts: number;
4768
+ /** @format int32 */
4769
+ validatedAccounts: number;
4770
+ /** @format int32 */
4771
+ processedAccounts: number;
4772
+ /** @format int32 */
4773
+ failedAccounts: number;
4774
+ /** @format date-time */
4775
+ startedAt?: string | null;
4776
+ /** @format date-time */
4777
+ completedAt?: string | null;
4778
+ finalZipUrl?: string | null;
4779
+ errorMessage?: string | null;
4780
+ accounts: UsageReportAccountExecution[];
4781
+ }
4782
+ export interface UsageReportExecutionSummary {
4783
+ /** @format uuid */
4784
+ correlationId: string;
4785
+ currentState: string;
4786
+ /** @format int32 */
4787
+ month: number;
4672
4788
  /** @format int32 */
4673
- successCount: number;
4789
+ year: number;
4790
+ period: string;
4791
+ /** @format date-time */
4792
+ startedAt?: string | null;
4793
+ /** @format date-time */
4794
+ completedAt?: string | null;
4795
+ duration?: string | null;
4796
+ /** @format int32 */
4797
+ totalAccounts: number;
4798
+ /** @format int32 */
4799
+ processedAccounts: number;
4674
4800
  /** @format int32 */
4675
- failureCount: number;
4676
- reports: UsageReport[];
4677
- failures: AccountReportFailure[];
4801
+ failedAccounts: number;
4802
+ finalZipUrl?: string | null;
4803
+ errorMessage?: string | null;
4804
+ }
4805
+ export interface UsageReportProgress {
4806
+ /** @format int32 */
4807
+ totalAccounts: number;
4808
+ /** @format int32 */
4809
+ validatedAccounts: number;
4810
+ /** @format int32 */
4811
+ processedAccounts: number;
4812
+ /** @format int32 */
4813
+ failedAccounts: number;
4814
+ /** @format int32 */
4815
+ pendingAccounts: number;
4816
+ /** @format double */
4817
+ validationPercentage: number;
4818
+ /** @format double */
4819
+ processingPercentage: number;
4820
+ /** @format double */
4821
+ overallPercentage: number;
4822
+ }
4823
+ export interface UsageReportStatistics {
4824
+ /** @format int32 */
4825
+ totalExecutionsThisYear: number;
4826
+ /** @format int32 */
4827
+ successfulExecutions: number;
4828
+ /** @format int32 */
4829
+ failedExecutions: number;
4830
+ /** @format int32 */
4831
+ partialExecutions: number;
4832
+ /** @format date-time */
4833
+ lastSuccessfulExecution?: string | null;
4834
+ /** @format date-time */
4835
+ lastFailedExecution?: string | null;
4678
4836
  }
4679
4837
  export interface User {
4680
4838
  /** @format date-time */
@@ -4697,6 +4855,7 @@ export interface User {
4697
4855
  /** @format int32 */
4698
4856
  loginsWithoutMFACount: number;
4699
4857
  canImpersonate: boolean;
4858
+ preferredLoanOfficer?: PreferredLoanOfficer | null;
4700
4859
  }
4701
4860
  export interface UserAccountDeletionRequest {
4702
4861
  feedback: string;
@@ -5004,7 +5163,7 @@ export declare class HttpClient<SecurityDataType = unknown> {
5004
5163
  }
5005
5164
  /**
5006
5165
  * @title The Big POS API
5007
- * @version v2.34.0
5166
+ * @version v2.35.0
5008
5167
  * @termsOfService https://www.thebigpos.com/terms-of-use/
5009
5168
  * @contact Mortgage Automation Technologies <support@thebigpos.com> (https://www.thebigpos.com/terms-of-use/)
5010
5169
  */
@@ -5018,7 +5177,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5018
5177
  * @secure
5019
5178
  * @response `200` `void` Success
5020
5179
  */
5021
- postRoot: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
5180
+ postRoot: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
5022
5181
  /**
5023
5182
  * No description
5024
5183
  *
@@ -5028,7 +5187,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5028
5187
  * @secure
5029
5188
  * @response `200` `string` Success
5030
5189
  */
5031
- getRoot: (params?: RequestParams) => Promise<AxiosResponse<string, any>>;
5190
+ getRoot: (params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
5032
5191
  api: {
5033
5192
  /**
5034
5193
  * No description
@@ -5041,7 +5200,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5041
5200
  * @response `200` `Account` Success
5042
5201
  * @response `404` `ProblemDetails` Not Found
5043
5202
  */
5044
- getMyAccount: (params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
5203
+ getMyAccount: (params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
5045
5204
  /**
5046
5205
  * No description
5047
5206
  *
@@ -5054,7 +5213,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5054
5213
  * @response `404` `ProblemDetails` Not Found
5055
5214
  * @response `422` `ProblemDetails` Client Error
5056
5215
  */
5057
- replaceMyAccount: (data: UpdateAccountRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
5216
+ replaceMyAccount: (data: UpdateAccountRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
5058
5217
  /**
5059
5218
  * No description
5060
5219
  *
@@ -5065,7 +5224,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5065
5224
  * @secure
5066
5225
  * @response `200` `SiteConfiguration` Success
5067
5226
  */
5068
- getSiteConfigurationByAccount: (params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
5227
+ getSiteConfigurationByAccount: (params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
5069
5228
  /**
5070
5229
  * No description
5071
5230
  *
@@ -5077,7 +5236,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5077
5236
  * @response `200` `SiteConfiguration` Success
5078
5237
  * @response `422` `UnprocessableEntity` Client Error
5079
5238
  */
5080
- updateSiteConfigurationForAccount: (data: SiteConfiguration, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
5239
+ updateSiteConfigurationForAccount: (data: SiteConfiguration, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
5081
5240
  /**
5082
5241
  * No description
5083
5242
  *
@@ -5088,7 +5247,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5088
5247
  * @secure
5089
5248
  * @response `200` `(Account)[]` Success
5090
5249
  */
5091
- getAccounts: (params?: RequestParams) => Promise<AxiosResponse<Account[], any>>;
5250
+ getAccounts: (params?: RequestParams) => Promise<AxiosResponse<Account[], any, {}>>;
5092
5251
  /**
5093
5252
  * No description
5094
5253
  *
@@ -5100,7 +5259,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5100
5259
  * @response `201` `Account` Created
5101
5260
  * @response `422` `ProblemDetails` Client Error
5102
5261
  */
5103
- createAccount: (data: CreateAccountRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
5262
+ createAccount: (data: CreateAccountRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
5104
5263
  /**
5105
5264
  * No description
5106
5265
  *
@@ -5112,7 +5271,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5112
5271
  * @response `201` `Account` Created
5113
5272
  * @response `422` `ProblemDetails` Client Error
5114
5273
  */
5115
- getAccount: (id: string, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
5274
+ getAccount: (id: string, params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
5116
5275
  /**
5117
5276
  * No description
5118
5277
  *
@@ -5128,7 +5287,20 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5128
5287
  deleteAccount: (id: string, query?: {
5129
5288
  /** @default false */
5130
5289
  hardDelete?: boolean;
5131
- }, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
5290
+ }, params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
5291
+ /**
5292
+ * No description
5293
+ *
5294
+ * @tags Accounts
5295
+ * @name UpdateAccountBilling
5296
+ * @summary Update billing configuration
5297
+ * @request PUT:/api/accounts/{id}/billing
5298
+ * @secure
5299
+ * @response `200` `AccountBilling` Success
5300
+ * @response `404` `ProblemDetails` Not Found
5301
+ * @response `422` `ProblemDetails` Client Error
5302
+ */
5303
+ updateAccountBilling: (id: string, data: AccountBillingRequest, params?: RequestParams) => Promise<AxiosResponse<AccountBilling, any, {}>>;
5132
5304
  /**
5133
5305
  * No description
5134
5306
  *
@@ -5141,7 +5313,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5141
5313
  * @response `401` `ProblemDetails` Unauthorized
5142
5314
  * @response `422` `UnprocessableEntity` Client Error
5143
5315
  */
5144
- getTokenFromRefreshToken: (data: RefreshTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any>>;
5316
+ getTokenFromRefreshToken: (data: RefreshTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any, {}>>;
5145
5317
  /**
5146
5318
  * No description
5147
5319
  *
@@ -5153,7 +5325,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5153
5325
  * @response `200` `Token` Success
5154
5326
  * @response `422` `UnprocessableEntity` Client Error
5155
5327
  */
5156
- getToken: (data: TokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any>>;
5328
+ getToken: (data: TokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any, {}>>;
5157
5329
  /**
5158
5330
  * No description
5159
5331
  *
@@ -5165,7 +5337,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5165
5337
  * @response `200` `Token` Success
5166
5338
  * @response `422` `UnprocessableEntity` Client Error
5167
5339
  */
5168
- getTokenFromChallengeCode: (data: TokenChallengeRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any>>;
5340
+ getTokenFromChallengeCode: (data: TokenChallengeRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any, {}>>;
5169
5341
  /**
5170
5342
  * No description
5171
5343
  *
@@ -5177,7 +5349,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5177
5349
  * @response `200` `Token` Success
5178
5350
  * @response `422` `UnprocessableEntity` Client Error
5179
5351
  */
5180
- getSystemToken: (data: SystemTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any>>;
5352
+ getSystemToken: (data: SystemTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any, {}>>;
5181
5353
  /**
5182
5354
  * No description
5183
5355
  *
@@ -5189,7 +5361,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5189
5361
  * @response `200` `SSOToken` Success
5190
5362
  * @response `422` `UnprocessableEntity` Client Error
5191
5363
  */
5192
- getSsoToken: (data: SSOTokenRequest, params?: RequestParams) => Promise<AxiosResponse<SSOToken, any>>;
5364
+ getSsoToken: (data: SSOTokenRequest, params?: RequestParams) => Promise<AxiosResponse<SSOToken, any, {}>>;
5193
5365
  /**
5194
5366
  * No description
5195
5367
  *
@@ -5201,7 +5373,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5201
5373
  * @response `204` `NoContentResult` No Content
5202
5374
  * @response `422` `UnprocessableEntity` Client Error
5203
5375
  */
5204
- logOut: (params?: RequestParams) => Promise<AxiosResponse<NoContentResult, any>>;
5376
+ logOut: (params?: RequestParams) => Promise<AxiosResponse<NoContentResult, any, {}>>;
5205
5377
  /**
5206
5378
  * No description
5207
5379
  *
@@ -5220,7 +5392,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5220
5392
  pageNumber?: number;
5221
5393
  sortBy?: string;
5222
5394
  sortDirection?: string;
5223
- }, params?: RequestParams) => Promise<AxiosResponse<GetBranchPaginated, any>>;
5395
+ }, params?: RequestParams) => Promise<AxiosResponse<GetBranchPaginated, any, {}>>;
5224
5396
  /**
5225
5397
  * No description
5226
5398
  *
@@ -5232,7 +5404,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5232
5404
  * @response `200` `GetBranch` Success
5233
5405
  * @response `422` `UnprocessableEntity` Client Error
5234
5406
  */
5235
- createBranch: (data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any>>;
5407
+ createBranch: (data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any, {}>>;
5236
5408
  /**
5237
5409
  * No description
5238
5410
  *
@@ -5250,7 +5422,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5250
5422
  pageNumber?: number;
5251
5423
  sortBy?: string;
5252
5424
  sortDirection?: string;
5253
- }, params?: RequestParams) => Promise<AxiosResponse<GetBranchPaginated, any>>;
5425
+ }, params?: RequestParams) => Promise<AxiosResponse<GetBranchPaginated, any, {}>>;
5254
5426
  /**
5255
5427
  * No description
5256
5428
  *
@@ -5261,7 +5433,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5261
5433
  * @secure
5262
5434
  * @response `200` `GetBranch` Success
5263
5435
  */
5264
- getBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any>>;
5436
+ getBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any, {}>>;
5265
5437
  /**
5266
5438
  * No description
5267
5439
  *
@@ -5273,7 +5445,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5273
5445
  * @response `200` `GetBranch` Success
5274
5446
  * @response `422` `UnprocessableEntity` Client Error
5275
5447
  */
5276
- replaceBranch: (branchId: string, data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any>>;
5448
+ replaceBranch: (branchId: string, data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any, {}>>;
5277
5449
  /**
5278
5450
  * No description
5279
5451
  *
@@ -5284,7 +5456,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5284
5456
  * @secure
5285
5457
  * @response `204` `void` No Content
5286
5458
  */
5287
- deleteBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
5459
+ deleteBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
5288
5460
  /**
5289
5461
  * No description
5290
5462
  *
@@ -5296,7 +5468,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5296
5468
  * @response `204` `void` No Content
5297
5469
  * @response `400` `ProblemDetails` Bad Request
5298
5470
  */
5299
- restoreBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
5471
+ restoreBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
5300
5472
  /**
5301
5473
  * No description
5302
5474
  *
@@ -5308,7 +5480,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5308
5480
  * @response `200` `SiteConfiguration` Success
5309
5481
  * @response `422` `UnprocessableEntity` Client Error
5310
5482
  */
5311
- createBranchSiteConfiguration: (branchId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
5483
+ createBranchSiteConfiguration: (branchId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
5312
5484
  /**
5313
5485
  * No description
5314
5486
  *
@@ -5319,7 +5491,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5319
5491
  * @secure
5320
5492
  * @response `200` `SiteConfigurationWithInherited` Success
5321
5493
  */
5322
- getBranchSiteConfiguration: (branchId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
5494
+ getBranchSiteConfiguration: (branchId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any, {}>>;
5323
5495
  /**
5324
5496
  * No description
5325
5497
  *
@@ -5333,7 +5505,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5333
5505
  */
5334
5506
  replaceBranchSiteConfiguration: (branchId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
5335
5507
  applyToChildren?: boolean;
5336
- }, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
5508
+ }, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
5337
5509
  /**
5338
5510
  * No description
5339
5511
  *
@@ -5344,7 +5516,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5344
5516
  * @secure
5345
5517
  * @response `200` `LoanOfficerPublic` Success
5346
5518
  */
5347
- getLoanOfficersByBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic, any>>;
5519
+ getLoanOfficersByBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic, any, {}>>;
5348
5520
  /**
5349
5521
  * No description
5350
5522
  *
@@ -5357,7 +5529,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5357
5529
  */
5358
5530
  getBusinessRules: (query?: {
5359
5531
  showAll?: boolean;
5360
- }, params?: RequestParams) => Promise<AxiosResponse<BusinessRule[], any>>;
5532
+ }, params?: RequestParams) => Promise<AxiosResponse<BusinessRule[], any, {}>>;
5361
5533
  /**
5362
5534
  * No description
5363
5535
  *
@@ -5369,7 +5541,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5369
5541
  * @response `200` `BusinessRule` Success
5370
5542
  * @response `422` `UnprocessableEntity` Client Error
5371
5543
  */
5372
- createBusinessRule: (data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
5544
+ createBusinessRule: (data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any, {}>>;
5373
5545
  /**
5374
5546
  * No description
5375
5547
  *
@@ -5380,7 +5552,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5380
5552
  * @secure
5381
5553
  * @response `200` `BusinessRule` Success
5382
5554
  */
5383
- getBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
5555
+ getBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any, {}>>;
5384
5556
  /**
5385
5557
  * No description
5386
5558
  *
@@ -5392,7 +5564,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5392
5564
  * @response `200` `BusinessRule` Success
5393
5565
  * @response `422` `UnprocessableEntity` Client Error
5394
5566
  */
5395
- replaceBusinessRule: (id: string, data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
5567
+ replaceBusinessRule: (id: string, data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any, {}>>;
5396
5568
  /**
5397
5569
  * No description
5398
5570
  *
@@ -5403,7 +5575,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5403
5575
  * @secure
5404
5576
  * @response `204` `void` No Content
5405
5577
  */
5406
- deleteBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
5578
+ deleteBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
5407
5579
  /**
5408
5580
  * No description
5409
5581
  *
@@ -5414,7 +5586,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5414
5586
  * @secure
5415
5587
  * @response `200` `BusinessRule` Success
5416
5588
  */
5417
- restoreBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
5589
+ restoreBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any, {}>>;
5418
5590
  /**
5419
5591
  * @description Returns closed loan counts per account within the specified date range, including POS vs non-POS breakdown and utilization ratios.
5420
5592
  *
@@ -5425,7 +5597,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5425
5597
  * @secure
5426
5598
  * @response `200` `ClosedLoansReport` Success
5427
5599
  */
5428
- getClosedLoansReport: (data: ClosedLoansReportRequest, params?: RequestParams) => Promise<AxiosResponse<ClosedLoansReport, any>>;
5600
+ getClosedLoansReport: (data: ClosedLoansReportRequest, params?: RequestParams) => Promise<AxiosResponse<ClosedLoansReport, any, {}>>;
5429
5601
  /**
5430
5602
  * No description
5431
5603
  *
@@ -5444,7 +5616,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5444
5616
  pageNumber?: number;
5445
5617
  sortBy?: string;
5446
5618
  sortDirection?: string;
5447
- }, params?: RequestParams) => Promise<AxiosResponse<CorporatePaginated, any>>;
5619
+ }, params?: RequestParams) => Promise<AxiosResponse<CorporatePaginated, any, {}>>;
5448
5620
  /**
5449
5621
  * No description
5450
5622
  *
@@ -5456,7 +5628,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5456
5628
  * @response `200` `Corporate` Success
5457
5629
  * @response `422` `UnprocessableEntity` Client Error
5458
5630
  */
5459
- createCorporate: (data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any>>;
5631
+ createCorporate: (data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any, {}>>;
5460
5632
  /**
5461
5633
  * No description
5462
5634
  *
@@ -5474,7 +5646,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5474
5646
  pageNumber?: number;
5475
5647
  sortBy?: string;
5476
5648
  sortDirection?: string;
5477
- }, params?: RequestParams) => Promise<AxiosResponse<CorporatePaginated, any>>;
5649
+ }, params?: RequestParams) => Promise<AxiosResponse<CorporatePaginated, any, {}>>;
5478
5650
  /**
5479
5651
  * No description
5480
5652
  *
@@ -5485,7 +5657,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5485
5657
  * @secure
5486
5658
  * @response `200` `Corporate` Success
5487
5659
  */
5488
- getCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<Corporate, any>>;
5660
+ getCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<Corporate, any, {}>>;
5489
5661
  /**
5490
5662
  * No description
5491
5663
  *
@@ -5497,7 +5669,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5497
5669
  * @response `200` `Corporate` Success
5498
5670
  * @response `422` `UnprocessableEntity` Client Error
5499
5671
  */
5500
- replaceCorporate: (id: string, data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any>>;
5672
+ replaceCorporate: (id: string, data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any, {}>>;
5501
5673
  /**
5502
5674
  * No description
5503
5675
  *
@@ -5508,7 +5680,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5508
5680
  * @secure
5509
5681
  * @response `204` `void` No Content
5510
5682
  */
5511
- deleteCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
5683
+ deleteCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
5512
5684
  /**
5513
5685
  * No description
5514
5686
  *
@@ -5519,7 +5691,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5519
5691
  * @secure
5520
5692
  * @response `204` `void` No Content
5521
5693
  */
5522
- restoreCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
5694
+ restoreCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
5523
5695
  /**
5524
5696
  * No description
5525
5697
  *
@@ -5531,7 +5703,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5531
5703
  * @response `200` `SiteConfiguration` Success
5532
5704
  * @response `422` `UnprocessableEntity` Client Error
5533
5705
  */
5534
- createCorporateSiteConfiguration: (corporateId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
5706
+ createCorporateSiteConfiguration: (corporateId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
5535
5707
  /**
5536
5708
  * No description
5537
5709
  *
@@ -5542,7 +5714,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5542
5714
  * @secure
5543
5715
  * @response `200` `SiteConfigurationWithInherited` Success
5544
5716
  */
5545
- getCorporateSiteConfiguration: (corporateId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
5717
+ getCorporateSiteConfiguration: (corporateId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any, {}>>;
5546
5718
  /**
5547
5719
  * No description
5548
5720
  *
@@ -5556,7 +5728,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5556
5728
  */
5557
5729
  replaceCorporateSiteConfiguration: (corporateId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
5558
5730
  applyToChildren?: boolean;
5559
- }, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
5731
+ }, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
5560
5732
  /**
5561
5733
  * No description
5562
5734
  *
@@ -5567,7 +5739,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5567
5739
  * @secure
5568
5740
  * @response `200` `(BranchReduced)[]` Success
5569
5741
  */
5570
- getBranchesByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchReduced[], any>>;
5742
+ getBranchesByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchReduced[], any, {}>>;
5571
5743
  /**
5572
5744
  * No description
5573
5745
  *
@@ -5578,7 +5750,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5578
5750
  * @secure
5579
5751
  * @response `200` `LoanOfficerPublic` Success
5580
5752
  */
5581
- getLoanOfficersByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic, any>>;
5753
+ getLoanOfficersByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic, any, {}>>;
5582
5754
  /**
5583
5755
  * No description
5584
5756
  *
@@ -5598,7 +5770,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5598
5770
  pageNumber?: number;
5599
5771
  sortBy?: string;
5600
5772
  sortDirection?: string;
5601
- }, params?: RequestParams) => Promise<AxiosResponse<DevicePaginated, any>>;
5773
+ }, params?: RequestParams) => Promise<AxiosResponse<DevicePaginated, any, {}>>;
5602
5774
  /**
5603
5775
  * No description
5604
5776
  *
@@ -5609,7 +5781,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5609
5781
  * @secure
5610
5782
  * @response `200` `Device` Success
5611
5783
  */
5612
- getDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<Device, any>>;
5784
+ getDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<Device, any, {}>>;
5613
5785
  /**
5614
5786
  * No description
5615
5787
  *
@@ -5620,7 +5792,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5620
5792
  * @secure
5621
5793
  * @response `200` `Device` Success
5622
5794
  */
5623
- updateDevice: (id: string, data: DeviceRequest, params?: RequestParams) => Promise<AxiosResponse<Device, any>>;
5795
+ updateDevice: (id: string, data: DeviceRequest, params?: RequestParams) => Promise<AxiosResponse<Device, any, {}>>;
5624
5796
  /**
5625
5797
  * No description
5626
5798
  *
@@ -5631,7 +5803,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5631
5803
  * @secure
5632
5804
  * @response `200` `DeviceMDM` Success
5633
5805
  */
5634
- getDeviceBySerialNumber: (sn: string, params?: RequestParams) => Promise<AxiosResponse<DeviceMDM, any>>;
5806
+ getDeviceBySerialNumber: (sn: string, params?: RequestParams) => Promise<AxiosResponse<DeviceMDM, any, {}>>;
5635
5807
  /**
5636
5808
  * No description
5637
5809
  *
@@ -5642,7 +5814,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5642
5814
  * @secure
5643
5815
  * @response `200` `Action` Success
5644
5816
  */
5645
- createDeviceActionBySerialNumber: (sn: string, actionName: string, params?: RequestParams) => Promise<AxiosResponse<Action, any>>;
5817
+ createDeviceActionBySerialNumber: (sn: string, actionName: string, params?: RequestParams) => Promise<AxiosResponse<Action, any, {}>>;
5646
5818
  /**
5647
5819
  * No description
5648
5820
  *
@@ -5656,7 +5828,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5656
5828
  getDocumentBuckets: (query?: {
5657
5829
  /** @default false */
5658
5830
  includeSystemBuckets?: boolean;
5659
- }, params?: RequestParams) => Promise<AxiosResponse<string[], any>>;
5831
+ }, params?: RequestParams) => Promise<AxiosResponse<string[], any, {}>>;
5660
5832
  /**
5661
5833
  * No description
5662
5834
  *
@@ -5669,7 +5841,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5669
5841
  */
5670
5842
  getDocumentTemplates: (query?: {
5671
5843
  showAll?: boolean;
5672
- }, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase[], any>>;
5844
+ }, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase[], any, {}>>;
5673
5845
  /**
5674
5846
  * No description
5675
5847
  *
@@ -5682,7 +5854,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5682
5854
  * @response `404` `ProblemDetails` Not Found
5683
5855
  * @response `422` `UnprocessableEntity` Client Error
5684
5856
  */
5685
- createDocumentTemplate: (data: CreateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any>>;
5857
+ createDocumentTemplate: (data: CreateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any, {}>>;
5686
5858
  /**
5687
5859
  * No description
5688
5860
  *
@@ -5698,7 +5870,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5698
5870
  showAll?: boolean;
5699
5871
  /** @default true */
5700
5872
  publishedOnly?: boolean;
5701
- }, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase[], any>>;
5873
+ }, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase[], any, {}>>;
5702
5874
  /**
5703
5875
  * No description
5704
5876
  *
@@ -5710,7 +5882,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5710
5882
  * @response `200` `DocumentTemplate` Success
5711
5883
  * @response `404` `ProblemDetails` Not Found
5712
5884
  */
5713
- getDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplate, any>>;
5885
+ getDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplate, any, {}>>;
5714
5886
  /**
5715
5887
  * No description
5716
5888
  *
@@ -5724,7 +5896,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5724
5896
  * @response `404` `ProblemDetails` Not Found
5725
5897
  * @response `422` `UnprocessableEntity` Client Error
5726
5898
  */
5727
- replaceDocumentTemplate: (id: string, data: UpdateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any>>;
5899
+ replaceDocumentTemplate: (id: string, data: UpdateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any, {}>>;
5728
5900
  /**
5729
5901
  * No description
5730
5902
  *
@@ -5737,7 +5909,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5737
5909
  * @response `401` `ProblemDetails` Unauthorized
5738
5910
  * @response `404` `ProblemDetails` Not Found
5739
5911
  */
5740
- deleteDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
5912
+ deleteDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
5741
5913
  /**
5742
5914
  * No description
5743
5915
  *
@@ -5750,7 +5922,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5750
5922
  * @response `401` `ProblemDetails` Unauthorized
5751
5923
  * @response `404` `ProblemDetails` Not Found
5752
5924
  */
5753
- restoreDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
5925
+ restoreDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
5754
5926
  /**
5755
5927
  * No description
5756
5928
  *
@@ -5761,7 +5933,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5761
5933
  * @secure
5762
5934
  * @response `200` `(DocumentTemplateVersion)[]` Success
5763
5935
  */
5764
- getDocumentTemplateVersions: (documentId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion[], any>>;
5936
+ getDocumentTemplateVersions: (documentId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion[], any, {}>>;
5765
5937
  /**
5766
5938
  * No description
5767
5939
  *
@@ -5772,7 +5944,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5772
5944
  * @secure
5773
5945
  * @response `200` `DocumentTemplateVersion` Success
5774
5946
  */
5775
- createDocumentTemplateVersion: (documentId: string, data: DocumentTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
5947
+ createDocumentTemplateVersion: (documentId: string, data: DocumentTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any, {}>>;
5776
5948
  /**
5777
5949
  * No description
5778
5950
  *
@@ -5783,7 +5955,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5783
5955
  * @secure
5784
5956
  * @response `200` `DocumentTemplateVersion` Success
5785
5957
  */
5786
- getDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
5958
+ getDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any, {}>>;
5787
5959
  /**
5788
5960
  * No description
5789
5961
  *
@@ -5794,7 +5966,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5794
5966
  * @secure
5795
5967
  * @response `200` `DocumentTemplateVersion` Success
5796
5968
  */
5797
- replaceDocumentTemplateVersion: (documentId: string, id: string, data: DocumentTemplateVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
5969
+ replaceDocumentTemplateVersion: (documentId: string, id: string, data: DocumentTemplateVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any, {}>>;
5798
5970
  /**
5799
5971
  * No description
5800
5972
  *
@@ -5805,7 +5977,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5805
5977
  * @secure
5806
5978
  * @response `200` `DocumentTemplateVersion` Success
5807
5979
  */
5808
- deleteDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
5980
+ deleteDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any, {}>>;
5809
5981
  /**
5810
5982
  * No description
5811
5983
  *
@@ -5831,7 +6003,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5831
6003
  * @default 20
5832
6004
  */
5833
6005
  pageSize?: number;
5834
- }, params?: RequestParams) => Promise<AxiosResponse<EncompassPackageList, any>>;
6006
+ }, params?: RequestParams) => Promise<AxiosResponse<EncompassPackageList, any, {}>>;
5835
6007
  /**
5836
6008
  * No description
5837
6009
  *
@@ -5846,7 +6018,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5846
6018
  * @response `404` `EncompassError` Not Found
5847
6019
  * @response `500` `EncompassError` Server Error
5848
6020
  */
5849
- createEncompassSession: (data: CreateSessionRequest, params?: RequestParams) => Promise<AxiosResponse<CreateSession, any>>;
6021
+ createEncompassSession: (data: CreateSessionRequest, params?: RequestParams) => Promise<AxiosResponse<CreateSession, any, {}>>;
5850
6022
  /**
5851
6023
  * No description
5852
6024
  *
@@ -5866,7 +6038,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5866
6038
  sortDirection?: string;
5867
6039
  /** @default false */
5868
6040
  includeDeleted?: boolean;
5869
- }, params?: RequestParams) => Promise<AxiosResponse<FilePaginated, any>>;
6041
+ }, params?: RequestParams) => Promise<AxiosResponse<FilePaginated, any, {}>>;
5870
6042
  /**
5871
6043
  * No description
5872
6044
  *
@@ -5884,7 +6056,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5884
6056
  file?: File;
5885
6057
  isPublic?: boolean;
5886
6058
  bucket?: string;
5887
- }, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
6059
+ }, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
5888
6060
  /**
5889
6061
  * No description
5890
6062
  *
@@ -5895,7 +6067,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5895
6067
  * @secure
5896
6068
  * @response `201` `File` Created
5897
6069
  */
5898
- getFileById: (id: string, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
6070
+ getFileById: (id: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
5899
6071
  /**
5900
6072
  * No description
5901
6073
  *
@@ -5907,7 +6079,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5907
6079
  * @response `200` `string` Success
5908
6080
  * @response `422` `UnprocessableEntity` Client Error
5909
6081
  */
5910
- replaceFile: (id: string, data: FileRequest, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
6082
+ replaceFile: (id: string, data: FileRequest, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
5911
6083
  /**
5912
6084
  * No description
5913
6085
  *
@@ -5918,7 +6090,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5918
6090
  * @secure
5919
6091
  * @response `204` `void` No Content
5920
6092
  */
5921
- deleteFile: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6093
+ deleteFile: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
5922
6094
  /**
5923
6095
  * No description
5924
6096
  *
@@ -5936,7 +6108,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5936
6108
  pageNumber?: number;
5937
6109
  sortBy?: string;
5938
6110
  sortDirection?: string;
5939
- }, params?: RequestParams) => Promise<AxiosResponse<FilePaginated, any>>;
6111
+ }, params?: RequestParams) => Promise<AxiosResponse<FilePaginated, any, {}>>;
5940
6112
  /**
5941
6113
  * No description
5942
6114
  *
@@ -5949,7 +6121,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5949
6121
  */
5950
6122
  getForms: (query?: {
5951
6123
  showAll?: boolean;
5952
- }, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms[], any>>;
6124
+ }, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms[], any, {}>>;
5953
6125
  /**
5954
6126
  * No description
5955
6127
  *
@@ -5961,7 +6133,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5961
6133
  * @response `201` `Form` Created
5962
6134
  * @response `422` `UnprocessableEntity` Client Error
5963
6135
  */
5964
- createForm: (data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<Form, any>>;
6136
+ createForm: (data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<Form, any, {}>>;
5965
6137
  /**
5966
6138
  * No description
5967
6139
  *
@@ -5972,7 +6144,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5972
6144
  * @secure
5973
6145
  * @response `200` `Form` Success
5974
6146
  */
5975
- getForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<Form, any>>;
6147
+ getForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<Form, any, {}>>;
5976
6148
  /**
5977
6149
  * No description
5978
6150
  *
@@ -5984,7 +6156,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5984
6156
  * @response `200` `Form` Success
5985
6157
  * @response `422` `UnprocessableEntity` Client Error
5986
6158
  */
5987
- replaceForm: (id: string, data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<Form, any>>;
6159
+ replaceForm: (id: string, data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<Form, any, {}>>;
5988
6160
  /**
5989
6161
  * No description
5990
6162
  *
@@ -5995,7 +6167,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5995
6167
  * @secure
5996
6168
  * @response `204` `void` No Content
5997
6169
  */
5998
- deleteForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6170
+ deleteForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
5999
6171
  /**
6000
6172
  * No description
6001
6173
  *
@@ -6006,7 +6178,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6006
6178
  * @secure
6007
6179
  * @response `200` `Form` Success
6008
6180
  */
6009
- restoreForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<Form, any>>;
6181
+ restoreForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<Form, any, {}>>;
6010
6182
  /**
6011
6183
  * No description
6012
6184
  *
@@ -6021,7 +6193,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6021
6193
  /** @format binary */
6022
6194
  file?: File;
6023
6195
  name?: string;
6024
- }, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionFile, any>>;
6196
+ }, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionFile, any, {}>>;
6025
6197
  /**
6026
6198
  * No description
6027
6199
  *
@@ -6032,7 +6204,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6032
6204
  * @secure
6033
6205
  * @response `204` `void` No Content
6034
6206
  */
6035
- deleteFormSubmissionFile: (formSubmissionFileId: string, formSubmissionId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6207
+ deleteFormSubmissionFile: (formSubmissionFileId: string, formSubmissionId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
6036
6208
  /**
6037
6209
  * No description
6038
6210
  *
@@ -6046,7 +6218,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6046
6218
  downloadFormSubmissionFile: (formSubmissionFileId: string, formSubmissionId: string, query?: {
6047
6219
  /** @format uuid */
6048
6220
  siteConfigurationId?: string;
6049
- }, params?: RequestParams) => Promise<AxiosResponse<FileWithBytes, any>>;
6221
+ }, params?: RequestParams) => Promise<AxiosResponse<FileWithBytes, any, {}>>;
6050
6222
  /**
6051
6223
  * No description
6052
6224
  *
@@ -6064,7 +6236,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6064
6236
  pageNumber?: number;
6065
6237
  sortBy?: string;
6066
6238
  sortDirection?: string;
6067
- }, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionPaginated, any>>;
6239
+ }, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionPaginated, any, {}>>;
6068
6240
  /**
6069
6241
  * No description
6070
6242
  *
@@ -6077,7 +6249,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6077
6249
  */
6078
6250
  createFormSubmission: (data: FormSubmissionRequest, query?: {
6079
6251
  formID?: string;
6080
- }, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any>>;
6252
+ }, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any, {}>>;
6081
6253
  /**
6082
6254
  * No description
6083
6255
  *
@@ -6088,7 +6260,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6088
6260
  * @secure
6089
6261
  * @response `200` `FormSubmission` Success
6090
6262
  */
6091
- getFormSubmission: (id: string, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any>>;
6263
+ getFormSubmission: (id: string, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any, {}>>;
6092
6264
  /**
6093
6265
  * No description
6094
6266
  *
@@ -6099,7 +6271,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6099
6271
  * @secure
6100
6272
  * @response `200` `FormSubmission` Success
6101
6273
  */
6102
- replaceFormSubmission: (id: string, data: FormSubmissionRequest, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any>>;
6274
+ replaceFormSubmission: (id: string, data: FormSubmissionRequest, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any, {}>>;
6103
6275
  /**
6104
6276
  * No description
6105
6277
  *
@@ -6110,7 +6282,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6110
6282
  * @secure
6111
6283
  * @response `204` `void` No Content
6112
6284
  */
6113
- deleteFormSubmission: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6285
+ deleteFormSubmission: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
6114
6286
  /**
6115
6287
  * No description
6116
6288
  *
@@ -6128,7 +6300,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6128
6300
  pageNumber?: number;
6129
6301
  sortBy?: string;
6130
6302
  sortDirection?: string;
6131
- }, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionPaginated, any>>;
6303
+ }, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionPaginated, any, {}>>;
6132
6304
  /**
6133
6305
  * No description
6134
6306
  *
@@ -6139,7 +6311,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6139
6311
  * @secure
6140
6312
  * @response `200` `(FormVersion)[]` Success
6141
6313
  */
6142
- getFormVersions: (formId: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion[], any>>;
6314
+ getFormVersions: (formId: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion[], any, {}>>;
6143
6315
  /**
6144
6316
  * No description
6145
6317
  *
@@ -6150,7 +6322,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6150
6322
  * @secure
6151
6323
  * @response `200` `FormVersion` Success
6152
6324
  */
6153
- createFormVersion: (formId: string, data: FormVersionRequest, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
6325
+ createFormVersion: (formId: string, data: FormVersionRequest, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any, {}>>;
6154
6326
  /**
6155
6327
  * No description
6156
6328
  *
@@ -6161,7 +6333,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6161
6333
  * @secure
6162
6334
  * @response `200` `FormVersion` Success
6163
6335
  */
6164
- getFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
6336
+ getFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any, {}>>;
6165
6337
  /**
6166
6338
  * No description
6167
6339
  *
@@ -6172,7 +6344,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6172
6344
  * @secure
6173
6345
  * @response `200` `FormVersion` Success
6174
6346
  */
6175
- replaceFormVersion: (formId: string, id: string, data: FormVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
6347
+ replaceFormVersion: (formId: string, id: string, data: FormVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any, {}>>;
6176
6348
  /**
6177
6349
  * No description
6178
6350
  *
@@ -6183,7 +6355,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6183
6355
  * @secure
6184
6356
  * @response `200` `FormVersion` Success
6185
6357
  */
6186
- deleteFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
6358
+ deleteFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any, {}>>;
6187
6359
  /**
6188
6360
  * No description
6189
6361
  *
@@ -6194,7 +6366,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6194
6366
  * @secure
6195
6367
  * @response `200` `Record<string,any>` Success
6196
6368
  */
6197
- getLoanData: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Record<string, any>, any>>;
6369
+ getLoanData: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Record<string, any>, any, {}>>;
6198
6370
  /**
6199
6371
  * No description
6200
6372
  *
@@ -6207,7 +6379,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6207
6379
  * @response `200` `string` Success
6208
6380
  * @response `422` `UnprocessableEntity` Client Error
6209
6381
  */
6210
- updateLoanConsentAndCustomFieldsObsolete: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
6382
+ updateLoanConsentAndCustomFieldsObsolete: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
6211
6383
  /**
6212
6384
  * No description
6213
6385
  *
@@ -6218,7 +6390,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6218
6390
  * @secure
6219
6391
  * @response `200` `GetReport` Success
6220
6392
  */
6221
- getLoansReport: (data: GetReportRequest, params?: RequestParams) => Promise<AxiosResponse<GetReport, any>>;
6393
+ getLoansReport: (data: GetReportRequest, params?: RequestParams) => Promise<AxiosResponse<GetReport, any, {}>>;
6222
6394
  /**
6223
6395
  * No description
6224
6396
  *
@@ -6235,7 +6407,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6235
6407
  createLoan: (data: any, query?: {
6236
6408
  /** @default false */
6237
6409
  isPatch?: boolean;
6238
- }, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
6410
+ }, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
6239
6411
  /**
6240
6412
  * No description
6241
6413
  *
@@ -6251,7 +6423,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6251
6423
  createLoanInternal: (data: any, query?: {
6252
6424
  /** @default false */
6253
6425
  isPatch?: boolean;
6254
- }, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
6426
+ }, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
6255
6427
  /**
6256
6428
  * No description
6257
6429
  *
@@ -6263,7 +6435,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6263
6435
  * @response `200` `string` Success
6264
6436
  * @response `422` `UnprocessableEntity` Client Error
6265
6437
  */
6266
- updateLoanCustomFields: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
6438
+ updateLoanCustomFields: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
6267
6439
  /**
6268
6440
  * No description
6269
6441
  *
@@ -6276,7 +6448,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6276
6448
  * @response `202` `string` Accepted
6277
6449
  * @response `422` `UnprocessableEntity` Client Error
6278
6450
  */
6279
- updateLoanConsent: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
6451
+ updateLoanConsent: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
6280
6452
  /**
6281
6453
  * No description
6282
6454
  *
@@ -6287,7 +6459,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6287
6459
  * @secure
6288
6460
  * @response `200` `(DocumentData)[]` Success
6289
6461
  */
6290
- getTaskDocumentsByLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentData[], any>>;
6462
+ getTaskDocumentsByLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentData[], any, {}>>;
6291
6463
  /**
6292
6464
  * No description
6293
6465
  *
@@ -6301,7 +6473,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6301
6473
  getLoanDocumentContent: (loanId: string, documentId: string, query?: {
6302
6474
  /** @default "base64" */
6303
6475
  contentType?: string;
6304
- }, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6476
+ }, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
6305
6477
  /**
6306
6478
  * No description
6307
6479
  *
@@ -6312,7 +6484,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6312
6484
  * @secure
6313
6485
  * @response `204` `void` No Content
6314
6486
  */
6315
- getLoanRecipients: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6487
+ getLoanRecipients: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
6316
6488
  /**
6317
6489
  * No description
6318
6490
  *
@@ -6323,7 +6495,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6323
6495
  * @secure
6324
6496
  * @response `200` `(PreliminaryCondition)[]` Success
6325
6497
  */
6326
- getPreliminaryConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<PreliminaryCondition[], any>>;
6498
+ getPreliminaryConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<PreliminaryCondition[], any, {}>>;
6327
6499
  /**
6328
6500
  * No description
6329
6501
  *
@@ -6334,7 +6506,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6334
6506
  * @secure
6335
6507
  * @response `200` `(UnderwritingCondition)[]` Success
6336
6508
  */
6337
- getUnderwritingConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UnderwritingCondition[], any>>;
6509
+ getUnderwritingConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UnderwritingCondition[], any, {}>>;
6338
6510
  /**
6339
6511
  * No description
6340
6512
  *
@@ -6345,7 +6517,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6345
6517
  * @secure
6346
6518
  * @response `200` `string` Success
6347
6519
  */
6348
- getLoanEmbeddedSigningLink: (envelopeId: string, userName: string, email: string, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
6520
+ getLoanEmbeddedSigningLink: (envelopeId: string, userName: string, email: string, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
6349
6521
  /**
6350
6522
  * No description
6351
6523
  *
@@ -6357,7 +6529,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6357
6529
  * @secure
6358
6530
  * @response `200` `DocumentDataRequest` Success
6359
6531
  */
6360
- createLegacyLoanDocument: (data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any>>;
6532
+ createLegacyLoanDocument: (data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any, {}>>;
6361
6533
  /**
6362
6534
  * No description
6363
6535
  *
@@ -6374,7 +6546,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6374
6546
  createEditDraftForLoan: (loanId: string, query?: {
6375
6547
  /** @default false */
6376
6548
  isCoBorrower?: boolean;
6377
- }, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
6549
+ }, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
6378
6550
  /**
6379
6551
  * No description
6380
6552
  *
@@ -6390,7 +6562,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6390
6562
  file?: File;
6391
6563
  /** @format int32 */
6392
6564
  weight?: number;
6393
- }, params?: RequestParams) => Promise<AxiosResponse<ListingFile, any>>;
6565
+ }, params?: RequestParams) => Promise<AxiosResponse<ListingFile, any, {}>>;
6394
6566
  /**
6395
6567
  * No description
6396
6568
  *
@@ -6401,7 +6573,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6401
6573
  * @secure
6402
6574
  * @response `200` `ListingFile` Success
6403
6575
  */
6404
- updateListingFiles: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingFile, any>>;
6576
+ updateListingFiles: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingFile, any, {}>>;
6405
6577
  /**
6406
6578
  * No description
6407
6579
  *
@@ -6412,7 +6584,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6412
6584
  * @secure
6413
6585
  * @response `204` `Listing` No Content
6414
6586
  */
6415
- removeListingFile: (listingId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
6587
+ removeListingFile: (listingId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
6416
6588
  /**
6417
6589
  * No description
6418
6590
  *
@@ -6430,7 +6602,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6430
6602
  file?: File;
6431
6603
  /** @format int32 */
6432
6604
  weight?: number;
6433
- }, params?: RequestParams) => Promise<AxiosResponse<ListingPhoto, any>>;
6605
+ }, params?: RequestParams) => Promise<AxiosResponse<ListingPhoto, any, {}>>;
6434
6606
  /**
6435
6607
  * No description
6436
6608
  *
@@ -6441,7 +6613,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6441
6613
  * @secure
6442
6614
  * @response `200` `(ListingPhoto)[]` Success
6443
6615
  */
6444
- updateListingPhotos: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingPhoto[], any>>;
6616
+ updateListingPhotos: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingPhoto[], any, {}>>;
6445
6617
  /**
6446
6618
  * No description
6447
6619
  *
@@ -6452,7 +6624,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6452
6624
  * @secure
6453
6625
  * @response `204` `Listing` No Content
6454
6626
  */
6455
- removeListingPhoto: (listingId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
6627
+ removeListingPhoto: (listingId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
6456
6628
  /**
6457
6629
  * No description
6458
6630
  *
@@ -6470,7 +6642,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6470
6642
  pageNumber?: number;
6471
6643
  sortBy?: string;
6472
6644
  sortDirection?: string;
6473
- }, params?: RequestParams) => Promise<AxiosResponse<ListingPaginated, any>>;
6645
+ }, params?: RequestParams) => Promise<AxiosResponse<ListingPaginated, any, {}>>;
6474
6646
  /**
6475
6647
  * No description
6476
6648
  *
@@ -6481,7 +6653,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6481
6653
  * @secure
6482
6654
  * @response `201` `Listing` Created
6483
6655
  */
6484
- createListing: (data: ListingRequest, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
6656
+ createListing: (data: ListingRequest, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
6485
6657
  /**
6486
6658
  * No description
6487
6659
  *
@@ -6492,7 +6664,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6492
6664
  * @secure
6493
6665
  * @response `200` `Listing` Success
6494
6666
  */
6495
- getListingBySlug: (slug: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
6667
+ getListingBySlug: (slug: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
6496
6668
  /**
6497
6669
  * No description
6498
6670
  *
@@ -6503,7 +6675,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6503
6675
  * @secure
6504
6676
  * @response `200` `Listing` Success
6505
6677
  */
6506
- getListing: (id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
6678
+ getListing: (id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
6507
6679
  /**
6508
6680
  * No description
6509
6681
  *
@@ -6514,7 +6686,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6514
6686
  * @secure
6515
6687
  * @response `200` `Listing` Success
6516
6688
  */
6517
- replaceListing: (id: string, data: ListingRequest, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
6689
+ replaceListing: (id: string, data: ListingRequest, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
6518
6690
  /**
6519
6691
  * No description
6520
6692
  *
@@ -6525,7 +6697,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6525
6697
  * @secure
6526
6698
  * @response `204` `void` No Content
6527
6699
  */
6528
- deleteListing: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6700
+ deleteListing: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
6529
6701
  /**
6530
6702
  * No description
6531
6703
  *
@@ -6543,7 +6715,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6543
6715
  pageNumber?: number;
6544
6716
  sortBy?: string;
6545
6717
  sortDirection?: string;
6546
- }, params?: RequestParams) => Promise<AxiosResponse<ListingPaginated, any>>;
6718
+ }, params?: RequestParams) => Promise<AxiosResponse<ListingPaginated, any, {}>>;
6547
6719
  /**
6548
6720
  * No description
6549
6721
  *
@@ -6557,7 +6729,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6557
6729
  updateListingBackgroundImage: (id: string, data: {
6558
6730
  /** @format binary */
6559
6731
  file?: File;
6560
- }, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
6732
+ }, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
6561
6733
  /**
6562
6734
  * No description
6563
6735
  *
@@ -6568,7 +6740,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6568
6740
  * @secure
6569
6741
  * @response `204` `void` No Content
6570
6742
  */
6571
- deleteListingBackgroundImage: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6743
+ deleteListingBackgroundImage: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
6572
6744
  /**
6573
6745
  * No description
6574
6746
  *
@@ -6579,7 +6751,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6579
6751
  * @secure
6580
6752
  * @response `200` `File` Success
6581
6753
  */
6582
- getListingOpenHouseFlyer: (id: string, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
6754
+ getListingOpenHouseFlyer: (id: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
6583
6755
  /**
6584
6756
  * No description
6585
6757
  *
@@ -6590,7 +6762,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6590
6762
  * @secure
6591
6763
  * @response `200` `RunLOCalculation` Success
6592
6764
  */
6593
- getLoanCalculator: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any>>;
6765
+ getLoanCalculator: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any, {}>>;
6594
6766
  /**
6595
6767
  * No description
6596
6768
  *
@@ -6603,7 +6775,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6603
6775
  * @response `422` `UnprocessableEntity` Client Error
6604
6776
  * @response `423` `UnprocessableEntity` Client Error
6605
6777
  */
6606
- runLoanCalculator: (loanId: string, data: RunLOCalculationRequest, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any>>;
6778
+ runLoanCalculator: (loanId: string, data: RunLOCalculationRequest, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any, {}>>;
6607
6779
  /**
6608
6780
  * No description
6609
6781
  *
@@ -6614,7 +6786,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6614
6786
  * @secure
6615
6787
  * @response `200` `LoanComparison` Success
6616
6788
  */
6617
- getLoanComparisons: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<LoanComparison, any>>;
6789
+ getLoanComparisons: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<LoanComparison, any, {}>>;
6618
6790
  /**
6619
6791
  * No description
6620
6792
  *
@@ -6627,7 +6799,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6627
6799
  * @response `422` `UnprocessableEntity` Client Error
6628
6800
  * @response `423` `UnprocessableEntity` Client Error
6629
6801
  */
6630
- createLoanComparison: (loanId: string, index: number, data: LoanComparisonScenario, params?: RequestParams) => Promise<AxiosResponse<LoanComparisonScenario, any>>;
6802
+ createLoanComparison: (loanId: string, index: number, data: LoanComparisonScenario, params?: RequestParams) => Promise<AxiosResponse<LoanComparisonScenario, any, {}>>;
6631
6803
  /**
6632
6804
  * No description
6633
6805
  *
@@ -6638,7 +6810,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6638
6810
  * @secure
6639
6811
  * @response `204` `void` No Content
6640
6812
  */
6641
- deleteLoanComparison: (loanId: string, index: number, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6813
+ deleteLoanComparison: (loanId: string, index: number, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
6642
6814
  /**
6643
6815
  * No description
6644
6816
  *
@@ -6650,7 +6822,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6650
6822
  * @response `204` `void` No Content
6651
6823
  * @response `422` `UnprocessableEntity` Client Error
6652
6824
  */
6653
- createLoanComparisonPdf: (loanId: string, data: PostLoanComparisonPdfRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6825
+ createLoanComparisonPdf: (loanId: string, data: PostLoanComparisonPdfRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
6654
6826
  /**
6655
6827
  * No description
6656
6828
  *
@@ -6661,7 +6833,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6661
6833
  * @secure
6662
6834
  * @response `200` `(string)[]` Success
6663
6835
  */
6664
- getLoanDocumentBuckets: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<string[], any>>;
6836
+ getLoanDocumentBuckets: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<string[], any, {}>>;
6665
6837
  /**
6666
6838
  * No description
6667
6839
  *
@@ -6672,7 +6844,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6672
6844
  * @secure
6673
6845
  * @response `201` `(string)[]` Created
6674
6846
  */
6675
- createLoanDocumentBuckets: (loanId: string, data: string[], params?: RequestParams) => Promise<AxiosResponse<string[], any>>;
6847
+ createLoanDocumentBuckets: (loanId: string, data: string[], params?: RequestParams) => Promise<AxiosResponse<string[], any, {}>>;
6676
6848
  /**
6677
6849
  * No description
6678
6850
  *
@@ -6687,7 +6859,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6687
6859
  getLoanDocument: (loanId: string, documentId: string, query?: {
6688
6860
  /** @default false */
6689
6861
  preview?: boolean;
6690
- }, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any>>;
6862
+ }, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any, {}>>;
6691
6863
  /**
6692
6864
  * No description
6693
6865
  *
@@ -6705,18 +6877,18 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6705
6877
  pageNumber?: number;
6706
6878
  sortBy?: string;
6707
6879
  sortDirection?: string;
6708
- }, params?: RequestParams) => Promise<AxiosResponse<LoanDocumentSearchPaginated, any>>;
6880
+ }, params?: RequestParams) => Promise<AxiosResponse<LoanDocumentSearchPaginated, any, {}>>;
6709
6881
  /**
6710
6882
  * @description Returns all documents grouped by folder for sidebar display
6711
6883
  *
6712
6884
  * @tags LoanDocuments
6713
6885
  * @name GetLoanDocumentFolders
6714
6886
  * @summary Get document folder hierarchy
6715
- * @request GET:/api/loans/{loanId}/documents/folders
6887
+ * @request POST:/api/loans/{loanId}/documents/folders
6716
6888
  * @secure
6717
6889
  * @response `200` `(DocumentFolder)[]` Success
6718
6890
  */
6719
- getLoanDocumentFolders: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentFolder[], any>>;
6891
+ getLoanDocumentFolders: (loanId: string, data: DocumentFoldersRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentFolder[], any, {}>>;
6720
6892
  /**
6721
6893
  * No description
6722
6894
  *
@@ -6728,7 +6900,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6728
6900
  * @response `200` `string` Success
6729
6901
  * @response `404` `ProblemDetails` Not Found
6730
6902
  */
6731
- downloadLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
6903
+ downloadLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
6732
6904
  /**
6733
6905
  * No description
6734
6906
  *
@@ -6746,7 +6918,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6746
6918
  /** @format binary */
6747
6919
  file?: File;
6748
6920
  bucket?: string;
6749
- }, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any>>;
6921
+ }, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any, {}>>;
6750
6922
  /**
6751
6923
  * No description
6752
6924
  *
@@ -6759,7 +6931,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6759
6931
  * @response `404` `ProblemDetails` Not Found
6760
6932
  * @response `422` `UnprocessableEntity` Client Error
6761
6933
  */
6762
- retryFailedLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any>>;
6934
+ retryFailedLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any, {}>>;
6763
6935
  /**
6764
6936
  * No description
6765
6937
  *
@@ -6770,7 +6942,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6770
6942
  * @secure
6771
6943
  * @response `200` `DocumentDataRequest` Success
6772
6944
  */
6773
- generateLoanDocument: (loanId: string, data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any>>;
6945
+ generateLoanDocument: (loanId: string, data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any, {}>>;
6774
6946
  /**
6775
6947
  * No description
6776
6948
  *
@@ -6783,32 +6955,32 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6783
6955
  * @response `400` `ProblemDetails` Bad Request
6784
6956
  * @response `404` `ProblemDetails` Not Found
6785
6957
  */
6786
- sendLoanDocuments: (loanId: string, data: SendLoanDocumentsRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6958
+ sendLoanDocuments: (loanId: string, data: SendLoanDocumentsRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
6787
6959
  /**
6788
6960
  * @description Fetches all documents from Encompass that don't exist locally and stores them in S3
6789
6961
  *
6790
6962
  * @tags LoanDocuments
6791
- * @name SyncLoanDocumentsFromEncompass
6792
- * @summary Sync documents from Encompass
6963
+ * @name SyncLoanDocumentsFromLos
6964
+ * @summary Sync documents from LOS
6793
6965
  * @request POST:/api/loans/{loanId}/documents/sync
6794
6966
  * @secure
6795
6967
  * @response `200` `DocumentSync` Success
6796
6968
  * @response `404` `ProblemDetails` Not Found
6797
6969
  */
6798
- syncLoanDocumentsFromEncompass: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentSync, any>>;
6970
+ syncLoanDocumentsFromLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentSync, any, {}>>;
6799
6971
  /**
6800
- * @description Re-attempts to push a failed document to Encompass
6972
+ * @description Re-attempts to push a failed document to LOS
6801
6973
  *
6802
6974
  * @tags LoanDocuments
6803
- * @name RetrySyncLoanDocumentToEncompass
6804
- * @summary Retry syncing a document to Encompass
6975
+ * @name RetrySyncLoanDocumentToLos
6976
+ * @summary Retry syncing a document to LOS
6805
6977
  * @request POST:/api/loans/{loanId}/documents/{documentId}/sync/retry
6806
6978
  * @secure
6807
6979
  * @response `200` `void` Success
6808
6980
  * @response `404` `ProblemDetails` Not Found
6809
6981
  * @response `423` `ProblemDetails` Client Error
6810
6982
  */
6811
- retrySyncLoanDocumentToEncompass: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6983
+ retrySyncLoanDocumentToLos: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
6812
6984
  /**
6813
6985
  * No description
6814
6986
  *
@@ -6819,7 +6991,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6819
6991
  * @secure
6820
6992
  * @response `201` `Draft` Created
6821
6993
  */
6822
- createLoanDraft: (data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
6994
+ createLoanDraft: (data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
6823
6995
  /**
6824
6996
  * No description
6825
6997
  *
@@ -6830,7 +7002,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6830
7002
  * @secure
6831
7003
  * @response `200` `(DraftContent)[]` Success
6832
7004
  */
6833
- getLoanDrafts: (params?: RequestParams) => Promise<AxiosResponse<DraftContent[], any>>;
7005
+ getLoanDrafts: (params?: RequestParams) => Promise<AxiosResponse<DraftContent[], any, {}>>;
6834
7006
  /**
6835
7007
  * No description
6836
7008
  *
@@ -6841,7 +7013,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6841
7013
  * @secure
6842
7014
  * @response `200` `DraftContent` Success
6843
7015
  */
6844
- getLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<DraftContent, any>>;
7016
+ getLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<DraftContent, any, {}>>;
6845
7017
  /**
6846
7018
  * No description
6847
7019
  *
@@ -6852,7 +7024,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6852
7024
  * @secure
6853
7025
  * @response `200` `Draft` Success
6854
7026
  */
6855
- replaceLoanDraft: (draftId: string, data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
7027
+ replaceLoanDraft: (draftId: string, data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
6856
7028
  /**
6857
7029
  * No description
6858
7030
  *
@@ -6863,7 +7035,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6863
7035
  * @secure
6864
7036
  * @response `204` `void` No Content
6865
7037
  */
6866
- deleteLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7038
+ deleteLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
6867
7039
  /**
6868
7040
  * No description
6869
7041
  *
@@ -6881,7 +7053,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6881
7053
  pageNumber?: number;
6882
7054
  sortBy?: string;
6883
7055
  sortDirection?: string;
6884
- }, params?: RequestParams) => Promise<AxiosResponse<DraftContentPaginated, any>>;
7056
+ }, params?: RequestParams) => Promise<AxiosResponse<DraftContentPaginated, any, {}>>;
6885
7057
  /**
6886
7058
  * No description
6887
7059
  *
@@ -6892,7 +7064,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6892
7064
  * @secure
6893
7065
  * @response `200` `Draft` Success
6894
7066
  */
6895
- reassignLoanOfficer: (draftId: string, data: DraftLoanOfficerReassignRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
7067
+ reassignLoanOfficer: (draftId: string, data: DraftLoanOfficerReassignRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
6896
7068
  /**
6897
7069
  * No description
6898
7070
  *
@@ -6903,7 +7075,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6903
7075
  * @secure
6904
7076
  * @response `200` `Draft` Success
6905
7077
  */
6906
- restoreLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
7078
+ restoreLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
6907
7079
  /**
6908
7080
  * No description
6909
7081
  *
@@ -6923,7 +7095,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6923
7095
  pageNumber?: number;
6924
7096
  sortBy?: string;
6925
7097
  sortDirection?: string;
6926
- }, params?: RequestParams) => Promise<AxiosResponse<LoanImportPaginated, any>>;
7098
+ }, params?: RequestParams) => Promise<AxiosResponse<LoanImportPaginated, any, {}>>;
6927
7099
  /**
6928
7100
  * No description
6929
7101
  *
@@ -6934,7 +7106,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6934
7106
  * @secure
6935
7107
  * @response `201` `LoanImport` Created
6936
7108
  */
6937
- createLoanImport: (data: CreateLoanImportRequest, params?: RequestParams) => Promise<AxiosResponse<LoanImport, any>>;
7109
+ createLoanImport: (data: CreateLoanImportRequest, params?: RequestParams) => Promise<AxiosResponse<LoanImport, any, {}>>;
6938
7110
  /**
6939
7111
  * No description
6940
7112
  *
@@ -6945,7 +7117,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6945
7117
  * @secure
6946
7118
  * @response `200` `LoanImport` Success
6947
7119
  */
6948
- getLoanImport: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanImport, any>>;
7120
+ getLoanImport: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanImport, any, {}>>;
6949
7121
  /**
6950
7122
  * No description
6951
7123
  *
@@ -6963,7 +7135,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6963
7135
  pageNumber?: number;
6964
7136
  sortBy?: string;
6965
7137
  sortDirection?: string;
6966
- }, params?: RequestParams) => Promise<AxiosResponse<LoanImportLogPaginated, any>>;
7138
+ }, params?: RequestParams) => Promise<AxiosResponse<LoanImportLogPaginated, any, {}>>;
6967
7139
  /**
6968
7140
  * No description
6969
7141
  *
@@ -6975,7 +7147,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6975
7147
  * @response `200` `(Invite)[]` Success
6976
7148
  * @response `404` `ProblemDetails` Not Found
6977
7149
  */
6978
- getLoanInvites: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Invite[], any>>;
7150
+ getLoanInvites: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Invite[], any, {}>>;
6979
7151
  /**
6980
7152
  * No description
6981
7153
  *
@@ -6987,7 +7159,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6987
7159
  * @response `200` `(Invite)[]` Success
6988
7160
  * @response `404` `ProblemDetails` Not Found
6989
7161
  */
6990
- inviteLoanContacts: (loanId: string, data: string[], params?: RequestParams) => Promise<AxiosResponse<Invite[], any>>;
7162
+ inviteLoanContacts: (loanId: string, data: string[], params?: RequestParams) => Promise<AxiosResponse<Invite[], any, {}>>;
6991
7163
  /**
6992
7164
  * No description
6993
7165
  *
@@ -7005,7 +7177,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7005
7177
  pageNumber?: number;
7006
7178
  sortBy?: string;
7007
7179
  sortDirection?: string;
7008
- }, params?: RequestParams) => Promise<AxiosResponse<LoanLogPaginated, any>>;
7180
+ }, params?: RequestParams) => Promise<AxiosResponse<LoanLogPaginated, any, {}>>;
7009
7181
  /**
7010
7182
  * No description
7011
7183
  *
@@ -7024,7 +7196,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7024
7196
  pageNumber?: number;
7025
7197
  sortBy?: string;
7026
7198
  sortDirection?: string;
7027
- }, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any>>;
7199
+ }, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any, {}>>;
7028
7200
  /**
7029
7201
  * No description
7030
7202
  *
@@ -7042,7 +7214,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7042
7214
  pageNumber?: number;
7043
7215
  sortBy?: string;
7044
7216
  sortDirection?: string;
7045
- }, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any>>;
7217
+ }, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any, {}>>;
7046
7218
  /**
7047
7219
  * No description
7048
7220
  *
@@ -7053,7 +7225,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7053
7225
  * @secure
7054
7226
  * @response `200` `BranchUser` Success
7055
7227
  */
7056
- getLoanOfficer: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any>>;
7228
+ getLoanOfficer: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any, {}>>;
7057
7229
  /**
7058
7230
  * No description
7059
7231
  *
@@ -7065,7 +7237,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7065
7237
  * @response `200` `SiteConfiguration` Success
7066
7238
  * @response `422` `UnprocessableEntity` Client Error
7067
7239
  */
7068
- createLoanOfficerSiteConfiguration: (loanOfficerId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
7240
+ createLoanOfficerSiteConfiguration: (loanOfficerId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
7069
7241
  /**
7070
7242
  * No description
7071
7243
  *
@@ -7076,7 +7248,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7076
7248
  * @secure
7077
7249
  * @response `200` `SiteConfigurationWithInherited` Success
7078
7250
  */
7079
- getLoanOfficerSiteConfiguration: (loanOfficerId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
7251
+ getLoanOfficerSiteConfiguration: (loanOfficerId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any, {}>>;
7080
7252
  /**
7081
7253
  * No description
7082
7254
  *
@@ -7090,7 +7262,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7090
7262
  */
7091
7263
  replaceLoanOfficerSiteConfiguration: (loanOfficerId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
7092
7264
  applyToChildren?: boolean;
7093
- }, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
7265
+ }, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
7094
7266
  /**
7095
7267
  * No description
7096
7268
  *
@@ -7108,7 +7280,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7108
7280
  pageNumber?: number;
7109
7281
  sortBy?: string;
7110
7282
  sortDirection?: string;
7111
- }, params?: RequestParams) => Promise<AxiosResponse<LoanQueuePaginated, any>>;
7283
+ }, params?: RequestParams) => Promise<AxiosResponse<LoanQueuePaginated, any, {}>>;
7112
7284
  /**
7113
7285
  * No description
7114
7286
  *
@@ -7120,7 +7292,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7120
7292
  * @response `200` `any` Success
7121
7293
  * @response `404` `ProblemDetails` Not Found
7122
7294
  */
7123
- getLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<any, any>>;
7295
+ getLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
7124
7296
  /**
7125
7297
  * No description
7126
7298
  *
@@ -7132,7 +7304,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7132
7304
  * @response `200` `LoanQueueWithData` Success
7133
7305
  * @response `404` `ProblemDetails` Not Found
7134
7306
  */
7135
- replaceLoanQueue: (loanQueueId: string, data: UpdateLoanQueueRequest, params?: RequestParams) => Promise<AxiosResponse<LoanQueueWithData, any>>;
7307
+ replaceLoanQueue: (loanQueueId: string, data: UpdateLoanQueueRequest, params?: RequestParams) => Promise<AxiosResponse<LoanQueueWithData, any, {}>>;
7136
7308
  /**
7137
7309
  * No description
7138
7310
  *
@@ -7144,7 +7316,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7144
7316
  * @response `204` `void` No Content
7145
7317
  * @response `404` `ProblemDetails` Not Found
7146
7318
  */
7147
- deleteLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7319
+ deleteLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
7148
7320
  /**
7149
7321
  * No description
7150
7322
  *
@@ -7156,7 +7328,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7156
7328
  * @response `204` `void` No Content
7157
7329
  * @response `404` `ProblemDetails` Not Found
7158
7330
  */
7159
- retryLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7331
+ retryLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
7160
7332
  /**
7161
7333
  * No description
7162
7334
  *
@@ -7168,7 +7340,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7168
7340
  * @response `200` `Loan` Success
7169
7341
  * @response `404` `ProblemDetails` Not Found
7170
7342
  */
7171
- getLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any>>;
7343
+ getLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any, {}>>;
7172
7344
  /**
7173
7345
  * No description
7174
7346
  *
@@ -7176,11 +7348,10 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7176
7348
  * @name GetLoans
7177
7349
  * @summary Get Loans
7178
7350
  * @request GET:/api/loans
7179
- * @deprecated
7180
7351
  * @secure
7181
7352
  * @response `200` `GetApplications` Success
7182
7353
  */
7183
- getLoans: (params?: RequestParams) => Promise<AxiosResponse<GetApplications, any>>;
7354
+ getLoans: (params?: RequestParams) => Promise<AxiosResponse<GetApplications, any, {}>>;
7184
7355
  /**
7185
7356
  * No description
7186
7357
  *
@@ -7194,7 +7365,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7194
7365
  * @response `401` `ProblemDetails` Unauthorized
7195
7366
  * @response `403` `ProblemDetails` Forbidden
7196
7367
  */
7197
- createLoanv3: (data: LoanApplicationRequest, params?: RequestParams) => Promise<AxiosResponse<LoanApplication, any>>;
7368
+ createLoanv3: (data: LoanApplicationRequest, params?: RequestParams) => Promise<AxiosResponse<LoanApplication, any, {}>>;
7198
7369
  /**
7199
7370
  * No description
7200
7371
  *
@@ -7212,7 +7383,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7212
7383
  pageNumber?: number;
7213
7384
  sortBy?: string;
7214
7385
  sortDirection?: string;
7215
- }, params?: RequestParams) => Promise<AxiosResponse<LoanListPaginated, any>>;
7386
+ }, params?: RequestParams) => Promise<AxiosResponse<LoanListPaginated, any, {}>>;
7216
7387
  /**
7217
7388
  * No description
7218
7389
  *
@@ -7228,7 +7399,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7228
7399
  * @response `404` `ProblemDetails` Not Found
7229
7400
  * @response `409` `any` Conflict
7230
7401
  */
7231
- updateLoan: (loanId: string, data: any, params?: RequestParams) => Promise<AxiosResponse<Loan, any>>;
7402
+ updateLoan: (loanId: string, data: any, params?: RequestParams) => Promise<AxiosResponse<Loan, any, {}>>;
7232
7403
  /**
7233
7404
  * No description
7234
7405
  *
@@ -7241,7 +7412,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7241
7412
  * @response `400` `ProblemDetails` Bad Request
7242
7413
  * @response `404` `ProblemDetails` Not Found
7243
7414
  */
7244
- completeBorrowerApplication: (loanId: string, borrowerId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7415
+ completeBorrowerApplication: (loanId: string, borrowerId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
7245
7416
  /**
7246
7417
  * No description
7247
7418
  *
@@ -7252,7 +7423,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7252
7423
  * @secure
7253
7424
  * @response `200` `Loan` Success
7254
7425
  */
7255
- importLoanFromLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any>>;
7426
+ importLoanFromLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any, {}>>;
7256
7427
  /**
7257
7428
  * No description
7258
7429
  *
@@ -7271,7 +7442,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7271
7442
  pageNumber?: number;
7272
7443
  sortBy?: string;
7273
7444
  sortDirection?: string;
7274
- }, params?: RequestParams) => Promise<AxiosResponse<TaskCommentPaginated, any>>;
7445
+ }, params?: RequestParams) => Promise<AxiosResponse<TaskCommentPaginated, any, {}>>;
7275
7446
  /**
7276
7447
  * No description
7277
7448
  *
@@ -7283,7 +7454,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7283
7454
  * @response `200` `TaskComment` Success
7284
7455
  * @response `404` `ProblemDetails` Not Found
7285
7456
  */
7286
- getLoanTaskComment: (id: string, loanId: string, userLoanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any>>;
7457
+ getLoanTaskComment: (id: string, loanId: string, userLoanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any, {}>>;
7287
7458
  /**
7288
7459
  * No description
7289
7460
  *
@@ -7295,7 +7466,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7295
7466
  * @response `201` `TaskComment` Created
7296
7467
  * @response `404` `ProblemDetails` Not Found
7297
7468
  */
7298
- createLoanTaskComment: (loanId: string, userLoanTaskId: string, data: TaskCommentRequest, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any>>;
7469
+ createLoanTaskComment: (loanId: string, userLoanTaskId: string, data: TaskCommentRequest, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any, {}>>;
7299
7470
  /**
7300
7471
  * No description
7301
7472
  *
@@ -7307,7 +7478,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7307
7478
  * @response `200` `TaskComment` Success
7308
7479
  * @response `404` `ProblemDetails` Not Found
7309
7480
  */
7310
- replaceLoanTaskComment: (loanId: string, userLoanTaskId: string, commentId: string, data: TaskCommentRequest, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any>>;
7481
+ replaceLoanTaskComment: (loanId: string, userLoanTaskId: string, commentId: string, data: TaskCommentRequest, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any, {}>>;
7311
7482
  /**
7312
7483
  * No description
7313
7484
  *
@@ -7319,7 +7490,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7319
7490
  * @response `204` `void` No Content
7320
7491
  * @response `404` `ProblemDetails` Not Found
7321
7492
  */
7322
- deleteLoanTaskComment: (loanId: string, userLoanTaskId: string, commentId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7493
+ deleteLoanTaskComment: (loanId: string, userLoanTaskId: string, commentId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
7323
7494
  /**
7324
7495
  * No description
7325
7496
  *
@@ -7337,7 +7508,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7337
7508
  /** @format binary */
7338
7509
  file?: File;
7339
7510
  bucket?: string;
7340
- }, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
7511
+ }, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
7341
7512
  /**
7342
7513
  * No description
7343
7514
  *
@@ -7349,7 +7520,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7349
7520
  * @response `204` `UserLoanTask` No Content
7350
7521
  * @response `422` `UnprocessableEntity` Client Error
7351
7522
  */
7352
- createLoanTaskDocumentBucket: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
7523
+ createLoanTaskDocumentBucket: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
7353
7524
  /**
7354
7525
  * No description
7355
7526
  *
@@ -7361,7 +7532,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7361
7532
  * @response `200` `(UserLoanTask)[]` Success
7362
7533
  * @response `404` `ProblemDetails` Not Found
7363
7534
  */
7364
- getLoanTasks: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any>>;
7535
+ getLoanTasks: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any, {}>>;
7365
7536
  /**
7366
7537
  * No description
7367
7538
  *
@@ -7373,7 +7544,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7373
7544
  * @response `200` `UserLoanTask` Success
7374
7545
  * @response `404` `ProblemDetails` Not Found
7375
7546
  */
7376
- getLoanTask: (id: string, loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
7547
+ getLoanTask: (id: string, loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
7377
7548
  /**
7378
7549
  * @description Get the difference between the current loan tasks and the tasks generated by business rules
7379
7550
  *
@@ -7385,7 +7556,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7385
7556
  * @response `200` `(UserLoanTask)[]` Success
7386
7557
  * @response `404` `ProblemDetails` Not Found
7387
7558
  */
7388
- getLoanTaskDifference: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any>>;
7559
+ getLoanTaskDifference: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any, {}>>;
7389
7560
  /**
7390
7561
  * No description
7391
7562
  *
@@ -7397,7 +7568,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7397
7568
  * @response `201` `UserLoanTask` Created
7398
7569
  * @response `404` `ProblemDetails` Not Found
7399
7570
  */
7400
- createLoanTask: (loanId: string, taskId: string, data: UserLoanTaskRequest, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
7571
+ createLoanTask: (loanId: string, taskId: string, data: UserLoanTaskRequest, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
7401
7572
  /**
7402
7573
  * No description
7403
7574
  *
@@ -7409,7 +7580,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7409
7580
  * @response `201` `(UserLoanTask)[]` Created
7410
7581
  * @response `404` `ProblemDetails` Not Found
7411
7582
  */
7412
- importLoanTask: (loanId: string, data: ImportUserLoanTaskRequest[], params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any>>;
7583
+ importLoanTask: (loanId: string, data: ImportUserLoanTaskRequest[], params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any, {}>>;
7413
7584
  /**
7414
7585
  * No description
7415
7586
  *
@@ -7421,7 +7592,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7421
7592
  * @response `200` `UserLoanTask` Success
7422
7593
  * @response `404` `ProblemDetails` Not Found
7423
7594
  */
7424
- replaceLoanTask: (loanId: string, userLoanTaskId: string, data: UserLoanTaskUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
7595
+ replaceLoanTask: (loanId: string, userLoanTaskId: string, data: UserLoanTaskUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
7425
7596
  /**
7426
7597
  * No description
7427
7598
  *
@@ -7433,7 +7604,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7433
7604
  * @response `204` `void` No Content
7434
7605
  * @response `404` `ProblemDetails` Not Found
7435
7606
  */
7436
- deleteLoanTask: (loanId: string, userLoanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7607
+ deleteLoanTask: (loanId: string, userLoanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
7437
7608
  /**
7438
7609
  * No description
7439
7610
  *
@@ -7445,7 +7616,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7445
7616
  * @response `204` `void` No Content
7446
7617
  * @response `404` `ProblemDetails` Not Found
7447
7618
  */
7448
- sendOutstandingLoanTaskNotification: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7619
+ sendOutstandingLoanTaskNotification: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
7449
7620
  /**
7450
7621
  * No description
7451
7622
  *
@@ -7458,7 +7629,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7458
7629
  * @response `404` `ProblemDetails` Not Found
7459
7630
  * @response `422` `UnprocessableEntity` Client Error
7460
7631
  */
7461
- createLoanTaskVerification: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
7632
+ createLoanTaskVerification: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
7462
7633
  /**
7463
7634
  * No description
7464
7635
  *
@@ -7469,7 +7640,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7469
7640
  * @secure
7470
7641
  * @response `200` `(UserLoanConsent)[]` Success
7471
7642
  */
7472
- getLoanUserConsents: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanConsent[], any>>;
7643
+ getLoanUserConsents: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanConsent[], any, {}>>;
7473
7644
  /**
7474
7645
  * No description
7475
7646
  *
@@ -7480,7 +7651,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7480
7651
  * @secure
7481
7652
  * @response `200` `LoanUser` Success
7482
7653
  */
7483
- getLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any>>;
7654
+ getLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any, {}>>;
7484
7655
  /**
7485
7656
  * No description
7486
7657
  *
@@ -7491,7 +7662,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7491
7662
  * @secure
7492
7663
  * @response `201` `LoanUser` Created
7493
7664
  */
7494
- addLoanUser: (loanId: string, userId: string, data: CreateUserLoan, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any>>;
7665
+ addLoanUser: (loanId: string, userId: string, data: CreateUserLoan, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any, {}>>;
7495
7666
  /**
7496
7667
  * No description
7497
7668
  *
@@ -7502,7 +7673,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7502
7673
  * @secure
7503
7674
  * @response `204` `LoanUser` No Content
7504
7675
  */
7505
- removeLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any>>;
7676
+ removeLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any, {}>>;
7506
7677
  /**
7507
7678
  * No description
7508
7679
  *
@@ -7513,7 +7684,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7513
7684
  * @secure
7514
7685
  * @response `204` `void` No Content
7515
7686
  */
7516
- sendLoanUserInviteReminderNotification: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7687
+ sendLoanUserInviteReminderNotification: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
7517
7688
  /**
7518
7689
  * No description
7519
7690
  *
@@ -7524,7 +7695,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7524
7695
  * @secure
7525
7696
  * @response `200` `(MilestoneConfiguration)[]` Success
7526
7697
  */
7527
- getMilestones: (params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration[], any>>;
7698
+ getMilestones: (params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration[], any, {}>>;
7528
7699
  /**
7529
7700
  * No description
7530
7701
  *
@@ -7536,7 +7707,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7536
7707
  * @response `201` `MilestoneConfiguration` Created
7537
7708
  * @response `422` `UnprocessableEntity` Client Error
7538
7709
  */
7539
- createMilestone: (data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any>>;
7710
+ createMilestone: (data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any, {}>>;
7540
7711
  /**
7541
7712
  * No description
7542
7713
  *
@@ -7548,7 +7719,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7548
7719
  * @response `200` `MilestoneConfiguration` Success
7549
7720
  * @response `404` `Error` Not Found
7550
7721
  */
7551
- getMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any>>;
7722
+ getMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any, {}>>;
7552
7723
  /**
7553
7724
  * No description
7554
7725
  *
@@ -7561,7 +7732,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7561
7732
  * @response `404` `Error` Not Found
7562
7733
  * @response `422` `UnprocessableEntity` Client Error
7563
7734
  */
7564
- replaceMilestone: (id: string, data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any>>;
7735
+ replaceMilestone: (id: string, data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any, {}>>;
7565
7736
  /**
7566
7737
  * No description
7567
7738
  *
@@ -7573,7 +7744,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7573
7744
  * @response `204` `void` No Content
7574
7745
  * @response `404` `Error` Not Found
7575
7746
  */
7576
- deleteMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7747
+ deleteMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
7577
7748
  /**
7578
7749
  * No description
7579
7750
  *
@@ -7585,7 +7756,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7585
7756
  * @response `200` `MonthlyPaymentCalculator` Success
7586
7757
  * @response `422` `ProblemDetails` Client Error
7587
7758
  */
7588
- calculateMortgageMonthlyPayment: (data: MonthlyPaymentCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<MonthlyPaymentCalculator, any>>;
7759
+ calculateMortgageMonthlyPayment: (data: MonthlyPaymentCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<MonthlyPaymentCalculator, any, {}>>;
7589
7760
  /**
7590
7761
  * No description
7591
7762
  *
@@ -7597,7 +7768,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7597
7768
  * @response `200` `AffordabilityCalculator` Success
7598
7769
  * @response `422` `ProblemDetails` Client Error
7599
7770
  */
7600
- calculateMortgageAffordability: (data: AffordabilityCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<AffordabilityCalculator, any>>;
7771
+ calculateMortgageAffordability: (data: AffordabilityCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<AffordabilityCalculator, any, {}>>;
7601
7772
  /**
7602
7773
  * No description
7603
7774
  *
@@ -7609,7 +7780,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7609
7780
  * @response `200` `LoanComparisonCalculator` Success
7610
7781
  * @response `422` `ProblemDetails` Client Error
7611
7782
  */
7612
- calculateMortgageLoanComparison: (data: LoanComparisonCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<LoanComparisonCalculator, any>>;
7783
+ calculateMortgageLoanComparison: (data: LoanComparisonCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<LoanComparisonCalculator, any, {}>>;
7613
7784
  /**
7614
7785
  * No description
7615
7786
  *
@@ -7621,7 +7792,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7621
7792
  * @response `200` `RefinanceCalculator` Success
7622
7793
  * @response `422` `ProblemDetails` Client Error
7623
7794
  */
7624
- calculateMortgageRefinance: (data: RefinanceCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<RefinanceCalculator, any>>;
7795
+ calculateMortgageRefinance: (data: RefinanceCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<RefinanceCalculator, any, {}>>;
7625
7796
  /**
7626
7797
  * No description
7627
7798
  *
@@ -7633,7 +7804,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7633
7804
  * @response `200` `void` Success
7634
7805
  * @response `422` `UnprocessableEntity` Client Error
7635
7806
  */
7636
- sendNotificationForLoan: (data: SendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7807
+ sendNotificationForLoan: (data: SendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
7637
7808
  /**
7638
7809
  * No description
7639
7810
  *
@@ -7645,7 +7816,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7645
7816
  * @response `200` `void` Success
7646
7817
  * @response `422` `UnprocessableEntity` Client Error
7647
7818
  */
7648
- sendTestNotificationForLoan: (data: TestSendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7819
+ sendTestNotificationForLoan: (data: TestSendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
7649
7820
  /**
7650
7821
  * No description
7651
7822
  *
@@ -7658,7 +7829,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7658
7829
  */
7659
7830
  getNotificationTemplates: (query?: {
7660
7831
  showAll?: boolean;
7661
- }, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateBase[], any>>;
7832
+ }, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateBase[], any, {}>>;
7662
7833
  /**
7663
7834
  * No description
7664
7835
  *
@@ -7670,7 +7841,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7670
7841
  * @response `201` `NotificationTemplate` Created
7671
7842
  * @response `422` `UnprocessableEntity` Client Error
7672
7843
  */
7673
- createNotificationTemplate: (data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
7844
+ createNotificationTemplate: (data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any, {}>>;
7674
7845
  /**
7675
7846
  * No description
7676
7847
  *
@@ -7681,7 +7852,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7681
7852
  * @secure
7682
7853
  * @response `200` `NotificationTemplate` Success
7683
7854
  */
7684
- getNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
7855
+ getNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any, {}>>;
7685
7856
  /**
7686
7857
  * No description
7687
7858
  *
@@ -7693,7 +7864,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7693
7864
  * @response `200` `NotificationTemplate` Success
7694
7865
  * @response `422` `UnprocessableEntity` Client Error
7695
7866
  */
7696
- replaceNotificationTemplate: (id: string, data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
7867
+ replaceNotificationTemplate: (id: string, data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any, {}>>;
7697
7868
  /**
7698
7869
  * No description
7699
7870
  *
@@ -7704,7 +7875,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7704
7875
  * @secure
7705
7876
  * @response `204` `void` No Content
7706
7877
  */
7707
- deleteNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7878
+ deleteNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
7708
7879
  /**
7709
7880
  * No description
7710
7881
  *
@@ -7715,7 +7886,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7715
7886
  * @secure
7716
7887
  * @response `200` `NotificationTemplate` Success
7717
7888
  */
7718
- restoreNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
7889
+ restoreNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any, {}>>;
7719
7890
  /**
7720
7891
  * No description
7721
7892
  *
@@ -7726,7 +7897,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7726
7897
  * @secure
7727
7898
  * @response `200` `(NotificationTemplateVersion)[]` Success
7728
7899
  */
7729
- getNotificationTemplateVersions: (notificationId: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion[], any>>;
7900
+ getNotificationTemplateVersions: (notificationId: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion[], any, {}>>;
7730
7901
  /**
7731
7902
  * No description
7732
7903
  *
@@ -7737,7 +7908,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7737
7908
  * @secure
7738
7909
  * @response `200` `NotificationTemplateVersion` Success
7739
7910
  */
7740
- createNotificationTemplateVersion: (notificationId: string, data: NotificationTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
7911
+ createNotificationTemplateVersion: (notificationId: string, data: NotificationTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any, {}>>;
7741
7912
  /**
7742
7913
  * No description
7743
7914
  *
@@ -7748,7 +7919,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7748
7919
  * @secure
7749
7920
  * @response `200` `NotificationTemplateVersion` Success
7750
7921
  */
7751
- getNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
7922
+ getNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any, {}>>;
7752
7923
  /**
7753
7924
  * No description
7754
7925
  *
@@ -7759,7 +7930,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7759
7930
  * @secure
7760
7931
  * @response `200` `NotificationTemplateVersion` Success
7761
7932
  */
7762
- replaceNotificationTemplateVersion: (notificationId: string, id: string, data: NotificationTemplateVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
7933
+ replaceNotificationTemplateVersion: (notificationId: string, id: string, data: NotificationTemplateVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any, {}>>;
7763
7934
  /**
7764
7935
  * No description
7765
7936
  *
@@ -7770,7 +7941,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7770
7941
  * @secure
7771
7942
  * @response `200` `NotificationTemplateVersion` Success
7772
7943
  */
7773
- deleteNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
7944
+ deleteNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any, {}>>;
7774
7945
  /**
7775
7946
  * No description
7776
7947
  *
@@ -7791,7 +7962,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7791
7962
  pageNumber?: number;
7792
7963
  sortBy?: string;
7793
7964
  sortDirection?: string;
7794
- }, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any>>;
7965
+ }, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any, {}>>;
7795
7966
  /**
7796
7967
  * No description
7797
7968
  *
@@ -7809,7 +7980,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7809
7980
  pageNumber?: number;
7810
7981
  sortBy?: string;
7811
7982
  sortDirection?: string;
7812
- }, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any>>;
7983
+ }, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any, {}>>;
7813
7984
  /**
7814
7985
  * No description
7815
7986
  *
@@ -7820,7 +7991,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7820
7991
  * @secure
7821
7992
  * @response `200` `BranchUser` Success
7822
7993
  */
7823
- getPartner: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any>>;
7994
+ getPartner: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any, {}>>;
7824
7995
  /**
7825
7996
  * No description
7826
7997
  *
@@ -7832,7 +8003,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7832
8003
  * @response `200` `SiteConfiguration` Success
7833
8004
  * @response `422` `UnprocessableEntity` Client Error
7834
8005
  */
7835
- createPartnerSiteConfiguration: (realtorId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
8006
+ createPartnerSiteConfiguration: (realtorId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
7836
8007
  /**
7837
8008
  * No description
7838
8009
  *
@@ -7843,7 +8014,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7843
8014
  * @secure
7844
8015
  * @response `200` `SiteConfigurationWithInherited` Success
7845
8016
  */
7846
- getPartnerSiteConfiguration: (realtorId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
8017
+ getPartnerSiteConfiguration: (realtorId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any, {}>>;
7847
8018
  /**
7848
8019
  * No description
7849
8020
  *
@@ -7857,7 +8028,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7857
8028
  */
7858
8029
  replacePartnerSiteConfiguration: (realtorId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
7859
8030
  applyToChildren?: boolean;
7860
- }, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
8031
+ }, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
7861
8032
  /**
7862
8033
  * No description
7863
8034
  *
@@ -7868,7 +8039,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7868
8039
  * @secure
7869
8040
  * @response `200` `SiteConfiguration` Success
7870
8041
  */
7871
- getSiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
8042
+ getSiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
7872
8043
  /**
7873
8044
  * No description
7874
8045
  *
@@ -7881,7 +8052,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7881
8052
  * @response `200` `SiteConfigurationByUrl` Success
7882
8053
  * @response `422` `UnprocessableEntity` Client Error
7883
8054
  */
7884
- searchSiteConfigurationByUrl: (data: GetSiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationByUrl, any>>;
8055
+ searchSiteConfigurationByUrl: (data: GetSiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationByUrl, any, {}>>;
7885
8056
  /**
7886
8057
  * No description
7887
8058
  *
@@ -7895,7 +8066,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7895
8066
  */
7896
8067
  getSiteConfigurationByUrl: (query?: {
7897
8068
  url?: string;
7898
- }, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationByUrl, any>>;
8069
+ }, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationByUrl, any, {}>>;
7899
8070
  /**
7900
8071
  * No description
7901
8072
  *
@@ -7908,7 +8079,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7908
8079
  * @response `200` `SiteConfiguration` Success
7909
8080
  * @response `422` `UnprocessableEntity` Client Error
7910
8081
  */
7911
- searchSiteConfigurationByLoanOfficerUser: (data: GetSiteConfigurationByLOUserIDRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
8082
+ searchSiteConfigurationByLoanOfficerUser: (data: GetSiteConfigurationByLOUserIDRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
7912
8083
  /**
7913
8084
  * No description
7914
8085
  *
@@ -7920,7 +8091,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7920
8091
  * @response `200` `SiteConfiguration` Success
7921
8092
  * @response `422` `UnprocessableEntity` Client Error
7922
8093
  */
7923
- getSiteConfigurationByLoanOfficerUser: (loUserId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
8094
+ getSiteConfigurationByLoanOfficerUser: (loUserId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
7924
8095
  /**
7925
8096
  * No description
7926
8097
  *
@@ -7939,7 +8110,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7939
8110
  pageNumber?: number;
7940
8111
  sortBy?: string;
7941
8112
  sortDirection?: string;
7942
- }, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationSummaryPaginated, any>>;
8113
+ }, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationSummaryPaginated, any, {}>>;
7943
8114
  /**
7944
8115
  * No description
7945
8116
  *
@@ -7950,7 +8121,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7950
8121
  * @secure
7951
8122
  * @response `200` `(AdminAccessGetForms)[]` Success
7952
8123
  */
7953
- getFormsBySiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms[], any>>;
8124
+ getFormsBySiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms[], any, {}>>;
7954
8125
  /**
7955
8126
  * No description
7956
8127
  *
@@ -7962,7 +8133,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7962
8133
  * @response `200` `File` Success
7963
8134
  * @response `404` `ProblemDetails` Not Found
7964
8135
  */
7965
- getSamlMetadata: (sSoIntegration: "ConsumerConnect" | "TheBigPOS" | "POSF", ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
8136
+ getSamlMetadata: (sSoIntegration: "ConsumerConnect" | "TheBigPOS" | "POSF", ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
7966
8137
  /**
7967
8138
  * No description
7968
8139
  *
@@ -7973,7 +8144,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7973
8144
  * @secure
7974
8145
  * @response `200` `File` Success
7975
8146
  */
7976
- createOrReplaceSamlMetadata: (sSoIntegration: "ConsumerConnect" | "TheBigPOS" | "POSF", ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
8147
+ createOrReplaceSamlMetadata: (sSoIntegration: "ConsumerConnect" | "TheBigPOS" | "POSF", ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
7977
8148
  /**
7978
8149
  * No description
7979
8150
  *
@@ -7984,7 +8155,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7984
8155
  * @secure
7985
8156
  * @response `200` `(SiteConfigurationForm)[]` Success
7986
8157
  */
7987
- getWorkflowSiteConfigurations: (workflowId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm[], any>>;
8158
+ getWorkflowSiteConfigurations: (workflowId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm[], any, {}>>;
7988
8159
  /**
7989
8160
  * No description
7990
8161
  *
@@ -7996,7 +8167,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7996
8167
  * @response `200` `SiteConfigurationForm` Success
7997
8168
  * @response `404` `ProblemDetails` Not Found
7998
8169
  */
7999
- getWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any>>;
8170
+ getWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any, {}>>;
8000
8171
  /**
8001
8172
  * No description
8002
8173
  *
@@ -8009,7 +8180,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8009
8180
  * @response `409` `ProblemDetails` Conflict
8010
8181
  * @response `422` `UnprocessableEntity` Client Error
8011
8182
  */
8012
- createWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any>>;
8183
+ createWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any, {}>>;
8013
8184
  /**
8014
8185
  * No description
8015
8186
  *
@@ -8020,7 +8191,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8020
8191
  * @secure
8021
8192
  * @response `204` `void` No Content
8022
8193
  */
8023
- deleteWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8194
+ deleteWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8024
8195
  /**
8025
8196
  * No description
8026
8197
  *
@@ -8031,7 +8202,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8031
8202
  * @secure
8032
8203
  * @response `200` `GetForm` Success
8033
8204
  */
8034
- getFormBySiteConfigurationSlug: (data: GetSiteFormRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any>>;
8205
+ getFormBySiteConfigurationSlug: (data: GetSiteFormRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any, {}>>;
8035
8206
  /**
8036
8207
  * No description
8037
8208
  *
@@ -8045,7 +8216,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8045
8216
  getSurveysByUsers: (query?: {
8046
8217
  /** @format int32 */
8047
8218
  limit?: number;
8048
- }, params?: RequestParams) => Promise<AxiosResponse<SocialSurveyRecord[], any>>;
8219
+ }, params?: RequestParams) => Promise<AxiosResponse<SocialSurveyRecord[], any, {}>>;
8049
8220
  /**
8050
8221
  * No description
8051
8222
  *
@@ -8057,7 +8228,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8057
8228
  * @response `200` `(SocialSurveyRecord)[]` Success
8058
8229
  * @response `422` `UnprocessableEntity` Client Error
8059
8230
  */
8060
- getSurveysByUser: (data: SurveyEmailRequest, params?: RequestParams) => Promise<AxiosResponse<SocialSurveyRecord[], any>>;
8231
+ getSurveysByUser: (data: SurveyEmailRequest, params?: RequestParams) => Promise<AxiosResponse<SocialSurveyRecord[], any, {}>>;
8061
8232
  /**
8062
8233
  * No description
8063
8234
  *
@@ -8076,7 +8247,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8076
8247
  pageNumber?: number;
8077
8248
  sortBy?: string;
8078
8249
  sortDirection?: string;
8079
- }, params?: RequestParams) => Promise<AxiosResponse<Task, any>>;
8250
+ }, params?: RequestParams) => Promise<AxiosResponse<Task, any, {}>>;
8080
8251
  /**
8081
8252
  * No description
8082
8253
  *
@@ -8087,7 +8258,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8087
8258
  * @secure
8088
8259
  * @response `201` `Task` Created
8089
8260
  */
8090
- createTask: (data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<Task, any>>;
8261
+ createTask: (data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<Task, any, {}>>;
8091
8262
  /**
8092
8263
  * No description
8093
8264
  *
@@ -8099,7 +8270,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8099
8270
  * @response `200` `Task` Success
8100
8271
  * @response `404` `ProblemDetails` Not Found
8101
8272
  */
8102
- getTask: (id: string, params?: RequestParams) => Promise<AxiosResponse<Task, any>>;
8273
+ getTask: (id: string, params?: RequestParams) => Promise<AxiosResponse<Task, any, {}>>;
8103
8274
  /**
8104
8275
  * No description
8105
8276
  *
@@ -8111,7 +8282,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8111
8282
  * @response `200` `void` Success
8112
8283
  * @response `404` `ProblemDetails` Not Found
8113
8284
  */
8114
- replaceTask: (id: string, data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8285
+ replaceTask: (id: string, data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8115
8286
  /**
8116
8287
  * No description
8117
8288
  *
@@ -8123,7 +8294,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8123
8294
  * @response `204` `void` No Content
8124
8295
  * @response `404` `ProblemDetails` Not Found
8125
8296
  */
8126
- deleteTask: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8297
+ deleteTask: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8127
8298
  /**
8128
8299
  * No description
8129
8300
  *
@@ -8141,7 +8312,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8141
8312
  pageNumber?: number;
8142
8313
  sortBy?: string;
8143
8314
  sortDirection?: string;
8144
- }, params?: RequestParams) => Promise<AxiosResponse<TaskPaginated, any>>;
8315
+ }, params?: RequestParams) => Promise<AxiosResponse<TaskPaginated, any, {}>>;
8145
8316
  /**
8146
8317
  * No description
8147
8318
  *
@@ -8151,24 +8322,19 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8151
8322
  * @secure
8152
8323
  * @response `200` `void` Success
8153
8324
  */
8154
- integrationsLosLoansCreate: (data: LosLoanCreationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8325
+ integrationsLosLoansCreate: (data: LosLoanCreationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8155
8326
  /**
8156
8327
  * No description
8157
8328
  *
8158
8329
  * @tags UsageReports
8159
- * @name GenerateUsageReports
8160
- * @summary Generate usage reports for all active production accounts
8161
- * @request POST:/api/usage-reports
8330
+ * @name GetUsageReportById
8331
+ * @summary Get usage report by ID
8332
+ * @request GET:/api/usage-reports/{id}
8162
8333
  * @secure
8163
- * @response `200` `UsageReportGenerationResult` Success
8164
- * @response `400` `ProblemDetails` Bad Request
8334
+ * @response `200` `UsageReport` Success
8335
+ * @response `404` `ProblemDetails` Not Found
8165
8336
  */
8166
- generateUsageReports: (query?: {
8167
- /** @format int32 */
8168
- month?: number;
8169
- /** @format int32 */
8170
- year?: number;
8171
- }, params?: RequestParams) => Promise<AxiosResponse<UsageReportGenerationResult, any>>;
8337
+ getUsageReportById: (id: string, params?: RequestParams) => Promise<AxiosResponse<UsageReport, any, {}>>;
8172
8338
  /**
8173
8339
  * No description
8174
8340
  *
@@ -8185,36 +8351,64 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8185
8351
  month?: number;
8186
8352
  /** @format int32 */
8187
8353
  year?: number;
8188
- }, params?: RequestParams) => Promise<AxiosResponse<UsageReport[], any>>;
8354
+ }, params?: RequestParams) => Promise<AxiosResponse<UsageReport[], any, {}>>;
8189
8355
  /**
8190
8356
  * No description
8191
8357
  *
8192
8358
  * @tags UsageReports
8193
- * @name GenerateAndSendUsageReport
8194
- * @summary Generate and send monthly usage report email
8195
- * @request POST:/api/usage-reports/generate-and-send
8359
+ * @name StartUsageReportExecution
8360
+ * @summary Start a new usage report execution (async)
8361
+ * @request POST:/api/usage-reports
8196
8362
  * @secure
8197
- * @response `204` `void` No Content
8198
- * @response `500` `void` Server Error
8363
+ * @response `202` `any` Accepted
8364
+ * @response `400` `ProblemDetails` Bad Request
8199
8365
  */
8200
- generateAndSendUsageReport: (query?: {
8366
+ startUsageReportExecution: (query?: {
8201
8367
  /** @format int32 */
8202
8368
  month?: number;
8203
8369
  /** @format int32 */
8204
8370
  year?: number;
8205
- }, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8371
+ }, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
8206
8372
  /**
8207
8373
  * No description
8208
8374
  *
8209
8375
  * @tags UsageReports
8210
- * @name GetUsageReportById
8211
- * @summary Get usage report by ID
8212
- * @request GET:/api/usage-reports/{id}
8376
+ * @name GetUsageReportDashboard
8377
+ * @summary Get usage report execution dashboard with active execution, recent history, and statistics
8378
+ * @request GET:/api/usage-reports/dashboard
8213
8379
  * @secure
8214
- * @response `200` `UsageReport` Success
8380
+ * @response `200` `UsageReportDashboard` Success
8381
+ */
8382
+ getUsageReportDashboard: (params?: RequestParams) => Promise<AxiosResponse<UsageReportDashboard, any, {}>>;
8383
+ /**
8384
+ * No description
8385
+ *
8386
+ * @tags UsageReports
8387
+ * @name GetUsageReportExecution
8388
+ * @summary Get usage report execution status by correlation ID
8389
+ * @request GET:/api/usage-reports/executions/{correlationId}
8390
+ * @secure
8391
+ * @response `200` `UsageReportExecution` Success
8215
8392
  * @response `404` `ProblemDetails` Not Found
8216
8393
  */
8217
- getUsageReportById: (id: string, params?: RequestParams) => Promise<AxiosResponse<UsageReport, any>>;
8394
+ getUsageReportExecution: (correlationId: string, params?: RequestParams) => Promise<AxiosResponse<UsageReportExecution, any, {}>>;
8395
+ /**
8396
+ * No description
8397
+ *
8398
+ * @tags UsageReports
8399
+ * @name GetUsageReportExecutionsByPeriod
8400
+ * @summary Get usage report executions by month and year
8401
+ * @request GET:/api/usage-reports/executions
8402
+ * @secure
8403
+ * @response `200` `(UsageReportExecution)[]` Success
8404
+ * @response `400` `ProblemDetails` Bad Request
8405
+ */
8406
+ getUsageReportExecutionsByPeriod: (query?: {
8407
+ /** @format int32 */
8408
+ month?: number;
8409
+ /** @format int32 */
8410
+ year?: number;
8411
+ }, params?: RequestParams) => Promise<AxiosResponse<UsageReportExecution[], any, {}>>;
8218
8412
  /**
8219
8413
  * No description
8220
8414
  *
@@ -8226,7 +8420,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8226
8420
  * @response `201` `UserDevice` Created
8227
8421
  * @response `400` `ProblemDetails` Bad Request
8228
8422
  */
8229
- createUserDevice: (data: CreateUserDeviceRequest, params?: RequestParams) => Promise<AxiosResponse<UserDevice, any>>;
8423
+ createUserDevice: (data: CreateUserDeviceRequest, params?: RequestParams) => Promise<AxiosResponse<UserDevice, any, {}>>;
8230
8424
  /**
8231
8425
  * No description
8232
8426
  *
@@ -8238,7 +8432,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8238
8432
  * @response `204` `void` No Content
8239
8433
  * @response `404` `ProblemDetails` Not Found
8240
8434
  */
8241
- deleteUserDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8435
+ deleteUserDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8242
8436
  /**
8243
8437
  * No description
8244
8438
  *
@@ -8256,7 +8450,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8256
8450
  pageNumber?: number;
8257
8451
  sortBy?: string;
8258
8452
  sortDirection?: string;
8259
- }, params?: RequestParams) => Promise<AxiosResponse<UserDraftPaginated, any>>;
8453
+ }, params?: RequestParams) => Promise<AxiosResponse<UserDraftPaginated, any, {}>>;
8260
8454
  /**
8261
8455
  * No description
8262
8456
  *
@@ -8267,7 +8461,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8267
8461
  * @secure
8268
8462
  * @response `200` `UserDraft` Success
8269
8463
  */
8270
- getDraftUser: (draftId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<UserDraft, any>>;
8464
+ getDraftUser: (draftId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<UserDraft, any, {}>>;
8271
8465
  /**
8272
8466
  * No description
8273
8467
  *
@@ -8278,7 +8472,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8278
8472
  * @secure
8279
8473
  * @response `200` `UserDraft` Success
8280
8474
  */
8281
- addDraftUsers: (draftId: string, userId: string, data: CreateUserDraft, params?: RequestParams) => Promise<AxiosResponse<UserDraft, any>>;
8475
+ addDraftUsers: (draftId: string, userId: string, data: CreateUserDraft, params?: RequestParams) => Promise<AxiosResponse<UserDraft, any, {}>>;
8282
8476
  /**
8283
8477
  * No description
8284
8478
  *
@@ -8289,7 +8483,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8289
8483
  * @secure
8290
8484
  * @response `204` `void` No Content
8291
8485
  */
8292
- deleteDraftUser: (draftId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8486
+ deleteDraftUser: (draftId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8293
8487
  /**
8294
8488
  * No description
8295
8489
  *
@@ -8300,7 +8494,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8300
8494
  * @secure
8301
8495
  * @response `200` `(UserGroupAccessScope)[]` Success
8302
8496
  */
8303
- getUserGroupAccessScopes: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope[], any>>;
8497
+ getUserGroupAccessScopes: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope[], any, {}>>;
8304
8498
  /**
8305
8499
  * No description
8306
8500
  *
@@ -8311,7 +8505,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8311
8505
  * @secure
8312
8506
  * @response `200` `UserGroupAccessScope` Success
8313
8507
  */
8314
- createUserGroupAccessScope: (groupId: string, data: CreateAccessScopeRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope, any>>;
8508
+ createUserGroupAccessScope: (groupId: string, data: CreateAccessScopeRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope, any, {}>>;
8315
8509
  /**
8316
8510
  * No description
8317
8511
  *
@@ -8322,7 +8516,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8322
8516
  * @secure
8323
8517
  * @response `204` `void` No Content
8324
8518
  */
8325
- deleteUserGroupAccessScope: (groupId: string, scopeId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8519
+ deleteUserGroupAccessScope: (groupId: string, scopeId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8326
8520
  /**
8327
8521
  * No description
8328
8522
  *
@@ -8333,7 +8527,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8333
8527
  * @secure
8334
8528
  * @response `200` `(UserGroupMember)[]` Success
8335
8529
  */
8336
- getUserGroupMembers: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupMember[], any>>;
8530
+ getUserGroupMembers: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupMember[], any, {}>>;
8337
8531
  /**
8338
8532
  * No description
8339
8533
  *
@@ -8347,7 +8541,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8347
8541
  createUserGroupMember: (groupId: string, data: CreateGroupMemberRequest, query?: {
8348
8542
  /** @format uuid */
8349
8543
  userId?: string;
8350
- }, params?: RequestParams) => Promise<AxiosResponse<UserGroupMember, any>>;
8544
+ }, params?: RequestParams) => Promise<AxiosResponse<UserGroupMember, any, {}>>;
8351
8545
  /**
8352
8546
  * No description
8353
8547
  *
@@ -8358,7 +8552,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8358
8552
  * @secure
8359
8553
  * @response `204` `void` No Content
8360
8554
  */
8361
- deleteUserGroupMember: (groupId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8555
+ deleteUserGroupMember: (groupId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8362
8556
  /**
8363
8557
  * No description
8364
8558
  *
@@ -8377,7 +8571,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8377
8571
  pageNumber?: number;
8378
8572
  sortBy?: string;
8379
8573
  sortDirection?: string;
8380
- }, params?: RequestParams) => Promise<AxiosResponse<UserGroupPaginated, any>>;
8574
+ }, params?: RequestParams) => Promise<AxiosResponse<UserGroupPaginated, any, {}>>;
8381
8575
  /**
8382
8576
  * No description
8383
8577
  *
@@ -8388,7 +8582,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8388
8582
  * @secure
8389
8583
  * @response `200` `UserGroup` Success
8390
8584
  */
8391
- getUserGroup: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any>>;
8585
+ getUserGroup: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any, {}>>;
8392
8586
  /**
8393
8587
  * No description
8394
8588
  *
@@ -8399,7 +8593,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8399
8593
  * @secure
8400
8594
  * @response `200` `UserGroup` Success
8401
8595
  */
8402
- updateUserGroup: (groupId: string, data: UpdateUserGroupRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any>>;
8596
+ updateUserGroup: (groupId: string, data: UpdateUserGroupRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any, {}>>;
8403
8597
  /**
8404
8598
  * No description
8405
8599
  *
@@ -8410,7 +8604,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8410
8604
  * @secure
8411
8605
  * @response `204` `void` No Content
8412
8606
  */
8413
- deleteUserGroup: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8607
+ deleteUserGroup: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8414
8608
  /**
8415
8609
  * No description
8416
8610
  *
@@ -8421,7 +8615,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8421
8615
  * @secure
8422
8616
  * @response `201` `UserGroup` Created
8423
8617
  */
8424
- createUserGroup: (data: CreateUserGroupRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any>>;
8618
+ createUserGroup: (data: CreateUserGroupRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any, {}>>;
8425
8619
  /**
8426
8620
  * No description
8427
8621
  *
@@ -8434,7 +8628,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8434
8628
  * @response `404` `Error` Not Found
8435
8629
  * @response `422` `UnprocessableEntity` Client Error
8436
8630
  */
8437
- requestImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8631
+ requestImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8438
8632
  /**
8439
8633
  * No description
8440
8634
  *
@@ -8447,7 +8641,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8447
8641
  * @response `404` `Error` Not Found
8448
8642
  * @response `422` `UnprocessableEntity` Client Error
8449
8643
  */
8450
- allowImpersonation: (data: AllowImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8644
+ allowImpersonation: (data: AllowImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8451
8645
  /**
8452
8646
  * No description
8453
8647
  *
@@ -8460,7 +8654,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8460
8654
  * @response `404` `Error` Not Found
8461
8655
  * @response `422` `UnprocessableEntity` Client Error
8462
8656
  */
8463
- allowImpersonationWithGuid: (allowToken: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8657
+ allowImpersonationWithGuid: (allowToken: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8464
8658
  /**
8465
8659
  * No description
8466
8660
  *
@@ -8472,7 +8666,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8472
8666
  * @response `204` `void` No Content
8473
8667
  * @response `422` `UnprocessableEntity` Client Error
8474
8668
  */
8475
- beginImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8669
+ beginImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8476
8670
  /**
8477
8671
  * No description
8478
8672
  *
@@ -8484,7 +8678,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8484
8678
  * @response `204` `void` No Content
8485
8679
  * @response `422` `UnprocessableEntity` Client Error
8486
8680
  */
8487
- stopImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8681
+ stopImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8488
8682
  /**
8489
8683
  * No description
8490
8684
  *
@@ -8497,7 +8691,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8497
8691
  * @response `404` `Error` Not Found
8498
8692
  * @response `422` `UnprocessableEntity` Client Error
8499
8693
  */
8500
- forceImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8694
+ forceImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8501
8695
  /**
8502
8696
  * No description
8503
8697
  *
@@ -8509,7 +8703,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8509
8703
  * @response `204` `void` No Content
8510
8704
  * @response `422` `UnprocessableEntity` Client Error
8511
8705
  */
8512
- extendImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8706
+ extendImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8513
8707
  /**
8514
8708
  * No description
8515
8709
  *
@@ -8521,7 +8715,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8521
8715
  * @response `204` `void` No Content
8522
8716
  * @response `422` `UnprocessableEntity` Client Error
8523
8717
  */
8524
- inviteUser: (data: CreateInviteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8718
+ inviteUser: (data: CreateInviteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8525
8719
  /**
8526
8720
  * No description
8527
8721
  *
@@ -8534,7 +8728,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8534
8728
  * @response `401` `UnprocessableEntity` Unauthorized
8535
8729
  * @response `404` `UnprocessableEntity` Not Found
8536
8730
  */
8537
- resendInviteNotification: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8731
+ resendInviteNotification: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8538
8732
  /**
8539
8733
  * No description
8540
8734
  *
@@ -8546,7 +8740,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8546
8740
  * @response `200` `Invite` Success
8547
8741
  * @response `422` `UnprocessableEntity` Client Error
8548
8742
  */
8549
- verifyUserInvite: (token: string, params?: RequestParams) => Promise<AxiosResponse<Invite, any>>;
8743
+ verifyUserInvite: (token: string, params?: RequestParams) => Promise<AxiosResponse<Invite, any, {}>>;
8550
8744
  /**
8551
8745
  * No description
8552
8746
  *
@@ -8557,7 +8751,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8557
8751
  * @secure
8558
8752
  * @response `200` `(UserRelation)[]` Success
8559
8753
  */
8560
- getUserRelations: (userId: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation[], any>>;
8754
+ getUserRelations: (userId: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation[], any, {}>>;
8561
8755
  /**
8562
8756
  * No description
8563
8757
  *
@@ -8568,7 +8762,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8568
8762
  * @secure
8569
8763
  * @response `204` `void` No Content
8570
8764
  */
8571
- createUserRelation: (userId: string, data: CreateUserRelationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8765
+ createUserRelation: (userId: string, data: CreateUserRelationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8572
8766
  /**
8573
8767
  * No description
8574
8768
  *
@@ -8579,7 +8773,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8579
8773
  * @secure
8580
8774
  * @response `200` `UserRelation` Success
8581
8775
  */
8582
- getUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation, any>>;
8776
+ getUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation, any, {}>>;
8583
8777
  /**
8584
8778
  * No description
8585
8779
  *
@@ -8590,7 +8784,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8590
8784
  * @secure
8591
8785
  * @response `204` `void` No Content
8592
8786
  */
8593
- deleteUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8787
+ deleteUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8594
8788
  /**
8595
8789
  * No description
8596
8790
  *
@@ -8608,7 +8802,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8608
8802
  pageNumber?: number;
8609
8803
  sortBy?: string;
8610
8804
  sortDirection?: string;
8611
- }, params?: RequestParams) => Promise<AxiosResponse<User[], any>>;
8805
+ }, params?: RequestParams) => Promise<AxiosResponse<User[], any, {}>>;
8612
8806
  /**
8613
8807
  * No description
8614
8808
  *
@@ -8620,7 +8814,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8620
8814
  * @response `200` `DetailedUser` Success
8621
8815
  * @response `422` `UnprocessableEntity` Client Error
8622
8816
  */
8623
- createUser: (data: CreateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
8817
+ createUser: (data: CreateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any, {}>>;
8624
8818
  /**
8625
8819
  * No description
8626
8820
  *
@@ -8638,7 +8832,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8638
8832
  pageNumber?: number;
8639
8833
  sortBy?: string;
8640
8834
  sortDirection?: string;
8641
- }, params?: RequestParams) => Promise<AxiosResponse<UserPaginated, any>>;
8835
+ }, params?: RequestParams) => Promise<AxiosResponse<UserPaginated, any, {}>>;
8642
8836
  /**
8643
8837
  * No description
8644
8838
  *
@@ -8649,7 +8843,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8649
8843
  * @secure
8650
8844
  * @response `200` `AdminAccessUser` Success
8651
8845
  */
8652
- getUserByEmail: (data: GetUserByEmailRequest, params?: RequestParams) => Promise<AxiosResponse<AdminAccessUser, any>>;
8846
+ getUserByEmail: (data: GetUserByEmailRequest, params?: RequestParams) => Promise<AxiosResponse<AdminAccessUser, any, {}>>;
8653
8847
  /**
8654
8848
  * No description
8655
8849
  *
@@ -8661,7 +8855,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8661
8855
  * @response `200` `User` Success
8662
8856
  * @response `422` `UnprocessableEntity` Client Error
8663
8857
  */
8664
- signUp: (data: RegisterUserRequest, params?: RequestParams) => Promise<AxiosResponse<User, any>>;
8858
+ signUp: (data: RegisterUserRequest, params?: RequestParams) => Promise<AxiosResponse<User, any, {}>>;
8665
8859
  /**
8666
8860
  * No description
8667
8861
  *
@@ -8673,7 +8867,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8673
8867
  * @response `200` `DetailedUser` Success
8674
8868
  * @response `422` `UnprocessableEntity` Client Error
8675
8869
  */
8676
- replaceUser: (id: string, data: UpdateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
8870
+ replaceUser: (id: string, data: UpdateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any, {}>>;
8677
8871
  /**
8678
8872
  * No description
8679
8873
  *
@@ -8687,7 +8881,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8687
8881
  deleteUser: (id: string, query?: {
8688
8882
  /** @default false */
8689
8883
  permanent?: boolean;
8690
- }, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8884
+ }, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8691
8885
  /**
8692
8886
  * No description
8693
8887
  *
@@ -8698,7 +8892,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8698
8892
  * @secure
8699
8893
  * @response `204` `void` No Content
8700
8894
  */
8701
- restoreUser: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8895
+ restoreUser: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8702
8896
  /**
8703
8897
  * No description
8704
8898
  *
@@ -8710,7 +8904,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8710
8904
  * @response `204` `void` No Content
8711
8905
  * @response `422` `UnprocessableEntity` Client Error
8712
8906
  */
8713
- changePassword: (data: ChangePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8907
+ changePassword: (data: ChangePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8714
8908
  /**
8715
8909
  * No description
8716
8910
  *
@@ -8722,7 +8916,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8722
8916
  * @response `204` `void` No Content
8723
8917
  * @response `422` `UnprocessableEntity` Client Error
8724
8918
  */
8725
- verifyPassword: (data: VerifyPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8919
+ verifyPassword: (data: VerifyPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8726
8920
  /**
8727
8921
  * No description
8728
8922
  *
@@ -8734,7 +8928,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8734
8928
  * @response `204` `void` No Content
8735
8929
  * @response `422` `UnprocessableEntity` Client Error
8736
8930
  */
8737
- overridePassword: (id: string, data: OverridePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8931
+ overridePassword: (id: string, data: OverridePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8738
8932
  /**
8739
8933
  * No description
8740
8934
  *
@@ -8746,7 +8940,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8746
8940
  * @response `204` `void` No Content
8747
8941
  * @response `422` `UnprocessableEntity` Client Error
8748
8942
  */
8749
- forgotPassword: (data: SendForgotPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8943
+ forgotPassword: (data: SendForgotPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8750
8944
  /**
8751
8945
  * No description
8752
8946
  *
@@ -8758,7 +8952,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8758
8952
  * @response `204` `void` No Content
8759
8953
  * @response `422` `UnprocessableEntity` Client Error
8760
8954
  */
8761
- sendMobilePhoneVerificationCode: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8955
+ sendMobilePhoneVerificationCode: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8762
8956
  /**
8763
8957
  * No description
8764
8958
  *
@@ -8770,7 +8964,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8770
8964
  * @response `204` `void` No Content
8771
8965
  * @response `422` `UnprocessableEntity` Client Error
8772
8966
  */
8773
- verifyUserMobilePhone: (data: UserMobilePhoneVerificationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8967
+ verifyUserMobilePhone: (data: UserMobilePhoneVerificationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8774
8968
  /**
8775
8969
  * No description
8776
8970
  *
@@ -8782,7 +8976,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8782
8976
  * @response `200` `ImpersonatedDetailedUser` Success
8783
8977
  * @response `401` `ProblemDetails` Unauthorized
8784
8978
  */
8785
- getMe: (params?: RequestParams) => Promise<AxiosResponse<ImpersonatedDetailedUser, any>>;
8979
+ getMe: (params?: RequestParams) => Promise<AxiosResponse<ImpersonatedDetailedUser, any, {}>>;
8786
8980
  /**
8787
8981
  * No description
8788
8982
  *
@@ -8793,7 +8987,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8793
8987
  * @secure
8794
8988
  * @response `200` `DetailedUser` Success
8795
8989
  */
8796
- replaceMe: (data: UpdateMeRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
8990
+ replaceMe: (data: UpdateMeRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any, {}>>;
8797
8991
  /**
8798
8992
  * @description Update the phone number If changed will send a verification code to the new number
8799
8993
  *
@@ -8804,7 +8998,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8804
8998
  * @secure
8805
8999
  * @response `204` `DetailedUser` No Content
8806
9000
  */
8807
- updateMyPhone: (data: UpdateMobilePhoneRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
9001
+ updateMyPhone: (data: UpdateMobilePhoneRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any, {}>>;
8808
9002
  /**
8809
9003
  * No description
8810
9004
  *
@@ -8815,7 +9009,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8815
9009
  * @secure
8816
9010
  * @response `200` `(UserRelationship)[]` Success
8817
9011
  */
8818
- getMyRelationships: (params?: RequestParams) => Promise<AxiosResponse<UserRelationship[], any>>;
9012
+ getMyRelationships: (params?: RequestParams) => Promise<AxiosResponse<UserRelationship[], any, {}>>;
8819
9013
  /**
8820
9014
  * No description
8821
9015
  *
@@ -8826,7 +9020,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8826
9020
  * @secure
8827
9021
  * @response `200` `(UserRelationshipProspect)[]` Success
8828
9022
  */
8829
- getMyRelationshipProspects: (params?: RequestParams) => Promise<AxiosResponse<UserRelationshipProspect[], any>>;
9023
+ getMyRelationshipProspects: (params?: RequestParams) => Promise<AxiosResponse<UserRelationshipProspect[], any, {}>>;
8830
9024
  /**
8831
9025
  * No description
8832
9026
  *
@@ -8837,7 +9031,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8837
9031
  * @secure
8838
9032
  * @response `204` `void` No Content
8839
9033
  */
8840
- deleteRelationshipProspect: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9034
+ deleteRelationshipProspect: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8841
9035
  /**
8842
9036
  * No description
8843
9037
  *
@@ -8848,7 +9042,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8848
9042
  * @secure
8849
9043
  * @response `204` `void` No Content
8850
9044
  */
8851
- deleteMe: (data: UserAccountDeletionRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9045
+ deleteMe: (data: UserAccountDeletionRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8852
9046
  /**
8853
9047
  * No description
8854
9048
  *
@@ -8859,7 +9053,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8859
9053
  * @secure
8860
9054
  * @response `200` `GetForm` Success
8861
9055
  */
8862
- getWorkflow: (data: GetWorkflowRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any>>;
9056
+ getWorkflow: (data: GetWorkflowRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any, {}>>;
8863
9057
  };
8864
9058
  sso: {
8865
9059
  /**
@@ -8871,6 +9065,6 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8871
9065
  * @secure
8872
9066
  * @response `200` `void` Success
8873
9067
  */
8874
- logoutList: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9068
+ logoutList: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8875
9069
  };
8876
9070
  }