@matech/thebigpos-sdk 2.34.1 → 2.35.0

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: AccountBillingRequestBillingTypeEnum;
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;
@@ -623,7 +635,7 @@ export interface CorporateSearchCriteria {
623
635
  isActive?: boolean | null;
624
636
  }
625
637
  export interface CreateAccessScopeRequest {
626
- scopeType: "User" | "Branch";
638
+ scopeType: CreateAccessScopeRequestScopeTypeEnum;
627
639
  /** @format uuid */
628
640
  userId?: string | null;
629
641
  /** @format uuid */
@@ -646,8 +658,9 @@ export interface CreateAccountRequest {
646
658
  */
647
659
  nlmsid: number;
648
660
  settings: AccountSettingsRequest;
649
- environment: "Development" | "Staging" | "UAT" | "Production";
661
+ environment: CreateAccountRequestEnvironmentEnum;
650
662
  losIntegration: LOSIntegration;
663
+ billingSettings: AccountBillingRequest;
651
664
  }
652
665
  export interface CreateBranchRequest {
653
666
  /**
@@ -675,7 +688,7 @@ export interface CreateDocumentTemplateRequest {
675
688
  export interface CreateGroupMemberRequest {
676
689
  /** @format uuid */
677
690
  userId: string;
678
- loanRole: "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
691
+ loanRole: CreateGroupMemberRequestLoanRoleEnum;
679
692
  }
680
693
  export interface CreateInviteRequest {
681
694
  /** @minLength 1 */
@@ -686,7 +699,7 @@ export interface CreateInviteRequest {
686
699
  emailAddress: string;
687
700
  phoneNumber?: string | null;
688
701
  /** @deprecated */
689
- relationship: "NotApplicable" | "Spouse" | "NonSpouse";
702
+ relationship: CreateInviteRequestRelationshipEnum;
690
703
  loanID: string;
691
704
  route?: string | null;
692
705
  /** @format uuid */
@@ -708,7 +721,7 @@ export interface CreateLoanImportRequest {
708
721
  * @minLength 1
709
722
  */
710
723
  startDate: string;
711
- importMode: "All" | "NewOnly" | "UpdateOnly";
724
+ importMode: CreateLoanImportRequestImportModeEnum;
712
725
  }
713
726
  export interface CreateSession {
714
727
  sessionId: string;
@@ -726,7 +739,7 @@ export interface CreateUserDeviceRequest {
726
739
  token: string;
727
740
  }
728
741
  export interface CreateUserDraft {
729
- loanRole: "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
742
+ loanRole: CreateUserDraftLoanRoleEnum;
730
743
  }
731
744
  export interface CreateUserGroupRequest {
732
745
  /**
@@ -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;
@@ -1009,7 +1023,7 @@ export interface Draft {
1009
1023
  siteConfiguration: SiteConfigurationReduced;
1010
1024
  /** @format uuid */
1011
1025
  loanID?: string | null;
1012
- type: "NewLoan" | "EditLoan";
1026
+ type: DraftTypeEnum;
1013
1027
  isCoBorrower: boolean;
1014
1028
  }
1015
1029
  export interface DraftContent {
@@ -1027,7 +1041,7 @@ export interface DraftContent {
1027
1041
  siteConfiguration: SiteConfigurationReduced;
1028
1042
  /** @format uuid */
1029
1043
  loanID?: string | null;
1030
- type: "NewLoan" | "EditLoan";
1044
+ type: DraftContentTypeEnum;
1031
1045
  isCoBorrower: boolean;
1032
1046
  applicationPayload: any;
1033
1047
  }
@@ -1324,7 +1338,7 @@ export interface FusionFieldDisplay {
1324
1338
  fieldValue: string;
1325
1339
  }
1326
1340
  export interface FusionReportFilter {
1327
- filterType: "DateGreaterThanOrEqualTo" | "DateGreaterThan" | "DateLessThan" | "DateLessThanOrEqualTo" | "DateEquals" | "DateDoesntEqual" | "DateNonEmpty" | "DateEmpty" | "StringContains" | "StringEquals" | "StringNotEmpty" | "StringNotEquals" | "StringNotContains";
1341
+ filterType: FusionReportFilterFilterTypeEnum;
1328
1342
  targetField: string;
1329
1343
  targetValue: string;
1330
1344
  }
@@ -1438,7 +1452,7 @@ export interface GuidPatchOperation {
1438
1452
  from?: string | null;
1439
1453
  }
1440
1454
  export interface IPAddress {
1441
- 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";
1455
+ addressFamily: IpAddressAddressFamilyEnum;
1442
1456
  /** @format int64 */
1443
1457
  scopeId: number;
1444
1458
  isIPv6Multicast: boolean;
@@ -1474,6 +1488,7 @@ export interface ImpersonatedDetailedUser {
1474
1488
  /** @format int32 */
1475
1489
  loginsWithoutMFACount: number;
1476
1490
  canImpersonate: boolean;
1491
+ preferredLoanOfficer?: PreferredLoanOfficer | null;
1477
1492
  loanIDs: string[];
1478
1493
  drafts: Draft[];
1479
1494
  notificationSettings?: UserNotificationSettings | null;
@@ -2593,7 +2608,7 @@ export interface LoanContact {
2593
2608
  email?: string | null;
2594
2609
  phone?: string | null;
2595
2610
  companyName?: string | null;
2596
- role: "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
2611
+ role: LoanContactRoleEnum;
2597
2612
  }
2598
2613
  export interface LoanContactList {
2599
2614
  email: string;
@@ -2714,13 +2729,13 @@ export interface LoanImport {
2714
2729
  /** @format int32 */
2715
2730
  importedCount: number;
2716
2731
  statusMessage?: string | null;
2717
- status: "WaitingProcess" | "InProgress" | "Completed" | "Failed" | "Cancelled";
2718
- importMode: "All" | "NewOnly" | "UpdateOnly";
2732
+ status: LoanImportStatusEnum;
2733
+ importMode: LoanImportImportModeEnum;
2719
2734
  /** @format date-time */
2720
2735
  createdAt?: string | null;
2721
2736
  }
2722
2737
  export interface LoanImportLog {
2723
- level: "None" | "Info" | "Warning" | "Error";
2738
+ level: LoanImportLogLevelEnum;
2724
2739
  message: string;
2725
2740
  /** @format date-time */
2726
2741
  createdAt: string;
@@ -2775,8 +2790,8 @@ export interface LoanListPaginated {
2775
2790
  export interface LoanLog {
2776
2791
  /** @format uuid */
2777
2792
  id: string;
2778
- level: "None" | "Info" | "Warning" | "Error";
2779
- type: "Loan" | "Queue" | "POSFlagChanged" | "Verification" | "DocumentUploaded" | "LoanCreated" | "WorkflowSubmitted" | "UserInvitationSent" | "CoBorrowerAdded" | "TaskCompleted" | "LoanStatusChanged" | "EConsent";
2793
+ level: LoanLogLevelEnum;
2794
+ type: LoanLogTypeEnum;
2780
2795
  message: string;
2781
2796
  /** @format date-time */
2782
2797
  createdAt: string;
@@ -3039,7 +3054,7 @@ export interface LoanUser {
3039
3054
  email: string;
3040
3055
  phone?: string | null;
3041
3056
  role: string;
3042
- loanRole: "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
3057
+ loanRole: LoanUserLoanRoleEnum;
3043
3058
  isUser: boolean;
3044
3059
  /** @format date-time */
3045
3060
  createdAt: string;
@@ -3336,6 +3351,14 @@ export interface PostLoanComparisonPdfRequest {
3336
3351
  */
3337
3352
  siteConfigurationID: string;
3338
3353
  }
3354
+ export interface PreferredLoanOfficer {
3355
+ /** @format uuid */
3356
+ id: string;
3357
+ firstName: string;
3358
+ lastName: string;
3359
+ email: string;
3360
+ phone?: string | null;
3361
+ }
3339
3362
  export interface PreliminaryCondition {
3340
3363
  /** @format uuid */
3341
3364
  id: string;
@@ -3638,7 +3661,7 @@ export interface SSOTokenRequest {
3638
3661
  redirectUri: string;
3639
3662
  }
3640
3663
  export interface SamlMetadataRequest {
3641
- ssoIntegration: "ConsumerConnect" | "TheBigPOS" | "POSF";
3664
+ ssoIntegration: SamlMetadataRequestSsoIntegrationEnum;
3642
3665
  }
3643
3666
  export interface SendForgotPasswordRequest {
3644
3667
  /**
@@ -3673,7 +3696,7 @@ export interface SiteConfiguration {
3673
3696
  deletedAt?: string | null;
3674
3697
  /** @format uuid */
3675
3698
  id: string;
3676
- type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
3699
+ type: SiteConfigurationTypeEnum;
3677
3700
  /** @format uuid */
3678
3701
  entityID: string;
3679
3702
  /** @format int32 */
@@ -3867,7 +3890,7 @@ export interface SiteConfigurationByUrl {
3867
3890
  deletedAt?: string | null;
3868
3891
  /** @format uuid */
3869
3892
  id: string;
3870
- type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
3893
+ type: SiteConfigurationByUrlTypeEnum;
3871
3894
  /** @format uuid */
3872
3895
  entityID: string;
3873
3896
  /** @format int32 */
@@ -4078,7 +4101,7 @@ export interface SiteConfigurationForm {
4078
4101
  export interface SiteConfigurationReduced {
4079
4102
  /** @format uuid */
4080
4103
  id: string;
4081
- type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
4104
+ type: SiteConfigurationReducedTypeEnum;
4082
4105
  url?: string | null;
4083
4106
  name: string;
4084
4107
  /** @format int64 */
@@ -4095,7 +4118,7 @@ export interface SiteConfigurationRequest {
4095
4118
  entityID: string;
4096
4119
  /** @format int32 */
4097
4120
  entityType: number;
4098
- type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
4121
+ type: SiteConfigurationRequestTypeEnum;
4099
4122
  url: string;
4100
4123
  name: string;
4101
4124
  introduction?: string | null;
@@ -4270,7 +4293,7 @@ export interface SiteConfigurationSearchCriteria {
4270
4293
  export interface SiteConfigurationSummary {
4271
4294
  /** @format uuid */
4272
4295
  id: string;
4273
- type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
4296
+ type: SiteConfigurationSummaryTypeEnum;
4274
4297
  url?: string | null;
4275
4298
  name: string;
4276
4299
  /** @format int64 */
@@ -4607,6 +4630,8 @@ export interface UpdateMeRequest {
4607
4630
  forcePasswordReset: boolean;
4608
4631
  mfaEnabled: boolean;
4609
4632
  notificationSettings: UserNotificationSettingsUpdateRequest;
4633
+ /** @format uuid */
4634
+ preferredLoanOfficerId?: string | null;
4610
4635
  }
4611
4636
  export interface UpdateMobilePhoneRequest {
4612
4637
  phone: string;
@@ -4638,6 +4663,8 @@ export interface UpdateUserRequest {
4638
4663
  branchId?: string | null;
4639
4664
  forcePasswordReset: boolean;
4640
4665
  mfaEnabled: boolean;
4666
+ /** @format uuid */
4667
+ preferredLoanOfficerId?: string | null;
4641
4668
  }
4642
4669
  export interface UsageReport {
4643
4670
  /** @format uuid */
@@ -4666,15 +4693,134 @@ export interface UsageReport {
4666
4693
  /** @format date-time */
4667
4694
  createdAt: string;
4668
4695
  }
4669
- export interface UsageReportGenerationResult {
4670
- fileKey: string;
4671
- fileUrl: string;
4696
+ export interface UsageReportAccountBrief {
4697
+ /** @format uuid */
4698
+ accountId: string;
4699
+ accountName: string;
4700
+ hasDiscrepancy: boolean;
4701
+ errorMessage?: string | null;
4702
+ currentStep?: string | null;
4703
+ }
4704
+ export interface UsageReportAccountExecution {
4705
+ /** @format uuid */
4706
+ accountId: string;
4707
+ accountName: string;
4708
+ status: string;
4709
+ hasDiscrepancy: boolean;
4710
+ excelFileUrl?: string | null;
4711
+ errorMessage?: string | null;
4712
+ /** @format date-time */
4713
+ validationStartedAt?: string | null;
4714
+ /** @format date-time */
4715
+ validationCompletedAt?: string | null;
4716
+ /** @format date-time */
4717
+ processingStartedAt?: string | null;
4718
+ /** @format date-time */
4719
+ processingCompletedAt?: string | null;
4720
+ }
4721
+ export interface UsageReportAccountStatus {
4722
+ status: string;
4723
+ /** @format int32 */
4724
+ count: number;
4725
+ accounts: UsageReportAccountBrief[];
4726
+ }
4727
+ export interface UsageReportActiveExecution {
4728
+ /** @format uuid */
4729
+ correlationId: string;
4730
+ currentState: string;
4672
4731
  /** @format int32 */
4673
- successCount: number;
4732
+ month: number;
4674
4733
  /** @format int32 */
4675
- failureCount: number;
4676
- reports: UsageReport[];
4677
- failures: AccountReportFailure[];
4734
+ year: number;
4735
+ /** @format date-time */
4736
+ startedAt?: string | null;
4737
+ elapsedTime: string;
4738
+ progress: UsageReportProgress;
4739
+ accountsByStatus: UsageReportAccountStatus[];
4740
+ }
4741
+ export interface UsageReportDashboard {
4742
+ activeExecution?: UsageReportActiveExecution | null;
4743
+ recentExecutions: UsageReportExecutionSummary[];
4744
+ statistics: UsageReportStatistics;
4745
+ }
4746
+ export interface UsageReportExecution {
4747
+ /** @format uuid */
4748
+ correlationId: string;
4749
+ currentState: string;
4750
+ /** @format int32 */
4751
+ month: number;
4752
+ /** @format int32 */
4753
+ year: number;
4754
+ /** @format int32 */
4755
+ totalAccounts: number;
4756
+ /** @format int32 */
4757
+ validatedAccounts: number;
4758
+ /** @format int32 */
4759
+ processedAccounts: number;
4760
+ /** @format int32 */
4761
+ failedAccounts: number;
4762
+ /** @format date-time */
4763
+ startedAt?: string | null;
4764
+ /** @format date-time */
4765
+ completedAt?: string | null;
4766
+ finalZipUrl?: string | null;
4767
+ errorMessage?: string | null;
4768
+ accounts: UsageReportAccountExecution[];
4769
+ }
4770
+ export interface UsageReportExecutionSummary {
4771
+ /** @format uuid */
4772
+ correlationId: string;
4773
+ currentState: string;
4774
+ /** @format int32 */
4775
+ month: number;
4776
+ /** @format int32 */
4777
+ year: number;
4778
+ period: string;
4779
+ /** @format date-time */
4780
+ startedAt?: string | null;
4781
+ /** @format date-time */
4782
+ completedAt?: string | null;
4783
+ duration?: string | null;
4784
+ /** @format int32 */
4785
+ totalAccounts: number;
4786
+ /** @format int32 */
4787
+ processedAccounts: number;
4788
+ /** @format int32 */
4789
+ failedAccounts: number;
4790
+ finalZipUrl?: string | null;
4791
+ errorMessage?: string | null;
4792
+ }
4793
+ export interface UsageReportProgress {
4794
+ /** @format int32 */
4795
+ totalAccounts: number;
4796
+ /** @format int32 */
4797
+ validatedAccounts: number;
4798
+ /** @format int32 */
4799
+ processedAccounts: number;
4800
+ /** @format int32 */
4801
+ failedAccounts: number;
4802
+ /** @format int32 */
4803
+ pendingAccounts: number;
4804
+ /** @format double */
4805
+ validationPercentage: number;
4806
+ /** @format double */
4807
+ processingPercentage: number;
4808
+ /** @format double */
4809
+ overallPercentage: number;
4810
+ }
4811
+ export interface UsageReportStatistics {
4812
+ /** @format int32 */
4813
+ totalExecutionsThisYear: number;
4814
+ /** @format int32 */
4815
+ successfulExecutions: number;
4816
+ /** @format int32 */
4817
+ failedExecutions: number;
4818
+ /** @format int32 */
4819
+ partialExecutions: number;
4820
+ /** @format date-time */
4821
+ lastSuccessfulExecution?: string | null;
4822
+ /** @format date-time */
4823
+ lastFailedExecution?: string | null;
4678
4824
  }
4679
4825
  export interface User {
4680
4826
  /** @format date-time */
@@ -4697,6 +4843,7 @@ export interface User {
4697
4843
  /** @format int32 */
4698
4844
  loginsWithoutMFACount: number;
4699
4845
  canImpersonate: boolean;
4846
+ preferredLoanOfficer?: PreferredLoanOfficer | null;
4700
4847
  }
4701
4848
  export interface UserAccountDeletionRequest {
4702
4849
  feedback: string;
@@ -4723,7 +4870,7 @@ export interface UserDevice {
4723
4870
  export interface UserDraft {
4724
4871
  /** @format uuid */
4725
4872
  draftID: string;
4726
- role: "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
4873
+ role: UserDraftRoleEnum;
4727
4874
  user: User;
4728
4875
  }
4729
4876
  export interface UserDraftPaginated {
@@ -4747,7 +4894,7 @@ export interface UserGroupAccessScope {
4747
4894
  id: string;
4748
4895
  /** @format uuid */
4749
4896
  groupId: string;
4750
- scopeType: "User" | "Branch";
4897
+ scopeType: UserGroupAccessScopeScopeTypeEnum;
4751
4898
  /** @format uuid */
4752
4899
  userId?: string | null;
4753
4900
  /** @format uuid */
@@ -4780,7 +4927,7 @@ export interface UserLoan {
4780
4927
  deletedAt?: string | null;
4781
4928
  loanID: string;
4782
4929
  user: User;
4783
- role: "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
4930
+ role: UserLoanRoleEnum;
4784
4931
  /** @format int32 */
4785
4932
  borrowerPair?: number | null;
4786
4933
  /** @format int32 */
@@ -4792,7 +4939,7 @@ export interface UserLoanConsent {
4792
4939
  id: string;
4793
4940
  /** @format uuid */
4794
4941
  userLoanID: string;
4795
- type: "Econsent" | "CreditAuthorization" | "Tcpa";
4942
+ type: UserLoanConsentTypeEnum;
4796
4943
  providedConsent: boolean;
4797
4944
  ipAddress?: string | null;
4798
4945
  /** @format date-time */
@@ -4926,7 +5073,7 @@ export interface UserSummary {
4926
5073
  id: string;
4927
5074
  name?: string | null;
4928
5075
  email?: string | null;
4929
- role: "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "BranchManager" | "SystemAdmin";
5076
+ role: UserSummaryRoleEnum;
4930
5077
  }
4931
5078
  export interface VerifyPasswordRequest {
4932
5079
  /**
@@ -4959,6 +5106,42 @@ export interface Workflow {
4959
5106
  tileSubtitle: string;
4960
5107
  icon: string;
4961
5108
  }
5109
+ export type AccountBillingRequestBillingTypeEnum = "ClosedLoan" | "LoanOfficer";
5110
+ export type CreateAccessScopeRequestScopeTypeEnum = "User" | "Branch";
5111
+ export type CreateAccountRequestEnvironmentEnum = "Development" | "Staging" | "UAT" | "Production";
5112
+ export type CreateGroupMemberRequestLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
5113
+ /** @deprecated */
5114
+ export type CreateInviteRequestRelationshipEnum = "NotApplicable" | "Spouse" | "NonSpouse";
5115
+ export type CreateLoanImportRequestImportModeEnum = "All" | "NewOnly" | "UpdateOnly";
5116
+ export type CreateUserDraftLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
5117
+ export type DraftTypeEnum = "NewLoan" | "EditLoan";
5118
+ export type DraftContentTypeEnum = "NewLoan" | "EditLoan";
5119
+ export type FusionReportFilterFilterTypeEnum = "DateGreaterThanOrEqualTo" | "DateGreaterThan" | "DateLessThan" | "DateLessThanOrEqualTo" | "DateEquals" | "DateDoesntEqual" | "DateNonEmpty" | "DateEmpty" | "StringContains" | "StringEquals" | "StringNotEmpty" | "StringNotEquals" | "StringNotContains";
5120
+ export type IpAddressAddressFamilyEnum = "Unspecified" | "Unix" | "InterNetwork" | "ImpLink" | "Pup" | "Chaos" | "NS" | "Ipx" | "Iso" | "Osi" | "Ecma" | "DataKit" | "Ccitt" | "Sna" | "DecNet" | "DataLink" | "Lat" | "HyperChannel" | "AppleTalk" | "NetBios" | "VoiceView" | "FireFox" | "Banyan" | "Atm" | "InterNetworkV6" | "Cluster" | "Ieee12844" | "Irda" | "NetworkDesigners" | "Max" | "Packet" | "ControllerAreaNetwork" | "Unknown";
5121
+ export type LoanContactRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
5122
+ export type LoanImportStatusEnum = "WaitingProcess" | "InProgress" | "Completed" | "Failed" | "Cancelled";
5123
+ export type LoanImportImportModeEnum = "All" | "NewOnly" | "UpdateOnly";
5124
+ export type LoanImportLogLevelEnum = "None" | "Info" | "Warning" | "Error";
5125
+ export type LoanLogLevelEnum = "None" | "Info" | "Warning" | "Error";
5126
+ export type LoanLogTypeEnum = "Loan" | "Queue" | "POSFlagChanged" | "Verification" | "DocumentUploaded" | "LoanCreated" | "WorkflowSubmitted" | "UserInvitationSent" | "CoBorrowerAdded" | "TaskCompleted" | "LoanStatusChanged" | "EConsent";
5127
+ export type LoanUserLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
5128
+ export type SamlMetadataRequestSsoIntegrationEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
5129
+ export type SiteConfigurationTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
5130
+ export type SiteConfigurationByUrlTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
5131
+ export type SiteConfigurationReducedTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
5132
+ export type SiteConfigurationRequestTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
5133
+ export type SiteConfigurationSummaryTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
5134
+ export type UserDraftRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
5135
+ export type UserGroupAccessScopeScopeTypeEnum = "User" | "Branch";
5136
+ export type UserLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
5137
+ export type UserLoanConsentTypeEnum = "Econsent" | "CreditAuthorization" | "Tcpa";
5138
+ export type UserSummaryRoleEnum = "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "BranchManager" | "SystemAdmin";
5139
+ /** @default "Realtor" */
5140
+ export type GetPartnersParamsRoleEnum = "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "BranchManager" | "SystemAdmin";
5141
+ export type GetSamlMetadataParamsSSoIntegrationEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
5142
+ export type GetSamlMetadataParamsEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
5143
+ export type CreateOrReplaceSamlMetadataParamsSSoIntegrationEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
5144
+ export type CreateOrReplaceSamlMetadataParamsEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
4962
5145
  import type { AxiosInstance, AxiosRequestConfig, AxiosResponse, ResponseType } from "axios";
4963
5146
  export type QueryParamsType = Record<string | number, any>;
4964
5147
  export interface FullRequestParams extends Omit<AxiosRequestConfig, "data" | "params" | "url" | "responseType"> {
@@ -5004,7 +5187,7 @@ export declare class HttpClient<SecurityDataType = unknown> {
5004
5187
  }
5005
5188
  /**
5006
5189
  * @title The Big POS API
5007
- * @version v2.34.0
5190
+ * @version v2.35.0
5008
5191
  * @termsOfService https://www.thebigpos.com/terms-of-use/
5009
5192
  * @contact Mortgage Automation Technologies <support@thebigpos.com> (https://www.thebigpos.com/terms-of-use/)
5010
5193
  */
@@ -5018,7 +5201,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5018
5201
  * @secure
5019
5202
  * @response `200` `void` Success
5020
5203
  */
5021
- postRoot: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
5204
+ postRoot: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
5022
5205
  /**
5023
5206
  * No description
5024
5207
  *
@@ -5028,7 +5211,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5028
5211
  * @secure
5029
5212
  * @response `200` `string` Success
5030
5213
  */
5031
- getRoot: (params?: RequestParams) => Promise<AxiosResponse<string, any>>;
5214
+ getRoot: (params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
5032
5215
  api: {
5033
5216
  /**
5034
5217
  * No description
@@ -5041,7 +5224,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5041
5224
  * @response `200` `Account` Success
5042
5225
  * @response `404` `ProblemDetails` Not Found
5043
5226
  */
5044
- getMyAccount: (params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
5227
+ getMyAccount: (params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
5045
5228
  /**
5046
5229
  * No description
5047
5230
  *
@@ -5054,7 +5237,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5054
5237
  * @response `404` `ProblemDetails` Not Found
5055
5238
  * @response `422` `ProblemDetails` Client Error
5056
5239
  */
5057
- replaceMyAccount: (data: UpdateAccountRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
5240
+ replaceMyAccount: (data: UpdateAccountRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
5058
5241
  /**
5059
5242
  * No description
5060
5243
  *
@@ -5065,7 +5248,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5065
5248
  * @secure
5066
5249
  * @response `200` `SiteConfiguration` Success
5067
5250
  */
5068
- getSiteConfigurationByAccount: (params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
5251
+ getSiteConfigurationByAccount: (params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
5069
5252
  /**
5070
5253
  * No description
5071
5254
  *
@@ -5077,7 +5260,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5077
5260
  * @response `200` `SiteConfiguration` Success
5078
5261
  * @response `422` `UnprocessableEntity` Client Error
5079
5262
  */
5080
- updateSiteConfigurationForAccount: (data: SiteConfiguration, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
5263
+ updateSiteConfigurationForAccount: (data: SiteConfiguration, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
5081
5264
  /**
5082
5265
  * No description
5083
5266
  *
@@ -5088,7 +5271,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5088
5271
  * @secure
5089
5272
  * @response `200` `(Account)[]` Success
5090
5273
  */
5091
- getAccounts: (params?: RequestParams) => Promise<AxiosResponse<Account[], any>>;
5274
+ getAccounts: (params?: RequestParams) => Promise<AxiosResponse<Account[], any, {}>>;
5092
5275
  /**
5093
5276
  * No description
5094
5277
  *
@@ -5100,7 +5283,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5100
5283
  * @response `201` `Account` Created
5101
5284
  * @response `422` `ProblemDetails` Client Error
5102
5285
  */
5103
- createAccount: (data: CreateAccountRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
5286
+ createAccount: (data: CreateAccountRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
5104
5287
  /**
5105
5288
  * No description
5106
5289
  *
@@ -5112,7 +5295,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5112
5295
  * @response `201` `Account` Created
5113
5296
  * @response `422` `ProblemDetails` Client Error
5114
5297
  */
5115
- getAccount: (id: string, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
5298
+ getAccount: (id: string, params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
5116
5299
  /**
5117
5300
  * No description
5118
5301
  *
@@ -5128,7 +5311,20 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5128
5311
  deleteAccount: (id: string, query?: {
5129
5312
  /** @default false */
5130
5313
  hardDelete?: boolean;
5131
- }, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
5314
+ }, params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
5315
+ /**
5316
+ * No description
5317
+ *
5318
+ * @tags Accounts
5319
+ * @name UpdateAccountBilling
5320
+ * @summary Update billing configuration
5321
+ * @request PUT:/api/accounts/{id}/billing
5322
+ * @secure
5323
+ * @response `200` `AccountBilling` Success
5324
+ * @response `404` `ProblemDetails` Not Found
5325
+ * @response `422` `ProblemDetails` Client Error
5326
+ */
5327
+ updateAccountBilling: (id: string, data: AccountBillingRequest, params?: RequestParams) => Promise<AxiosResponse<AccountBilling, any, {}>>;
5132
5328
  /**
5133
5329
  * No description
5134
5330
  *
@@ -5141,7 +5337,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5141
5337
  * @response `401` `ProblemDetails` Unauthorized
5142
5338
  * @response `422` `UnprocessableEntity` Client Error
5143
5339
  */
5144
- getTokenFromRefreshToken: (data: RefreshTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any>>;
5340
+ getTokenFromRefreshToken: (data: RefreshTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any, {}>>;
5145
5341
  /**
5146
5342
  * No description
5147
5343
  *
@@ -5153,7 +5349,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5153
5349
  * @response `200` `Token` Success
5154
5350
  * @response `422` `UnprocessableEntity` Client Error
5155
5351
  */
5156
- getToken: (data: TokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any>>;
5352
+ getToken: (data: TokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any, {}>>;
5157
5353
  /**
5158
5354
  * No description
5159
5355
  *
@@ -5165,7 +5361,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5165
5361
  * @response `200` `Token` Success
5166
5362
  * @response `422` `UnprocessableEntity` Client Error
5167
5363
  */
5168
- getTokenFromChallengeCode: (data: TokenChallengeRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any>>;
5364
+ getTokenFromChallengeCode: (data: TokenChallengeRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any, {}>>;
5169
5365
  /**
5170
5366
  * No description
5171
5367
  *
@@ -5177,7 +5373,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5177
5373
  * @response `200` `Token` Success
5178
5374
  * @response `422` `UnprocessableEntity` Client Error
5179
5375
  */
5180
- getSystemToken: (data: SystemTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any>>;
5376
+ getSystemToken: (data: SystemTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any, {}>>;
5181
5377
  /**
5182
5378
  * No description
5183
5379
  *
@@ -5189,7 +5385,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5189
5385
  * @response `200` `SSOToken` Success
5190
5386
  * @response `422` `UnprocessableEntity` Client Error
5191
5387
  */
5192
- getSsoToken: (data: SSOTokenRequest, params?: RequestParams) => Promise<AxiosResponse<SSOToken, any>>;
5388
+ getSsoToken: (data: SSOTokenRequest, params?: RequestParams) => Promise<AxiosResponse<SSOToken, any, {}>>;
5193
5389
  /**
5194
5390
  * No description
5195
5391
  *
@@ -5201,7 +5397,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5201
5397
  * @response `204` `NoContentResult` No Content
5202
5398
  * @response `422` `UnprocessableEntity` Client Error
5203
5399
  */
5204
- logOut: (params?: RequestParams) => Promise<AxiosResponse<NoContentResult, any>>;
5400
+ logOut: (params?: RequestParams) => Promise<AxiosResponse<NoContentResult, any, {}>>;
5205
5401
  /**
5206
5402
  * No description
5207
5403
  *
@@ -5220,7 +5416,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5220
5416
  pageNumber?: number;
5221
5417
  sortBy?: string;
5222
5418
  sortDirection?: string;
5223
- }, params?: RequestParams) => Promise<AxiosResponse<GetBranchPaginated, any>>;
5419
+ }, params?: RequestParams) => Promise<AxiosResponse<GetBranchPaginated, any, {}>>;
5224
5420
  /**
5225
5421
  * No description
5226
5422
  *
@@ -5232,7 +5428,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5232
5428
  * @response `200` `GetBranch` Success
5233
5429
  * @response `422` `UnprocessableEntity` Client Error
5234
5430
  */
5235
- createBranch: (data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any>>;
5431
+ createBranch: (data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any, {}>>;
5236
5432
  /**
5237
5433
  * No description
5238
5434
  *
@@ -5250,7 +5446,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5250
5446
  pageNumber?: number;
5251
5447
  sortBy?: string;
5252
5448
  sortDirection?: string;
5253
- }, params?: RequestParams) => Promise<AxiosResponse<GetBranchPaginated, any>>;
5449
+ }, params?: RequestParams) => Promise<AxiosResponse<GetBranchPaginated, any, {}>>;
5254
5450
  /**
5255
5451
  * No description
5256
5452
  *
@@ -5261,7 +5457,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5261
5457
  * @secure
5262
5458
  * @response `200` `GetBranch` Success
5263
5459
  */
5264
- getBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any>>;
5460
+ getBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any, {}>>;
5265
5461
  /**
5266
5462
  * No description
5267
5463
  *
@@ -5273,7 +5469,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5273
5469
  * @response `200` `GetBranch` Success
5274
5470
  * @response `422` `UnprocessableEntity` Client Error
5275
5471
  */
5276
- replaceBranch: (branchId: string, data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any>>;
5472
+ replaceBranch: (branchId: string, data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any, {}>>;
5277
5473
  /**
5278
5474
  * No description
5279
5475
  *
@@ -5284,7 +5480,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5284
5480
  * @secure
5285
5481
  * @response `204` `void` No Content
5286
5482
  */
5287
- deleteBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
5483
+ deleteBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
5288
5484
  /**
5289
5485
  * No description
5290
5486
  *
@@ -5296,7 +5492,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5296
5492
  * @response `204` `void` No Content
5297
5493
  * @response `400` `ProblemDetails` Bad Request
5298
5494
  */
5299
- restoreBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
5495
+ restoreBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
5300
5496
  /**
5301
5497
  * No description
5302
5498
  *
@@ -5308,7 +5504,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5308
5504
  * @response `200` `SiteConfiguration` Success
5309
5505
  * @response `422` `UnprocessableEntity` Client Error
5310
5506
  */
5311
- createBranchSiteConfiguration: (branchId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
5507
+ createBranchSiteConfiguration: (branchId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
5312
5508
  /**
5313
5509
  * No description
5314
5510
  *
@@ -5319,7 +5515,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5319
5515
  * @secure
5320
5516
  * @response `200` `SiteConfigurationWithInherited` Success
5321
5517
  */
5322
- getBranchSiteConfiguration: (branchId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
5518
+ getBranchSiteConfiguration: (branchId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any, {}>>;
5323
5519
  /**
5324
5520
  * No description
5325
5521
  *
@@ -5333,7 +5529,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5333
5529
  */
5334
5530
  replaceBranchSiteConfiguration: (branchId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
5335
5531
  applyToChildren?: boolean;
5336
- }, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
5532
+ }, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
5337
5533
  /**
5338
5534
  * No description
5339
5535
  *
@@ -5344,7 +5540,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5344
5540
  * @secure
5345
5541
  * @response `200` `LoanOfficerPublic` Success
5346
5542
  */
5347
- getLoanOfficersByBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic, any>>;
5543
+ getLoanOfficersByBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic, any, {}>>;
5348
5544
  /**
5349
5545
  * No description
5350
5546
  *
@@ -5357,7 +5553,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5357
5553
  */
5358
5554
  getBusinessRules: (query?: {
5359
5555
  showAll?: boolean;
5360
- }, params?: RequestParams) => Promise<AxiosResponse<BusinessRule[], any>>;
5556
+ }, params?: RequestParams) => Promise<AxiosResponse<BusinessRule[], any, {}>>;
5361
5557
  /**
5362
5558
  * No description
5363
5559
  *
@@ -5369,7 +5565,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5369
5565
  * @response `200` `BusinessRule` Success
5370
5566
  * @response `422` `UnprocessableEntity` Client Error
5371
5567
  */
5372
- createBusinessRule: (data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
5568
+ createBusinessRule: (data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any, {}>>;
5373
5569
  /**
5374
5570
  * No description
5375
5571
  *
@@ -5380,7 +5576,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5380
5576
  * @secure
5381
5577
  * @response `200` `BusinessRule` Success
5382
5578
  */
5383
- getBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
5579
+ getBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any, {}>>;
5384
5580
  /**
5385
5581
  * No description
5386
5582
  *
@@ -5392,7 +5588,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5392
5588
  * @response `200` `BusinessRule` Success
5393
5589
  * @response `422` `UnprocessableEntity` Client Error
5394
5590
  */
5395
- replaceBusinessRule: (id: string, data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
5591
+ replaceBusinessRule: (id: string, data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any, {}>>;
5396
5592
  /**
5397
5593
  * No description
5398
5594
  *
@@ -5403,7 +5599,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5403
5599
  * @secure
5404
5600
  * @response `204` `void` No Content
5405
5601
  */
5406
- deleteBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
5602
+ deleteBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
5407
5603
  /**
5408
5604
  * No description
5409
5605
  *
@@ -5414,7 +5610,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5414
5610
  * @secure
5415
5611
  * @response `200` `BusinessRule` Success
5416
5612
  */
5417
- restoreBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
5613
+ restoreBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any, {}>>;
5418
5614
  /**
5419
5615
  * @description Returns closed loan counts per account within the specified date range, including POS vs non-POS breakdown and utilization ratios.
5420
5616
  *
@@ -5425,7 +5621,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5425
5621
  * @secure
5426
5622
  * @response `200` `ClosedLoansReport` Success
5427
5623
  */
5428
- getClosedLoansReport: (data: ClosedLoansReportRequest, params?: RequestParams) => Promise<AxiosResponse<ClosedLoansReport, any>>;
5624
+ getClosedLoansReport: (data: ClosedLoansReportRequest, params?: RequestParams) => Promise<AxiosResponse<ClosedLoansReport, any, {}>>;
5429
5625
  /**
5430
5626
  * No description
5431
5627
  *
@@ -5444,7 +5640,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5444
5640
  pageNumber?: number;
5445
5641
  sortBy?: string;
5446
5642
  sortDirection?: string;
5447
- }, params?: RequestParams) => Promise<AxiosResponse<CorporatePaginated, any>>;
5643
+ }, params?: RequestParams) => Promise<AxiosResponse<CorporatePaginated, any, {}>>;
5448
5644
  /**
5449
5645
  * No description
5450
5646
  *
@@ -5456,7 +5652,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5456
5652
  * @response `200` `Corporate` Success
5457
5653
  * @response `422` `UnprocessableEntity` Client Error
5458
5654
  */
5459
- createCorporate: (data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any>>;
5655
+ createCorporate: (data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any, {}>>;
5460
5656
  /**
5461
5657
  * No description
5462
5658
  *
@@ -5474,7 +5670,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5474
5670
  pageNumber?: number;
5475
5671
  sortBy?: string;
5476
5672
  sortDirection?: string;
5477
- }, params?: RequestParams) => Promise<AxiosResponse<CorporatePaginated, any>>;
5673
+ }, params?: RequestParams) => Promise<AxiosResponse<CorporatePaginated, any, {}>>;
5478
5674
  /**
5479
5675
  * No description
5480
5676
  *
@@ -5485,7 +5681,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5485
5681
  * @secure
5486
5682
  * @response `200` `Corporate` Success
5487
5683
  */
5488
- getCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<Corporate, any>>;
5684
+ getCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<Corporate, any, {}>>;
5489
5685
  /**
5490
5686
  * No description
5491
5687
  *
@@ -5497,7 +5693,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5497
5693
  * @response `200` `Corporate` Success
5498
5694
  * @response `422` `UnprocessableEntity` Client Error
5499
5695
  */
5500
- replaceCorporate: (id: string, data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any>>;
5696
+ replaceCorporate: (id: string, data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any, {}>>;
5501
5697
  /**
5502
5698
  * No description
5503
5699
  *
@@ -5508,7 +5704,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5508
5704
  * @secure
5509
5705
  * @response `204` `void` No Content
5510
5706
  */
5511
- deleteCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
5707
+ deleteCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
5512
5708
  /**
5513
5709
  * No description
5514
5710
  *
@@ -5519,7 +5715,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5519
5715
  * @secure
5520
5716
  * @response `204` `void` No Content
5521
5717
  */
5522
- restoreCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
5718
+ restoreCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
5523
5719
  /**
5524
5720
  * No description
5525
5721
  *
@@ -5531,7 +5727,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5531
5727
  * @response `200` `SiteConfiguration` Success
5532
5728
  * @response `422` `UnprocessableEntity` Client Error
5533
5729
  */
5534
- createCorporateSiteConfiguration: (corporateId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
5730
+ createCorporateSiteConfiguration: (corporateId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
5535
5731
  /**
5536
5732
  * No description
5537
5733
  *
@@ -5542,7 +5738,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5542
5738
  * @secure
5543
5739
  * @response `200` `SiteConfigurationWithInherited` Success
5544
5740
  */
5545
- getCorporateSiteConfiguration: (corporateId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
5741
+ getCorporateSiteConfiguration: (corporateId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any, {}>>;
5546
5742
  /**
5547
5743
  * No description
5548
5744
  *
@@ -5556,7 +5752,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5556
5752
  */
5557
5753
  replaceCorporateSiteConfiguration: (corporateId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
5558
5754
  applyToChildren?: boolean;
5559
- }, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
5755
+ }, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
5560
5756
  /**
5561
5757
  * No description
5562
5758
  *
@@ -5567,7 +5763,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5567
5763
  * @secure
5568
5764
  * @response `200` `(BranchReduced)[]` Success
5569
5765
  */
5570
- getBranchesByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchReduced[], any>>;
5766
+ getBranchesByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchReduced[], any, {}>>;
5571
5767
  /**
5572
5768
  * No description
5573
5769
  *
@@ -5578,7 +5774,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5578
5774
  * @secure
5579
5775
  * @response `200` `LoanOfficerPublic` Success
5580
5776
  */
5581
- getLoanOfficersByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic, any>>;
5777
+ getLoanOfficersByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic, any, {}>>;
5582
5778
  /**
5583
5779
  * No description
5584
5780
  *
@@ -5598,7 +5794,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5598
5794
  pageNumber?: number;
5599
5795
  sortBy?: string;
5600
5796
  sortDirection?: string;
5601
- }, params?: RequestParams) => Promise<AxiosResponse<DevicePaginated, any>>;
5797
+ }, params?: RequestParams) => Promise<AxiosResponse<DevicePaginated, any, {}>>;
5602
5798
  /**
5603
5799
  * No description
5604
5800
  *
@@ -5609,7 +5805,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5609
5805
  * @secure
5610
5806
  * @response `200` `Device` Success
5611
5807
  */
5612
- getDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<Device, any>>;
5808
+ getDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<Device, any, {}>>;
5613
5809
  /**
5614
5810
  * No description
5615
5811
  *
@@ -5620,7 +5816,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5620
5816
  * @secure
5621
5817
  * @response `200` `Device` Success
5622
5818
  */
5623
- updateDevice: (id: string, data: DeviceRequest, params?: RequestParams) => Promise<AxiosResponse<Device, any>>;
5819
+ updateDevice: (id: string, data: DeviceRequest, params?: RequestParams) => Promise<AxiosResponse<Device, any, {}>>;
5624
5820
  /**
5625
5821
  * No description
5626
5822
  *
@@ -5631,7 +5827,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5631
5827
  * @secure
5632
5828
  * @response `200` `DeviceMDM` Success
5633
5829
  */
5634
- getDeviceBySerialNumber: (sn: string, params?: RequestParams) => Promise<AxiosResponse<DeviceMDM, any>>;
5830
+ getDeviceBySerialNumber: (sn: string, params?: RequestParams) => Promise<AxiosResponse<DeviceMDM, any, {}>>;
5635
5831
  /**
5636
5832
  * No description
5637
5833
  *
@@ -5642,7 +5838,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5642
5838
  * @secure
5643
5839
  * @response `200` `Action` Success
5644
5840
  */
5645
- createDeviceActionBySerialNumber: (sn: string, actionName: string, params?: RequestParams) => Promise<AxiosResponse<Action, any>>;
5841
+ createDeviceActionBySerialNumber: (sn: string, actionName: string, params?: RequestParams) => Promise<AxiosResponse<Action, any, {}>>;
5646
5842
  /**
5647
5843
  * No description
5648
5844
  *
@@ -5656,7 +5852,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5656
5852
  getDocumentBuckets: (query?: {
5657
5853
  /** @default false */
5658
5854
  includeSystemBuckets?: boolean;
5659
- }, params?: RequestParams) => Promise<AxiosResponse<string[], any>>;
5855
+ }, params?: RequestParams) => Promise<AxiosResponse<string[], any, {}>>;
5660
5856
  /**
5661
5857
  * No description
5662
5858
  *
@@ -5669,7 +5865,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5669
5865
  */
5670
5866
  getDocumentTemplates: (query?: {
5671
5867
  showAll?: boolean;
5672
- }, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase[], any>>;
5868
+ }, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase[], any, {}>>;
5673
5869
  /**
5674
5870
  * No description
5675
5871
  *
@@ -5682,7 +5878,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5682
5878
  * @response `404` `ProblemDetails` Not Found
5683
5879
  * @response `422` `UnprocessableEntity` Client Error
5684
5880
  */
5685
- createDocumentTemplate: (data: CreateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any>>;
5881
+ createDocumentTemplate: (data: CreateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any, {}>>;
5686
5882
  /**
5687
5883
  * No description
5688
5884
  *
@@ -5698,7 +5894,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5698
5894
  showAll?: boolean;
5699
5895
  /** @default true */
5700
5896
  publishedOnly?: boolean;
5701
- }, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase[], any>>;
5897
+ }, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase[], any, {}>>;
5702
5898
  /**
5703
5899
  * No description
5704
5900
  *
@@ -5710,7 +5906,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5710
5906
  * @response `200` `DocumentTemplate` Success
5711
5907
  * @response `404` `ProblemDetails` Not Found
5712
5908
  */
5713
- getDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplate, any>>;
5909
+ getDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplate, any, {}>>;
5714
5910
  /**
5715
5911
  * No description
5716
5912
  *
@@ -5724,7 +5920,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5724
5920
  * @response `404` `ProblemDetails` Not Found
5725
5921
  * @response `422` `UnprocessableEntity` Client Error
5726
5922
  */
5727
- replaceDocumentTemplate: (id: string, data: UpdateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any>>;
5923
+ replaceDocumentTemplate: (id: string, data: UpdateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any, {}>>;
5728
5924
  /**
5729
5925
  * No description
5730
5926
  *
@@ -5737,7 +5933,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5737
5933
  * @response `401` `ProblemDetails` Unauthorized
5738
5934
  * @response `404` `ProblemDetails` Not Found
5739
5935
  */
5740
- deleteDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
5936
+ deleteDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
5741
5937
  /**
5742
5938
  * No description
5743
5939
  *
@@ -5750,7 +5946,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5750
5946
  * @response `401` `ProblemDetails` Unauthorized
5751
5947
  * @response `404` `ProblemDetails` Not Found
5752
5948
  */
5753
- restoreDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
5949
+ restoreDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
5754
5950
  /**
5755
5951
  * No description
5756
5952
  *
@@ -5761,7 +5957,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5761
5957
  * @secure
5762
5958
  * @response `200` `(DocumentTemplateVersion)[]` Success
5763
5959
  */
5764
- getDocumentTemplateVersions: (documentId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion[], any>>;
5960
+ getDocumentTemplateVersions: (documentId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion[], any, {}>>;
5765
5961
  /**
5766
5962
  * No description
5767
5963
  *
@@ -5772,7 +5968,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5772
5968
  * @secure
5773
5969
  * @response `200` `DocumentTemplateVersion` Success
5774
5970
  */
5775
- createDocumentTemplateVersion: (documentId: string, data: DocumentTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
5971
+ createDocumentTemplateVersion: (documentId: string, data: DocumentTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any, {}>>;
5776
5972
  /**
5777
5973
  * No description
5778
5974
  *
@@ -5783,7 +5979,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5783
5979
  * @secure
5784
5980
  * @response `200` `DocumentTemplateVersion` Success
5785
5981
  */
5786
- getDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
5982
+ getDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any, {}>>;
5787
5983
  /**
5788
5984
  * No description
5789
5985
  *
@@ -5794,7 +5990,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5794
5990
  * @secure
5795
5991
  * @response `200` `DocumentTemplateVersion` Success
5796
5992
  */
5797
- replaceDocumentTemplateVersion: (documentId: string, id: string, data: DocumentTemplateVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
5993
+ replaceDocumentTemplateVersion: (documentId: string, id: string, data: DocumentTemplateVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any, {}>>;
5798
5994
  /**
5799
5995
  * No description
5800
5996
  *
@@ -5805,7 +6001,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5805
6001
  * @secure
5806
6002
  * @response `200` `DocumentTemplateVersion` Success
5807
6003
  */
5808
- deleteDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
6004
+ deleteDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any, {}>>;
5809
6005
  /**
5810
6006
  * No description
5811
6007
  *
@@ -5831,7 +6027,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5831
6027
  * @default 20
5832
6028
  */
5833
6029
  pageSize?: number;
5834
- }, params?: RequestParams) => Promise<AxiosResponse<EncompassPackageList, any>>;
6030
+ }, params?: RequestParams) => Promise<AxiosResponse<EncompassPackageList, any, {}>>;
5835
6031
  /**
5836
6032
  * No description
5837
6033
  *
@@ -5846,7 +6042,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5846
6042
  * @response `404` `EncompassError` Not Found
5847
6043
  * @response `500` `EncompassError` Server Error
5848
6044
  */
5849
- createEncompassSession: (data: CreateSessionRequest, params?: RequestParams) => Promise<AxiosResponse<CreateSession, any>>;
6045
+ createEncompassSession: (data: CreateSessionRequest, params?: RequestParams) => Promise<AxiosResponse<CreateSession, any, {}>>;
5850
6046
  /**
5851
6047
  * No description
5852
6048
  *
@@ -5866,7 +6062,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5866
6062
  sortDirection?: string;
5867
6063
  /** @default false */
5868
6064
  includeDeleted?: boolean;
5869
- }, params?: RequestParams) => Promise<AxiosResponse<FilePaginated, any>>;
6065
+ }, params?: RequestParams) => Promise<AxiosResponse<FilePaginated, any, {}>>;
5870
6066
  /**
5871
6067
  * No description
5872
6068
  *
@@ -5884,7 +6080,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5884
6080
  file?: File;
5885
6081
  isPublic?: boolean;
5886
6082
  bucket?: string;
5887
- }, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
6083
+ }, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
5888
6084
  /**
5889
6085
  * No description
5890
6086
  *
@@ -5895,7 +6091,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5895
6091
  * @secure
5896
6092
  * @response `201` `File` Created
5897
6093
  */
5898
- getFileById: (id: string, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
6094
+ getFileById: (id: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
5899
6095
  /**
5900
6096
  * No description
5901
6097
  *
@@ -5907,7 +6103,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5907
6103
  * @response `200` `string` Success
5908
6104
  * @response `422` `UnprocessableEntity` Client Error
5909
6105
  */
5910
- replaceFile: (id: string, data: FileRequest, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
6106
+ replaceFile: (id: string, data: FileRequest, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
5911
6107
  /**
5912
6108
  * No description
5913
6109
  *
@@ -5918,7 +6114,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5918
6114
  * @secure
5919
6115
  * @response `204` `void` No Content
5920
6116
  */
5921
- deleteFile: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6117
+ deleteFile: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
5922
6118
  /**
5923
6119
  * No description
5924
6120
  *
@@ -5936,7 +6132,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5936
6132
  pageNumber?: number;
5937
6133
  sortBy?: string;
5938
6134
  sortDirection?: string;
5939
- }, params?: RequestParams) => Promise<AxiosResponse<FilePaginated, any>>;
6135
+ }, params?: RequestParams) => Promise<AxiosResponse<FilePaginated, any, {}>>;
5940
6136
  /**
5941
6137
  * No description
5942
6138
  *
@@ -5949,7 +6145,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5949
6145
  */
5950
6146
  getForms: (query?: {
5951
6147
  showAll?: boolean;
5952
- }, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms[], any>>;
6148
+ }, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms[], any, {}>>;
5953
6149
  /**
5954
6150
  * No description
5955
6151
  *
@@ -5961,7 +6157,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5961
6157
  * @response `201` `Form` Created
5962
6158
  * @response `422` `UnprocessableEntity` Client Error
5963
6159
  */
5964
- createForm: (data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<Form, any>>;
6160
+ createForm: (data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<Form, any, {}>>;
5965
6161
  /**
5966
6162
  * No description
5967
6163
  *
@@ -5972,7 +6168,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5972
6168
  * @secure
5973
6169
  * @response `200` `Form` Success
5974
6170
  */
5975
- getForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<Form, any>>;
6171
+ getForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<Form, any, {}>>;
5976
6172
  /**
5977
6173
  * No description
5978
6174
  *
@@ -5984,7 +6180,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5984
6180
  * @response `200` `Form` Success
5985
6181
  * @response `422` `UnprocessableEntity` Client Error
5986
6182
  */
5987
- replaceForm: (id: string, data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<Form, any>>;
6183
+ replaceForm: (id: string, data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<Form, any, {}>>;
5988
6184
  /**
5989
6185
  * No description
5990
6186
  *
@@ -5995,7 +6191,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5995
6191
  * @secure
5996
6192
  * @response `204` `void` No Content
5997
6193
  */
5998
- deleteForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6194
+ deleteForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
5999
6195
  /**
6000
6196
  * No description
6001
6197
  *
@@ -6006,7 +6202,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6006
6202
  * @secure
6007
6203
  * @response `200` `Form` Success
6008
6204
  */
6009
- restoreForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<Form, any>>;
6205
+ restoreForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<Form, any, {}>>;
6010
6206
  /**
6011
6207
  * No description
6012
6208
  *
@@ -6021,7 +6217,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6021
6217
  /** @format binary */
6022
6218
  file?: File;
6023
6219
  name?: string;
6024
- }, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionFile, any>>;
6220
+ }, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionFile, any, {}>>;
6025
6221
  /**
6026
6222
  * No description
6027
6223
  *
@@ -6032,7 +6228,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6032
6228
  * @secure
6033
6229
  * @response `204` `void` No Content
6034
6230
  */
6035
- deleteFormSubmissionFile: (formSubmissionFileId: string, formSubmissionId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6231
+ deleteFormSubmissionFile: (formSubmissionFileId: string, formSubmissionId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
6036
6232
  /**
6037
6233
  * No description
6038
6234
  *
@@ -6046,7 +6242,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6046
6242
  downloadFormSubmissionFile: (formSubmissionFileId: string, formSubmissionId: string, query?: {
6047
6243
  /** @format uuid */
6048
6244
  siteConfigurationId?: string;
6049
- }, params?: RequestParams) => Promise<AxiosResponse<FileWithBytes, any>>;
6245
+ }, params?: RequestParams) => Promise<AxiosResponse<FileWithBytes, any, {}>>;
6050
6246
  /**
6051
6247
  * No description
6052
6248
  *
@@ -6064,7 +6260,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6064
6260
  pageNumber?: number;
6065
6261
  sortBy?: string;
6066
6262
  sortDirection?: string;
6067
- }, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionPaginated, any>>;
6263
+ }, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionPaginated, any, {}>>;
6068
6264
  /**
6069
6265
  * No description
6070
6266
  *
@@ -6077,7 +6273,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6077
6273
  */
6078
6274
  createFormSubmission: (data: FormSubmissionRequest, query?: {
6079
6275
  formID?: string;
6080
- }, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any>>;
6276
+ }, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any, {}>>;
6081
6277
  /**
6082
6278
  * No description
6083
6279
  *
@@ -6088,7 +6284,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6088
6284
  * @secure
6089
6285
  * @response `200` `FormSubmission` Success
6090
6286
  */
6091
- getFormSubmission: (id: string, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any>>;
6287
+ getFormSubmission: (id: string, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any, {}>>;
6092
6288
  /**
6093
6289
  * No description
6094
6290
  *
@@ -6099,7 +6295,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6099
6295
  * @secure
6100
6296
  * @response `200` `FormSubmission` Success
6101
6297
  */
6102
- replaceFormSubmission: (id: string, data: FormSubmissionRequest, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any>>;
6298
+ replaceFormSubmission: (id: string, data: FormSubmissionRequest, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any, {}>>;
6103
6299
  /**
6104
6300
  * No description
6105
6301
  *
@@ -6110,7 +6306,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6110
6306
  * @secure
6111
6307
  * @response `204` `void` No Content
6112
6308
  */
6113
- deleteFormSubmission: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6309
+ deleteFormSubmission: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
6114
6310
  /**
6115
6311
  * No description
6116
6312
  *
@@ -6128,7 +6324,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6128
6324
  pageNumber?: number;
6129
6325
  sortBy?: string;
6130
6326
  sortDirection?: string;
6131
- }, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionPaginated, any>>;
6327
+ }, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionPaginated, any, {}>>;
6132
6328
  /**
6133
6329
  * No description
6134
6330
  *
@@ -6139,7 +6335,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6139
6335
  * @secure
6140
6336
  * @response `200` `(FormVersion)[]` Success
6141
6337
  */
6142
- getFormVersions: (formId: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion[], any>>;
6338
+ getFormVersions: (formId: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion[], any, {}>>;
6143
6339
  /**
6144
6340
  * No description
6145
6341
  *
@@ -6150,7 +6346,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6150
6346
  * @secure
6151
6347
  * @response `200` `FormVersion` Success
6152
6348
  */
6153
- createFormVersion: (formId: string, data: FormVersionRequest, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
6349
+ createFormVersion: (formId: string, data: FormVersionRequest, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any, {}>>;
6154
6350
  /**
6155
6351
  * No description
6156
6352
  *
@@ -6161,7 +6357,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6161
6357
  * @secure
6162
6358
  * @response `200` `FormVersion` Success
6163
6359
  */
6164
- getFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
6360
+ getFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any, {}>>;
6165
6361
  /**
6166
6362
  * No description
6167
6363
  *
@@ -6172,7 +6368,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6172
6368
  * @secure
6173
6369
  * @response `200` `FormVersion` Success
6174
6370
  */
6175
- replaceFormVersion: (formId: string, id: string, data: FormVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
6371
+ replaceFormVersion: (formId: string, id: string, data: FormVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any, {}>>;
6176
6372
  /**
6177
6373
  * No description
6178
6374
  *
@@ -6183,7 +6379,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6183
6379
  * @secure
6184
6380
  * @response `200` `FormVersion` Success
6185
6381
  */
6186
- deleteFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
6382
+ deleteFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any, {}>>;
6187
6383
  /**
6188
6384
  * No description
6189
6385
  *
@@ -6194,7 +6390,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6194
6390
  * @secure
6195
6391
  * @response `200` `Record<string,any>` Success
6196
6392
  */
6197
- getLoanData: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Record<string, any>, any>>;
6393
+ getLoanData: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Record<string, any>, any, {}>>;
6198
6394
  /**
6199
6395
  * No description
6200
6396
  *
@@ -6207,7 +6403,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6207
6403
  * @response `200` `string` Success
6208
6404
  * @response `422` `UnprocessableEntity` Client Error
6209
6405
  */
6210
- updateLoanConsentAndCustomFieldsObsolete: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
6406
+ updateLoanConsentAndCustomFieldsObsolete: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
6211
6407
  /**
6212
6408
  * No description
6213
6409
  *
@@ -6218,7 +6414,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6218
6414
  * @secure
6219
6415
  * @response `200` `GetReport` Success
6220
6416
  */
6221
- getLoansReport: (data: GetReportRequest, params?: RequestParams) => Promise<AxiosResponse<GetReport, any>>;
6417
+ getLoansReport: (data: GetReportRequest, params?: RequestParams) => Promise<AxiosResponse<GetReport, any, {}>>;
6222
6418
  /**
6223
6419
  * No description
6224
6420
  *
@@ -6235,7 +6431,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6235
6431
  createLoan: (data: any, query?: {
6236
6432
  /** @default false */
6237
6433
  isPatch?: boolean;
6238
- }, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
6434
+ }, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
6239
6435
  /**
6240
6436
  * No description
6241
6437
  *
@@ -6251,7 +6447,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6251
6447
  createLoanInternal: (data: any, query?: {
6252
6448
  /** @default false */
6253
6449
  isPatch?: boolean;
6254
- }, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
6450
+ }, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
6255
6451
  /**
6256
6452
  * No description
6257
6453
  *
@@ -6263,7 +6459,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6263
6459
  * @response `200` `string` Success
6264
6460
  * @response `422` `UnprocessableEntity` Client Error
6265
6461
  */
6266
- updateLoanCustomFields: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
6462
+ updateLoanCustomFields: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
6267
6463
  /**
6268
6464
  * No description
6269
6465
  *
@@ -6276,7 +6472,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6276
6472
  * @response `202` `string` Accepted
6277
6473
  * @response `422` `UnprocessableEntity` Client Error
6278
6474
  */
6279
- updateLoanConsent: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
6475
+ updateLoanConsent: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
6280
6476
  /**
6281
6477
  * No description
6282
6478
  *
@@ -6287,7 +6483,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6287
6483
  * @secure
6288
6484
  * @response `200` `(DocumentData)[]` Success
6289
6485
  */
6290
- getTaskDocumentsByLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentData[], any>>;
6486
+ getTaskDocumentsByLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentData[], any, {}>>;
6291
6487
  /**
6292
6488
  * No description
6293
6489
  *
@@ -6301,7 +6497,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6301
6497
  getLoanDocumentContent: (loanId: string, documentId: string, query?: {
6302
6498
  /** @default "base64" */
6303
6499
  contentType?: string;
6304
- }, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6500
+ }, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
6305
6501
  /**
6306
6502
  * No description
6307
6503
  *
@@ -6312,7 +6508,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6312
6508
  * @secure
6313
6509
  * @response `204` `void` No Content
6314
6510
  */
6315
- getLoanRecipients: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6511
+ getLoanRecipients: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
6316
6512
  /**
6317
6513
  * No description
6318
6514
  *
@@ -6323,7 +6519,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6323
6519
  * @secure
6324
6520
  * @response `200` `(PreliminaryCondition)[]` Success
6325
6521
  */
6326
- getPreliminaryConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<PreliminaryCondition[], any>>;
6522
+ getPreliminaryConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<PreliminaryCondition[], any, {}>>;
6327
6523
  /**
6328
6524
  * No description
6329
6525
  *
@@ -6334,7 +6530,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6334
6530
  * @secure
6335
6531
  * @response `200` `(UnderwritingCondition)[]` Success
6336
6532
  */
6337
- getUnderwritingConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UnderwritingCondition[], any>>;
6533
+ getUnderwritingConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UnderwritingCondition[], any, {}>>;
6338
6534
  /**
6339
6535
  * No description
6340
6536
  *
@@ -6345,7 +6541,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6345
6541
  * @secure
6346
6542
  * @response `200` `string` Success
6347
6543
  */
6348
- getLoanEmbeddedSigningLink: (envelopeId: string, userName: string, email: string, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
6544
+ getLoanEmbeddedSigningLink: (envelopeId: string, userName: string, email: string, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
6349
6545
  /**
6350
6546
  * No description
6351
6547
  *
@@ -6357,7 +6553,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6357
6553
  * @secure
6358
6554
  * @response `200` `DocumentDataRequest` Success
6359
6555
  */
6360
- createLegacyLoanDocument: (data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any>>;
6556
+ createLegacyLoanDocument: (data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any, {}>>;
6361
6557
  /**
6362
6558
  * No description
6363
6559
  *
@@ -6374,7 +6570,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6374
6570
  createEditDraftForLoan: (loanId: string, query?: {
6375
6571
  /** @default false */
6376
6572
  isCoBorrower?: boolean;
6377
- }, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
6573
+ }, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
6378
6574
  /**
6379
6575
  * No description
6380
6576
  *
@@ -6390,7 +6586,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6390
6586
  file?: File;
6391
6587
  /** @format int32 */
6392
6588
  weight?: number;
6393
- }, params?: RequestParams) => Promise<AxiosResponse<ListingFile, any>>;
6589
+ }, params?: RequestParams) => Promise<AxiosResponse<ListingFile, any, {}>>;
6394
6590
  /**
6395
6591
  * No description
6396
6592
  *
@@ -6401,7 +6597,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6401
6597
  * @secure
6402
6598
  * @response `200` `ListingFile` Success
6403
6599
  */
6404
- updateListingFiles: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingFile, any>>;
6600
+ updateListingFiles: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingFile, any, {}>>;
6405
6601
  /**
6406
6602
  * No description
6407
6603
  *
@@ -6412,7 +6608,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6412
6608
  * @secure
6413
6609
  * @response `204` `Listing` No Content
6414
6610
  */
6415
- removeListingFile: (listingId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
6611
+ removeListingFile: (listingId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
6416
6612
  /**
6417
6613
  * No description
6418
6614
  *
@@ -6430,7 +6626,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6430
6626
  file?: File;
6431
6627
  /** @format int32 */
6432
6628
  weight?: number;
6433
- }, params?: RequestParams) => Promise<AxiosResponse<ListingPhoto, any>>;
6629
+ }, params?: RequestParams) => Promise<AxiosResponse<ListingPhoto, any, {}>>;
6434
6630
  /**
6435
6631
  * No description
6436
6632
  *
@@ -6441,7 +6637,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6441
6637
  * @secure
6442
6638
  * @response `200` `(ListingPhoto)[]` Success
6443
6639
  */
6444
- updateListingPhotos: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingPhoto[], any>>;
6640
+ updateListingPhotos: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingPhoto[], any, {}>>;
6445
6641
  /**
6446
6642
  * No description
6447
6643
  *
@@ -6452,7 +6648,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6452
6648
  * @secure
6453
6649
  * @response `204` `Listing` No Content
6454
6650
  */
6455
- removeListingPhoto: (listingId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
6651
+ removeListingPhoto: (listingId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
6456
6652
  /**
6457
6653
  * No description
6458
6654
  *
@@ -6470,7 +6666,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6470
6666
  pageNumber?: number;
6471
6667
  sortBy?: string;
6472
6668
  sortDirection?: string;
6473
- }, params?: RequestParams) => Promise<AxiosResponse<ListingPaginated, any>>;
6669
+ }, params?: RequestParams) => Promise<AxiosResponse<ListingPaginated, any, {}>>;
6474
6670
  /**
6475
6671
  * No description
6476
6672
  *
@@ -6481,7 +6677,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6481
6677
  * @secure
6482
6678
  * @response `201` `Listing` Created
6483
6679
  */
6484
- createListing: (data: ListingRequest, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
6680
+ createListing: (data: ListingRequest, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
6485
6681
  /**
6486
6682
  * No description
6487
6683
  *
@@ -6492,7 +6688,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6492
6688
  * @secure
6493
6689
  * @response `200` `Listing` Success
6494
6690
  */
6495
- getListingBySlug: (slug: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
6691
+ getListingBySlug: (slug: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
6496
6692
  /**
6497
6693
  * No description
6498
6694
  *
@@ -6503,7 +6699,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6503
6699
  * @secure
6504
6700
  * @response `200` `Listing` Success
6505
6701
  */
6506
- getListing: (id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
6702
+ getListing: (id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
6507
6703
  /**
6508
6704
  * No description
6509
6705
  *
@@ -6514,7 +6710,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6514
6710
  * @secure
6515
6711
  * @response `200` `Listing` Success
6516
6712
  */
6517
- replaceListing: (id: string, data: ListingRequest, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
6713
+ replaceListing: (id: string, data: ListingRequest, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
6518
6714
  /**
6519
6715
  * No description
6520
6716
  *
@@ -6525,7 +6721,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6525
6721
  * @secure
6526
6722
  * @response `204` `void` No Content
6527
6723
  */
6528
- deleteListing: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6724
+ deleteListing: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
6529
6725
  /**
6530
6726
  * No description
6531
6727
  *
@@ -6543,7 +6739,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6543
6739
  pageNumber?: number;
6544
6740
  sortBy?: string;
6545
6741
  sortDirection?: string;
6546
- }, params?: RequestParams) => Promise<AxiosResponse<ListingPaginated, any>>;
6742
+ }, params?: RequestParams) => Promise<AxiosResponse<ListingPaginated, any, {}>>;
6547
6743
  /**
6548
6744
  * No description
6549
6745
  *
@@ -6557,7 +6753,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6557
6753
  updateListingBackgroundImage: (id: string, data: {
6558
6754
  /** @format binary */
6559
6755
  file?: File;
6560
- }, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
6756
+ }, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
6561
6757
  /**
6562
6758
  * No description
6563
6759
  *
@@ -6568,7 +6764,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6568
6764
  * @secure
6569
6765
  * @response `204` `void` No Content
6570
6766
  */
6571
- deleteListingBackgroundImage: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6767
+ deleteListingBackgroundImage: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
6572
6768
  /**
6573
6769
  * No description
6574
6770
  *
@@ -6579,7 +6775,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6579
6775
  * @secure
6580
6776
  * @response `200` `File` Success
6581
6777
  */
6582
- getListingOpenHouseFlyer: (id: string, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
6778
+ getListingOpenHouseFlyer: (id: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
6583
6779
  /**
6584
6780
  * No description
6585
6781
  *
@@ -6590,7 +6786,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6590
6786
  * @secure
6591
6787
  * @response `200` `RunLOCalculation` Success
6592
6788
  */
6593
- getLoanCalculator: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any>>;
6789
+ getLoanCalculator: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any, {}>>;
6594
6790
  /**
6595
6791
  * No description
6596
6792
  *
@@ -6603,7 +6799,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6603
6799
  * @response `422` `UnprocessableEntity` Client Error
6604
6800
  * @response `423` `UnprocessableEntity` Client Error
6605
6801
  */
6606
- runLoanCalculator: (loanId: string, data: RunLOCalculationRequest, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any>>;
6802
+ runLoanCalculator: (loanId: string, data: RunLOCalculationRequest, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any, {}>>;
6607
6803
  /**
6608
6804
  * No description
6609
6805
  *
@@ -6614,7 +6810,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6614
6810
  * @secure
6615
6811
  * @response `200` `LoanComparison` Success
6616
6812
  */
6617
- getLoanComparisons: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<LoanComparison, any>>;
6813
+ getLoanComparisons: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<LoanComparison, any, {}>>;
6618
6814
  /**
6619
6815
  * No description
6620
6816
  *
@@ -6627,7 +6823,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6627
6823
  * @response `422` `UnprocessableEntity` Client Error
6628
6824
  * @response `423` `UnprocessableEntity` Client Error
6629
6825
  */
6630
- createLoanComparison: (loanId: string, index: number, data: LoanComparisonScenario, params?: RequestParams) => Promise<AxiosResponse<LoanComparisonScenario, any>>;
6826
+ createLoanComparison: (loanId: string, index: number, data: LoanComparisonScenario, params?: RequestParams) => Promise<AxiosResponse<LoanComparisonScenario, any, {}>>;
6631
6827
  /**
6632
6828
  * No description
6633
6829
  *
@@ -6638,7 +6834,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6638
6834
  * @secure
6639
6835
  * @response `204` `void` No Content
6640
6836
  */
6641
- deleteLoanComparison: (loanId: string, index: number, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6837
+ deleteLoanComparison: (loanId: string, index: number, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
6642
6838
  /**
6643
6839
  * No description
6644
6840
  *
@@ -6650,7 +6846,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6650
6846
  * @response `204` `void` No Content
6651
6847
  * @response `422` `UnprocessableEntity` Client Error
6652
6848
  */
6653
- createLoanComparisonPdf: (loanId: string, data: PostLoanComparisonPdfRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6849
+ createLoanComparisonPdf: (loanId: string, data: PostLoanComparisonPdfRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
6654
6850
  /**
6655
6851
  * No description
6656
6852
  *
@@ -6661,7 +6857,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6661
6857
  * @secure
6662
6858
  * @response `200` `(string)[]` Success
6663
6859
  */
6664
- getLoanDocumentBuckets: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<string[], any>>;
6860
+ getLoanDocumentBuckets: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<string[], any, {}>>;
6665
6861
  /**
6666
6862
  * No description
6667
6863
  *
@@ -6672,7 +6868,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6672
6868
  * @secure
6673
6869
  * @response `201` `(string)[]` Created
6674
6870
  */
6675
- createLoanDocumentBuckets: (loanId: string, data: string[], params?: RequestParams) => Promise<AxiosResponse<string[], any>>;
6871
+ createLoanDocumentBuckets: (loanId: string, data: string[], params?: RequestParams) => Promise<AxiosResponse<string[], any, {}>>;
6676
6872
  /**
6677
6873
  * No description
6678
6874
  *
@@ -6687,7 +6883,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6687
6883
  getLoanDocument: (loanId: string, documentId: string, query?: {
6688
6884
  /** @default false */
6689
6885
  preview?: boolean;
6690
- }, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any>>;
6886
+ }, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any, {}>>;
6691
6887
  /**
6692
6888
  * No description
6693
6889
  *
@@ -6705,7 +6901,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6705
6901
  pageNumber?: number;
6706
6902
  sortBy?: string;
6707
6903
  sortDirection?: string;
6708
- }, params?: RequestParams) => Promise<AxiosResponse<LoanDocumentSearchPaginated, any>>;
6904
+ }, params?: RequestParams) => Promise<AxiosResponse<LoanDocumentSearchPaginated, any, {}>>;
6709
6905
  /**
6710
6906
  * @description Returns all documents grouped by folder for sidebar display
6711
6907
  *
@@ -6716,7 +6912,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6716
6912
  * @secure
6717
6913
  * @response `200` `(DocumentFolder)[]` Success
6718
6914
  */
6719
- getLoanDocumentFolders: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentFolder[], any>>;
6915
+ getLoanDocumentFolders: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentFolder[], any, {}>>;
6720
6916
  /**
6721
6917
  * No description
6722
6918
  *
@@ -6728,7 +6924,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6728
6924
  * @response `200` `string` Success
6729
6925
  * @response `404` `ProblemDetails` Not Found
6730
6926
  */
6731
- downloadLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
6927
+ downloadLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
6732
6928
  /**
6733
6929
  * No description
6734
6930
  *
@@ -6746,7 +6942,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6746
6942
  /** @format binary */
6747
6943
  file?: File;
6748
6944
  bucket?: string;
6749
- }, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any>>;
6945
+ }, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any, {}>>;
6750
6946
  /**
6751
6947
  * No description
6752
6948
  *
@@ -6759,7 +6955,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6759
6955
  * @response `404` `ProblemDetails` Not Found
6760
6956
  * @response `422` `UnprocessableEntity` Client Error
6761
6957
  */
6762
- retryFailedLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any>>;
6958
+ retryFailedLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any, {}>>;
6763
6959
  /**
6764
6960
  * No description
6765
6961
  *
@@ -6770,7 +6966,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6770
6966
  * @secure
6771
6967
  * @response `200` `DocumentDataRequest` Success
6772
6968
  */
6773
- generateLoanDocument: (loanId: string, data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any>>;
6969
+ generateLoanDocument: (loanId: string, data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any, {}>>;
6774
6970
  /**
6775
6971
  * No description
6776
6972
  *
@@ -6783,7 +6979,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6783
6979
  * @response `400` `ProblemDetails` Bad Request
6784
6980
  * @response `404` `ProblemDetails` Not Found
6785
6981
  */
6786
- sendLoanDocuments: (loanId: string, data: SendLoanDocumentsRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6982
+ sendLoanDocuments: (loanId: string, data: SendLoanDocumentsRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
6787
6983
  /**
6788
6984
  * @description Fetches all documents from Encompass that don't exist locally and stores them in S3
6789
6985
  *
@@ -6795,7 +6991,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6795
6991
  * @response `200` `DocumentSync` Success
6796
6992
  * @response `404` `ProblemDetails` Not Found
6797
6993
  */
6798
- syncLoanDocumentsFromEncompass: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentSync, any>>;
6994
+ syncLoanDocumentsFromEncompass: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentSync, any, {}>>;
6799
6995
  /**
6800
6996
  * @description Re-attempts to push a failed document to Encompass
6801
6997
  *
@@ -6808,7 +7004,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6808
7004
  * @response `404` `ProblemDetails` Not Found
6809
7005
  * @response `423` `ProblemDetails` Client Error
6810
7006
  */
6811
- retrySyncLoanDocumentToEncompass: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7007
+ retrySyncLoanDocumentToEncompass: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
6812
7008
  /**
6813
7009
  * No description
6814
7010
  *
@@ -6819,7 +7015,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6819
7015
  * @secure
6820
7016
  * @response `201` `Draft` Created
6821
7017
  */
6822
- createLoanDraft: (data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
7018
+ createLoanDraft: (data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
6823
7019
  /**
6824
7020
  * No description
6825
7021
  *
@@ -6830,7 +7026,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6830
7026
  * @secure
6831
7027
  * @response `200` `(DraftContent)[]` Success
6832
7028
  */
6833
- getLoanDrafts: (params?: RequestParams) => Promise<AxiosResponse<DraftContent[], any>>;
7029
+ getLoanDrafts: (params?: RequestParams) => Promise<AxiosResponse<DraftContent[], any, {}>>;
6834
7030
  /**
6835
7031
  * No description
6836
7032
  *
@@ -6841,7 +7037,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6841
7037
  * @secure
6842
7038
  * @response `200` `DraftContent` Success
6843
7039
  */
6844
- getLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<DraftContent, any>>;
7040
+ getLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<DraftContent, any, {}>>;
6845
7041
  /**
6846
7042
  * No description
6847
7043
  *
@@ -6852,7 +7048,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6852
7048
  * @secure
6853
7049
  * @response `200` `Draft` Success
6854
7050
  */
6855
- replaceLoanDraft: (draftId: string, data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
7051
+ replaceLoanDraft: (draftId: string, data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
6856
7052
  /**
6857
7053
  * No description
6858
7054
  *
@@ -6863,7 +7059,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6863
7059
  * @secure
6864
7060
  * @response `204` `void` No Content
6865
7061
  */
6866
- deleteLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7062
+ deleteLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
6867
7063
  /**
6868
7064
  * No description
6869
7065
  *
@@ -6881,7 +7077,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6881
7077
  pageNumber?: number;
6882
7078
  sortBy?: string;
6883
7079
  sortDirection?: string;
6884
- }, params?: RequestParams) => Promise<AxiosResponse<DraftContentPaginated, any>>;
7080
+ }, params?: RequestParams) => Promise<AxiosResponse<DraftContentPaginated, any, {}>>;
6885
7081
  /**
6886
7082
  * No description
6887
7083
  *
@@ -6892,7 +7088,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6892
7088
  * @secure
6893
7089
  * @response `200` `Draft` Success
6894
7090
  */
6895
- reassignLoanOfficer: (draftId: string, data: DraftLoanOfficerReassignRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
7091
+ reassignLoanOfficer: (draftId: string, data: DraftLoanOfficerReassignRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
6896
7092
  /**
6897
7093
  * No description
6898
7094
  *
@@ -6903,7 +7099,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6903
7099
  * @secure
6904
7100
  * @response `200` `Draft` Success
6905
7101
  */
6906
- restoreLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
7102
+ restoreLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
6907
7103
  /**
6908
7104
  * No description
6909
7105
  *
@@ -6923,7 +7119,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6923
7119
  pageNumber?: number;
6924
7120
  sortBy?: string;
6925
7121
  sortDirection?: string;
6926
- }, params?: RequestParams) => Promise<AxiosResponse<LoanImportPaginated, any>>;
7122
+ }, params?: RequestParams) => Promise<AxiosResponse<LoanImportPaginated, any, {}>>;
6927
7123
  /**
6928
7124
  * No description
6929
7125
  *
@@ -6934,7 +7130,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6934
7130
  * @secure
6935
7131
  * @response `201` `LoanImport` Created
6936
7132
  */
6937
- createLoanImport: (data: CreateLoanImportRequest, params?: RequestParams) => Promise<AxiosResponse<LoanImport, any>>;
7133
+ createLoanImport: (data: CreateLoanImportRequest, params?: RequestParams) => Promise<AxiosResponse<LoanImport, any, {}>>;
6938
7134
  /**
6939
7135
  * No description
6940
7136
  *
@@ -6945,7 +7141,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6945
7141
  * @secure
6946
7142
  * @response `200` `LoanImport` Success
6947
7143
  */
6948
- getLoanImport: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanImport, any>>;
7144
+ getLoanImport: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanImport, any, {}>>;
6949
7145
  /**
6950
7146
  * No description
6951
7147
  *
@@ -6963,7 +7159,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6963
7159
  pageNumber?: number;
6964
7160
  sortBy?: string;
6965
7161
  sortDirection?: string;
6966
- }, params?: RequestParams) => Promise<AxiosResponse<LoanImportLogPaginated, any>>;
7162
+ }, params?: RequestParams) => Promise<AxiosResponse<LoanImportLogPaginated, any, {}>>;
6967
7163
  /**
6968
7164
  * No description
6969
7165
  *
@@ -6975,7 +7171,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6975
7171
  * @response `200` `(Invite)[]` Success
6976
7172
  * @response `404` `ProblemDetails` Not Found
6977
7173
  */
6978
- getLoanInvites: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Invite[], any>>;
7174
+ getLoanInvites: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Invite[], any, {}>>;
6979
7175
  /**
6980
7176
  * No description
6981
7177
  *
@@ -6987,7 +7183,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6987
7183
  * @response `200` `(Invite)[]` Success
6988
7184
  * @response `404` `ProblemDetails` Not Found
6989
7185
  */
6990
- inviteLoanContacts: (loanId: string, data: string[], params?: RequestParams) => Promise<AxiosResponse<Invite[], any>>;
7186
+ inviteLoanContacts: (loanId: string, data: string[], params?: RequestParams) => Promise<AxiosResponse<Invite[], any, {}>>;
6991
7187
  /**
6992
7188
  * No description
6993
7189
  *
@@ -7005,7 +7201,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7005
7201
  pageNumber?: number;
7006
7202
  sortBy?: string;
7007
7203
  sortDirection?: string;
7008
- }, params?: RequestParams) => Promise<AxiosResponse<LoanLogPaginated, any>>;
7204
+ }, params?: RequestParams) => Promise<AxiosResponse<LoanLogPaginated, any, {}>>;
7009
7205
  /**
7010
7206
  * No description
7011
7207
  *
@@ -7024,7 +7220,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7024
7220
  pageNumber?: number;
7025
7221
  sortBy?: string;
7026
7222
  sortDirection?: string;
7027
- }, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any>>;
7223
+ }, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any, {}>>;
7028
7224
  /**
7029
7225
  * No description
7030
7226
  *
@@ -7042,7 +7238,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7042
7238
  pageNumber?: number;
7043
7239
  sortBy?: string;
7044
7240
  sortDirection?: string;
7045
- }, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any>>;
7241
+ }, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any, {}>>;
7046
7242
  /**
7047
7243
  * No description
7048
7244
  *
@@ -7053,7 +7249,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7053
7249
  * @secure
7054
7250
  * @response `200` `BranchUser` Success
7055
7251
  */
7056
- getLoanOfficer: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any>>;
7252
+ getLoanOfficer: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any, {}>>;
7057
7253
  /**
7058
7254
  * No description
7059
7255
  *
@@ -7065,7 +7261,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7065
7261
  * @response `200` `SiteConfiguration` Success
7066
7262
  * @response `422` `UnprocessableEntity` Client Error
7067
7263
  */
7068
- createLoanOfficerSiteConfiguration: (loanOfficerId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
7264
+ createLoanOfficerSiteConfiguration: (loanOfficerId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
7069
7265
  /**
7070
7266
  * No description
7071
7267
  *
@@ -7076,7 +7272,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7076
7272
  * @secure
7077
7273
  * @response `200` `SiteConfigurationWithInherited` Success
7078
7274
  */
7079
- getLoanOfficerSiteConfiguration: (loanOfficerId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
7275
+ getLoanOfficerSiteConfiguration: (loanOfficerId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any, {}>>;
7080
7276
  /**
7081
7277
  * No description
7082
7278
  *
@@ -7090,7 +7286,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7090
7286
  */
7091
7287
  replaceLoanOfficerSiteConfiguration: (loanOfficerId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
7092
7288
  applyToChildren?: boolean;
7093
- }, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
7289
+ }, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
7094
7290
  /**
7095
7291
  * No description
7096
7292
  *
@@ -7108,7 +7304,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7108
7304
  pageNumber?: number;
7109
7305
  sortBy?: string;
7110
7306
  sortDirection?: string;
7111
- }, params?: RequestParams) => Promise<AxiosResponse<LoanQueuePaginated, any>>;
7307
+ }, params?: RequestParams) => Promise<AxiosResponse<LoanQueuePaginated, any, {}>>;
7112
7308
  /**
7113
7309
  * No description
7114
7310
  *
@@ -7120,7 +7316,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7120
7316
  * @response `200` `any` Success
7121
7317
  * @response `404` `ProblemDetails` Not Found
7122
7318
  */
7123
- getLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<any, any>>;
7319
+ getLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
7124
7320
  /**
7125
7321
  * No description
7126
7322
  *
@@ -7132,7 +7328,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7132
7328
  * @response `200` `LoanQueueWithData` Success
7133
7329
  * @response `404` `ProblemDetails` Not Found
7134
7330
  */
7135
- replaceLoanQueue: (loanQueueId: string, data: UpdateLoanQueueRequest, params?: RequestParams) => Promise<AxiosResponse<LoanQueueWithData, any>>;
7331
+ replaceLoanQueue: (loanQueueId: string, data: UpdateLoanQueueRequest, params?: RequestParams) => Promise<AxiosResponse<LoanQueueWithData, any, {}>>;
7136
7332
  /**
7137
7333
  * No description
7138
7334
  *
@@ -7144,7 +7340,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7144
7340
  * @response `204` `void` No Content
7145
7341
  * @response `404` `ProblemDetails` Not Found
7146
7342
  */
7147
- deleteLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7343
+ deleteLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
7148
7344
  /**
7149
7345
  * No description
7150
7346
  *
@@ -7156,7 +7352,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7156
7352
  * @response `204` `void` No Content
7157
7353
  * @response `404` `ProblemDetails` Not Found
7158
7354
  */
7159
- retryLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7355
+ retryLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
7160
7356
  /**
7161
7357
  * No description
7162
7358
  *
@@ -7168,7 +7364,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7168
7364
  * @response `200` `Loan` Success
7169
7365
  * @response `404` `ProblemDetails` Not Found
7170
7366
  */
7171
- getLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any>>;
7367
+ getLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any, {}>>;
7172
7368
  /**
7173
7369
  * No description
7174
7370
  *
@@ -7180,7 +7376,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7180
7376
  * @secure
7181
7377
  * @response `200` `GetApplications` Success
7182
7378
  */
7183
- getLoans: (params?: RequestParams) => Promise<AxiosResponse<GetApplications, any>>;
7379
+ getLoans: (params?: RequestParams) => Promise<AxiosResponse<GetApplications, any, {}>>;
7184
7380
  /**
7185
7381
  * No description
7186
7382
  *
@@ -7194,7 +7390,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7194
7390
  * @response `401` `ProblemDetails` Unauthorized
7195
7391
  * @response `403` `ProblemDetails` Forbidden
7196
7392
  */
7197
- createLoanv3: (data: LoanApplicationRequest, params?: RequestParams) => Promise<AxiosResponse<LoanApplication, any>>;
7393
+ createLoanv3: (data: LoanApplicationRequest, params?: RequestParams) => Promise<AxiosResponse<LoanApplication, any, {}>>;
7198
7394
  /**
7199
7395
  * No description
7200
7396
  *
@@ -7212,7 +7408,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7212
7408
  pageNumber?: number;
7213
7409
  sortBy?: string;
7214
7410
  sortDirection?: string;
7215
- }, params?: RequestParams) => Promise<AxiosResponse<LoanListPaginated, any>>;
7411
+ }, params?: RequestParams) => Promise<AxiosResponse<LoanListPaginated, any, {}>>;
7216
7412
  /**
7217
7413
  * No description
7218
7414
  *
@@ -7228,7 +7424,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7228
7424
  * @response `404` `ProblemDetails` Not Found
7229
7425
  * @response `409` `any` Conflict
7230
7426
  */
7231
- updateLoan: (loanId: string, data: any, params?: RequestParams) => Promise<AxiosResponse<Loan, any>>;
7427
+ updateLoan: (loanId: string, data: any, params?: RequestParams) => Promise<AxiosResponse<Loan, any, {}>>;
7232
7428
  /**
7233
7429
  * No description
7234
7430
  *
@@ -7241,7 +7437,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7241
7437
  * @response `400` `ProblemDetails` Bad Request
7242
7438
  * @response `404` `ProblemDetails` Not Found
7243
7439
  */
7244
- completeBorrowerApplication: (loanId: string, borrowerId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7440
+ completeBorrowerApplication: (loanId: string, borrowerId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
7245
7441
  /**
7246
7442
  * No description
7247
7443
  *
@@ -7252,7 +7448,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7252
7448
  * @secure
7253
7449
  * @response `200` `Loan` Success
7254
7450
  */
7255
- importLoanFromLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any>>;
7451
+ importLoanFromLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any, {}>>;
7256
7452
  /**
7257
7453
  * No description
7258
7454
  *
@@ -7271,7 +7467,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7271
7467
  pageNumber?: number;
7272
7468
  sortBy?: string;
7273
7469
  sortDirection?: string;
7274
- }, params?: RequestParams) => Promise<AxiosResponse<TaskCommentPaginated, any>>;
7470
+ }, params?: RequestParams) => Promise<AxiosResponse<TaskCommentPaginated, any, {}>>;
7275
7471
  /**
7276
7472
  * No description
7277
7473
  *
@@ -7283,7 +7479,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7283
7479
  * @response `200` `TaskComment` Success
7284
7480
  * @response `404` `ProblemDetails` Not Found
7285
7481
  */
7286
- getLoanTaskComment: (id: string, loanId: string, userLoanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any>>;
7482
+ getLoanTaskComment: (id: string, loanId: string, userLoanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any, {}>>;
7287
7483
  /**
7288
7484
  * No description
7289
7485
  *
@@ -7295,7 +7491,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7295
7491
  * @response `201` `TaskComment` Created
7296
7492
  * @response `404` `ProblemDetails` Not Found
7297
7493
  */
7298
- createLoanTaskComment: (loanId: string, userLoanTaskId: string, data: TaskCommentRequest, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any>>;
7494
+ createLoanTaskComment: (loanId: string, userLoanTaskId: string, data: TaskCommentRequest, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any, {}>>;
7299
7495
  /**
7300
7496
  * No description
7301
7497
  *
@@ -7307,7 +7503,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7307
7503
  * @response `200` `TaskComment` Success
7308
7504
  * @response `404` `ProblemDetails` Not Found
7309
7505
  */
7310
- replaceLoanTaskComment: (loanId: string, userLoanTaskId: string, commentId: string, data: TaskCommentRequest, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any>>;
7506
+ replaceLoanTaskComment: (loanId: string, userLoanTaskId: string, commentId: string, data: TaskCommentRequest, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any, {}>>;
7311
7507
  /**
7312
7508
  * No description
7313
7509
  *
@@ -7319,7 +7515,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7319
7515
  * @response `204` `void` No Content
7320
7516
  * @response `404` `ProblemDetails` Not Found
7321
7517
  */
7322
- deleteLoanTaskComment: (loanId: string, userLoanTaskId: string, commentId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7518
+ deleteLoanTaskComment: (loanId: string, userLoanTaskId: string, commentId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
7323
7519
  /**
7324
7520
  * No description
7325
7521
  *
@@ -7337,7 +7533,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7337
7533
  /** @format binary */
7338
7534
  file?: File;
7339
7535
  bucket?: string;
7340
- }, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
7536
+ }, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
7341
7537
  /**
7342
7538
  * No description
7343
7539
  *
@@ -7349,7 +7545,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7349
7545
  * @response `204` `UserLoanTask` No Content
7350
7546
  * @response `422` `UnprocessableEntity` Client Error
7351
7547
  */
7352
- createLoanTaskDocumentBucket: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
7548
+ createLoanTaskDocumentBucket: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
7353
7549
  /**
7354
7550
  * No description
7355
7551
  *
@@ -7361,7 +7557,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7361
7557
  * @response `200` `(UserLoanTask)[]` Success
7362
7558
  * @response `404` `ProblemDetails` Not Found
7363
7559
  */
7364
- getLoanTasks: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any>>;
7560
+ getLoanTasks: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any, {}>>;
7365
7561
  /**
7366
7562
  * No description
7367
7563
  *
@@ -7373,7 +7569,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7373
7569
  * @response `200` `UserLoanTask` Success
7374
7570
  * @response `404` `ProblemDetails` Not Found
7375
7571
  */
7376
- getLoanTask: (id: string, loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
7572
+ getLoanTask: (id: string, loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
7377
7573
  /**
7378
7574
  * @description Get the difference between the current loan tasks and the tasks generated by business rules
7379
7575
  *
@@ -7385,7 +7581,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7385
7581
  * @response `200` `(UserLoanTask)[]` Success
7386
7582
  * @response `404` `ProblemDetails` Not Found
7387
7583
  */
7388
- getLoanTaskDifference: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any>>;
7584
+ getLoanTaskDifference: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any, {}>>;
7389
7585
  /**
7390
7586
  * No description
7391
7587
  *
@@ -7397,7 +7593,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7397
7593
  * @response `201` `UserLoanTask` Created
7398
7594
  * @response `404` `ProblemDetails` Not Found
7399
7595
  */
7400
- createLoanTask: (loanId: string, taskId: string, data: UserLoanTaskRequest, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
7596
+ createLoanTask: (loanId: string, taskId: string, data: UserLoanTaskRequest, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
7401
7597
  /**
7402
7598
  * No description
7403
7599
  *
@@ -7409,7 +7605,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7409
7605
  * @response `201` `(UserLoanTask)[]` Created
7410
7606
  * @response `404` `ProblemDetails` Not Found
7411
7607
  */
7412
- importLoanTask: (loanId: string, data: ImportUserLoanTaskRequest[], params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any>>;
7608
+ importLoanTask: (loanId: string, data: ImportUserLoanTaskRequest[], params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any, {}>>;
7413
7609
  /**
7414
7610
  * No description
7415
7611
  *
@@ -7421,7 +7617,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7421
7617
  * @response `200` `UserLoanTask` Success
7422
7618
  * @response `404` `ProblemDetails` Not Found
7423
7619
  */
7424
- replaceLoanTask: (loanId: string, userLoanTaskId: string, data: UserLoanTaskUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
7620
+ replaceLoanTask: (loanId: string, userLoanTaskId: string, data: UserLoanTaskUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
7425
7621
  /**
7426
7622
  * No description
7427
7623
  *
@@ -7433,7 +7629,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7433
7629
  * @response `204` `void` No Content
7434
7630
  * @response `404` `ProblemDetails` Not Found
7435
7631
  */
7436
- deleteLoanTask: (loanId: string, userLoanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7632
+ deleteLoanTask: (loanId: string, userLoanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
7437
7633
  /**
7438
7634
  * No description
7439
7635
  *
@@ -7445,7 +7641,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7445
7641
  * @response `204` `void` No Content
7446
7642
  * @response `404` `ProblemDetails` Not Found
7447
7643
  */
7448
- sendOutstandingLoanTaskNotification: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7644
+ sendOutstandingLoanTaskNotification: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
7449
7645
  /**
7450
7646
  * No description
7451
7647
  *
@@ -7458,7 +7654,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7458
7654
  * @response `404` `ProblemDetails` Not Found
7459
7655
  * @response `422` `UnprocessableEntity` Client Error
7460
7656
  */
7461
- createLoanTaskVerification: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
7657
+ createLoanTaskVerification: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
7462
7658
  /**
7463
7659
  * No description
7464
7660
  *
@@ -7469,7 +7665,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7469
7665
  * @secure
7470
7666
  * @response `200` `(UserLoanConsent)[]` Success
7471
7667
  */
7472
- getLoanUserConsents: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanConsent[], any>>;
7668
+ getLoanUserConsents: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanConsent[], any, {}>>;
7473
7669
  /**
7474
7670
  * No description
7475
7671
  *
@@ -7480,7 +7676,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7480
7676
  * @secure
7481
7677
  * @response `200` `LoanUser` Success
7482
7678
  */
7483
- getLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any>>;
7679
+ getLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any, {}>>;
7484
7680
  /**
7485
7681
  * No description
7486
7682
  *
@@ -7491,7 +7687,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7491
7687
  * @secure
7492
7688
  * @response `201` `LoanUser` Created
7493
7689
  */
7494
- addLoanUser: (loanId: string, userId: string, data: CreateUserLoan, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any>>;
7690
+ addLoanUser: (loanId: string, userId: string, data: CreateUserLoan, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any, {}>>;
7495
7691
  /**
7496
7692
  * No description
7497
7693
  *
@@ -7502,7 +7698,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7502
7698
  * @secure
7503
7699
  * @response `204` `LoanUser` No Content
7504
7700
  */
7505
- removeLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any>>;
7701
+ removeLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any, {}>>;
7506
7702
  /**
7507
7703
  * No description
7508
7704
  *
@@ -7513,7 +7709,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7513
7709
  * @secure
7514
7710
  * @response `204` `void` No Content
7515
7711
  */
7516
- sendLoanUserInviteReminderNotification: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7712
+ sendLoanUserInviteReminderNotification: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
7517
7713
  /**
7518
7714
  * No description
7519
7715
  *
@@ -7524,7 +7720,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7524
7720
  * @secure
7525
7721
  * @response `200` `(MilestoneConfiguration)[]` Success
7526
7722
  */
7527
- getMilestones: (params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration[], any>>;
7723
+ getMilestones: (params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration[], any, {}>>;
7528
7724
  /**
7529
7725
  * No description
7530
7726
  *
@@ -7536,7 +7732,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7536
7732
  * @response `201` `MilestoneConfiguration` Created
7537
7733
  * @response `422` `UnprocessableEntity` Client Error
7538
7734
  */
7539
- createMilestone: (data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any>>;
7735
+ createMilestone: (data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any, {}>>;
7540
7736
  /**
7541
7737
  * No description
7542
7738
  *
@@ -7548,7 +7744,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7548
7744
  * @response `200` `MilestoneConfiguration` Success
7549
7745
  * @response `404` `Error` Not Found
7550
7746
  */
7551
- getMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any>>;
7747
+ getMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any, {}>>;
7552
7748
  /**
7553
7749
  * No description
7554
7750
  *
@@ -7561,7 +7757,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7561
7757
  * @response `404` `Error` Not Found
7562
7758
  * @response `422` `UnprocessableEntity` Client Error
7563
7759
  */
7564
- replaceMilestone: (id: string, data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any>>;
7760
+ replaceMilestone: (id: string, data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any, {}>>;
7565
7761
  /**
7566
7762
  * No description
7567
7763
  *
@@ -7573,7 +7769,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7573
7769
  * @response `204` `void` No Content
7574
7770
  * @response `404` `Error` Not Found
7575
7771
  */
7576
- deleteMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7772
+ deleteMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
7577
7773
  /**
7578
7774
  * No description
7579
7775
  *
@@ -7585,7 +7781,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7585
7781
  * @response `200` `MonthlyPaymentCalculator` Success
7586
7782
  * @response `422` `ProblemDetails` Client Error
7587
7783
  */
7588
- calculateMortgageMonthlyPayment: (data: MonthlyPaymentCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<MonthlyPaymentCalculator, any>>;
7784
+ calculateMortgageMonthlyPayment: (data: MonthlyPaymentCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<MonthlyPaymentCalculator, any, {}>>;
7589
7785
  /**
7590
7786
  * No description
7591
7787
  *
@@ -7597,7 +7793,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7597
7793
  * @response `200` `AffordabilityCalculator` Success
7598
7794
  * @response `422` `ProblemDetails` Client Error
7599
7795
  */
7600
- calculateMortgageAffordability: (data: AffordabilityCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<AffordabilityCalculator, any>>;
7796
+ calculateMortgageAffordability: (data: AffordabilityCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<AffordabilityCalculator, any, {}>>;
7601
7797
  /**
7602
7798
  * No description
7603
7799
  *
@@ -7609,7 +7805,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7609
7805
  * @response `200` `LoanComparisonCalculator` Success
7610
7806
  * @response `422` `ProblemDetails` Client Error
7611
7807
  */
7612
- calculateMortgageLoanComparison: (data: LoanComparisonCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<LoanComparisonCalculator, any>>;
7808
+ calculateMortgageLoanComparison: (data: LoanComparisonCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<LoanComparisonCalculator, any, {}>>;
7613
7809
  /**
7614
7810
  * No description
7615
7811
  *
@@ -7621,7 +7817,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7621
7817
  * @response `200` `RefinanceCalculator` Success
7622
7818
  * @response `422` `ProblemDetails` Client Error
7623
7819
  */
7624
- calculateMortgageRefinance: (data: RefinanceCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<RefinanceCalculator, any>>;
7820
+ calculateMortgageRefinance: (data: RefinanceCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<RefinanceCalculator, any, {}>>;
7625
7821
  /**
7626
7822
  * No description
7627
7823
  *
@@ -7633,7 +7829,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7633
7829
  * @response `200` `void` Success
7634
7830
  * @response `422` `UnprocessableEntity` Client Error
7635
7831
  */
7636
- sendNotificationForLoan: (data: SendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7832
+ sendNotificationForLoan: (data: SendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
7637
7833
  /**
7638
7834
  * No description
7639
7835
  *
@@ -7645,7 +7841,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7645
7841
  * @response `200` `void` Success
7646
7842
  * @response `422` `UnprocessableEntity` Client Error
7647
7843
  */
7648
- sendTestNotificationForLoan: (data: TestSendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7844
+ sendTestNotificationForLoan: (data: TestSendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
7649
7845
  /**
7650
7846
  * No description
7651
7847
  *
@@ -7658,7 +7854,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7658
7854
  */
7659
7855
  getNotificationTemplates: (query?: {
7660
7856
  showAll?: boolean;
7661
- }, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateBase[], any>>;
7857
+ }, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateBase[], any, {}>>;
7662
7858
  /**
7663
7859
  * No description
7664
7860
  *
@@ -7670,7 +7866,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7670
7866
  * @response `201` `NotificationTemplate` Created
7671
7867
  * @response `422` `UnprocessableEntity` Client Error
7672
7868
  */
7673
- createNotificationTemplate: (data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
7869
+ createNotificationTemplate: (data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any, {}>>;
7674
7870
  /**
7675
7871
  * No description
7676
7872
  *
@@ -7681,7 +7877,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7681
7877
  * @secure
7682
7878
  * @response `200` `NotificationTemplate` Success
7683
7879
  */
7684
- getNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
7880
+ getNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any, {}>>;
7685
7881
  /**
7686
7882
  * No description
7687
7883
  *
@@ -7693,7 +7889,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7693
7889
  * @response `200` `NotificationTemplate` Success
7694
7890
  * @response `422` `UnprocessableEntity` Client Error
7695
7891
  */
7696
- replaceNotificationTemplate: (id: string, data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
7892
+ replaceNotificationTemplate: (id: string, data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any, {}>>;
7697
7893
  /**
7698
7894
  * No description
7699
7895
  *
@@ -7704,7 +7900,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7704
7900
  * @secure
7705
7901
  * @response `204` `void` No Content
7706
7902
  */
7707
- deleteNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7903
+ deleteNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
7708
7904
  /**
7709
7905
  * No description
7710
7906
  *
@@ -7715,7 +7911,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7715
7911
  * @secure
7716
7912
  * @response `200` `NotificationTemplate` Success
7717
7913
  */
7718
- restoreNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
7914
+ restoreNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any, {}>>;
7719
7915
  /**
7720
7916
  * No description
7721
7917
  *
@@ -7726,7 +7922,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7726
7922
  * @secure
7727
7923
  * @response `200` `(NotificationTemplateVersion)[]` Success
7728
7924
  */
7729
- getNotificationTemplateVersions: (notificationId: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion[], any>>;
7925
+ getNotificationTemplateVersions: (notificationId: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion[], any, {}>>;
7730
7926
  /**
7731
7927
  * No description
7732
7928
  *
@@ -7737,7 +7933,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7737
7933
  * @secure
7738
7934
  * @response `200` `NotificationTemplateVersion` Success
7739
7935
  */
7740
- createNotificationTemplateVersion: (notificationId: string, data: NotificationTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
7936
+ createNotificationTemplateVersion: (notificationId: string, data: NotificationTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any, {}>>;
7741
7937
  /**
7742
7938
  * No description
7743
7939
  *
@@ -7748,7 +7944,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7748
7944
  * @secure
7749
7945
  * @response `200` `NotificationTemplateVersion` Success
7750
7946
  */
7751
- getNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
7947
+ getNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any, {}>>;
7752
7948
  /**
7753
7949
  * No description
7754
7950
  *
@@ -7759,7 +7955,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7759
7955
  * @secure
7760
7956
  * @response `200` `NotificationTemplateVersion` Success
7761
7957
  */
7762
- replaceNotificationTemplateVersion: (notificationId: string, id: string, data: NotificationTemplateVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
7958
+ replaceNotificationTemplateVersion: (notificationId: string, id: string, data: NotificationTemplateVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any, {}>>;
7763
7959
  /**
7764
7960
  * No description
7765
7961
  *
@@ -7770,7 +7966,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7770
7966
  * @secure
7771
7967
  * @response `200` `NotificationTemplateVersion` Success
7772
7968
  */
7773
- deleteNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
7969
+ deleteNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any, {}>>;
7774
7970
  /**
7775
7971
  * No description
7776
7972
  *
@@ -7784,14 +7980,14 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7784
7980
  getPartners: (query?: {
7785
7981
  showAll?: boolean;
7786
7982
  /** @default "Realtor" */
7787
- role?: "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "BranchManager" | "SystemAdmin";
7983
+ role?: GetPartnersParamsRoleEnum;
7788
7984
  /** @format int32 */
7789
7985
  pageSize?: number;
7790
7986
  /** @format int32 */
7791
7987
  pageNumber?: number;
7792
7988
  sortBy?: string;
7793
7989
  sortDirection?: string;
7794
- }, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any>>;
7990
+ }, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any, {}>>;
7795
7991
  /**
7796
7992
  * No description
7797
7993
  *
@@ -7809,7 +8005,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7809
8005
  pageNumber?: number;
7810
8006
  sortBy?: string;
7811
8007
  sortDirection?: string;
7812
- }, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any>>;
8008
+ }, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any, {}>>;
7813
8009
  /**
7814
8010
  * No description
7815
8011
  *
@@ -7820,7 +8016,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7820
8016
  * @secure
7821
8017
  * @response `200` `BranchUser` Success
7822
8018
  */
7823
- getPartner: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any>>;
8019
+ getPartner: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any, {}>>;
7824
8020
  /**
7825
8021
  * No description
7826
8022
  *
@@ -7832,7 +8028,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7832
8028
  * @response `200` `SiteConfiguration` Success
7833
8029
  * @response `422` `UnprocessableEntity` Client Error
7834
8030
  */
7835
- createPartnerSiteConfiguration: (realtorId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
8031
+ createPartnerSiteConfiguration: (realtorId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
7836
8032
  /**
7837
8033
  * No description
7838
8034
  *
@@ -7843,7 +8039,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7843
8039
  * @secure
7844
8040
  * @response `200` `SiteConfigurationWithInherited` Success
7845
8041
  */
7846
- getPartnerSiteConfiguration: (realtorId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
8042
+ getPartnerSiteConfiguration: (realtorId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any, {}>>;
7847
8043
  /**
7848
8044
  * No description
7849
8045
  *
@@ -7857,7 +8053,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7857
8053
  */
7858
8054
  replacePartnerSiteConfiguration: (realtorId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
7859
8055
  applyToChildren?: boolean;
7860
- }, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
8056
+ }, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
7861
8057
  /**
7862
8058
  * No description
7863
8059
  *
@@ -7868,7 +8064,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7868
8064
  * @secure
7869
8065
  * @response `200` `SiteConfiguration` Success
7870
8066
  */
7871
- getSiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
8067
+ getSiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
7872
8068
  /**
7873
8069
  * No description
7874
8070
  *
@@ -7881,7 +8077,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7881
8077
  * @response `200` `SiteConfigurationByUrl` Success
7882
8078
  * @response `422` `UnprocessableEntity` Client Error
7883
8079
  */
7884
- searchSiteConfigurationByUrl: (data: GetSiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationByUrl, any>>;
8080
+ searchSiteConfigurationByUrl: (data: GetSiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationByUrl, any, {}>>;
7885
8081
  /**
7886
8082
  * No description
7887
8083
  *
@@ -7895,7 +8091,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7895
8091
  */
7896
8092
  getSiteConfigurationByUrl: (query?: {
7897
8093
  url?: string;
7898
- }, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationByUrl, any>>;
8094
+ }, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationByUrl, any, {}>>;
7899
8095
  /**
7900
8096
  * No description
7901
8097
  *
@@ -7908,7 +8104,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7908
8104
  * @response `200` `SiteConfiguration` Success
7909
8105
  * @response `422` `UnprocessableEntity` Client Error
7910
8106
  */
7911
- searchSiteConfigurationByLoanOfficerUser: (data: GetSiteConfigurationByLOUserIDRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
8107
+ searchSiteConfigurationByLoanOfficerUser: (data: GetSiteConfigurationByLOUserIDRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
7912
8108
  /**
7913
8109
  * No description
7914
8110
  *
@@ -7920,7 +8116,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7920
8116
  * @response `200` `SiteConfiguration` Success
7921
8117
  * @response `422` `UnprocessableEntity` Client Error
7922
8118
  */
7923
- getSiteConfigurationByLoanOfficerUser: (loUserId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
8119
+ getSiteConfigurationByLoanOfficerUser: (loUserId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
7924
8120
  /**
7925
8121
  * No description
7926
8122
  *
@@ -7939,7 +8135,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7939
8135
  pageNumber?: number;
7940
8136
  sortBy?: string;
7941
8137
  sortDirection?: string;
7942
- }, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationSummaryPaginated, any>>;
8138
+ }, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationSummaryPaginated, any, {}>>;
7943
8139
  /**
7944
8140
  * No description
7945
8141
  *
@@ -7950,7 +8146,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7950
8146
  * @secure
7951
8147
  * @response `200` `(AdminAccessGetForms)[]` Success
7952
8148
  */
7953
- getFormsBySiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms[], any>>;
8149
+ getFormsBySiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms[], any, {}>>;
7954
8150
  /**
7955
8151
  * No description
7956
8152
  *
@@ -7962,7 +8158,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7962
8158
  * @response `200` `File` Success
7963
8159
  * @response `404` `ProblemDetails` Not Found
7964
8160
  */
7965
- getSamlMetadata: (sSoIntegration: "ConsumerConnect" | "TheBigPOS" | "POSF", ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
8161
+ getSamlMetadata: (sSoIntegration: GetSamlMetadataParamsEnum, ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
7966
8162
  /**
7967
8163
  * No description
7968
8164
  *
@@ -7973,7 +8169,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7973
8169
  * @secure
7974
8170
  * @response `200` `File` Success
7975
8171
  */
7976
- createOrReplaceSamlMetadata: (sSoIntegration: "ConsumerConnect" | "TheBigPOS" | "POSF", ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
8172
+ createOrReplaceSamlMetadata: (sSoIntegration: CreateOrReplaceSamlMetadataParamsEnum, ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
7977
8173
  /**
7978
8174
  * No description
7979
8175
  *
@@ -7984,7 +8180,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7984
8180
  * @secure
7985
8181
  * @response `200` `(SiteConfigurationForm)[]` Success
7986
8182
  */
7987
- getWorkflowSiteConfigurations: (workflowId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm[], any>>;
8183
+ getWorkflowSiteConfigurations: (workflowId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm[], any, {}>>;
7988
8184
  /**
7989
8185
  * No description
7990
8186
  *
@@ -7996,7 +8192,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7996
8192
  * @response `200` `SiteConfigurationForm` Success
7997
8193
  * @response `404` `ProblemDetails` Not Found
7998
8194
  */
7999
- getWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any>>;
8195
+ getWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any, {}>>;
8000
8196
  /**
8001
8197
  * No description
8002
8198
  *
@@ -8009,7 +8205,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8009
8205
  * @response `409` `ProblemDetails` Conflict
8010
8206
  * @response `422` `UnprocessableEntity` Client Error
8011
8207
  */
8012
- createWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any>>;
8208
+ createWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any, {}>>;
8013
8209
  /**
8014
8210
  * No description
8015
8211
  *
@@ -8020,7 +8216,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8020
8216
  * @secure
8021
8217
  * @response `204` `void` No Content
8022
8218
  */
8023
- deleteWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8219
+ deleteWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8024
8220
  /**
8025
8221
  * No description
8026
8222
  *
@@ -8031,7 +8227,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8031
8227
  * @secure
8032
8228
  * @response `200` `GetForm` Success
8033
8229
  */
8034
- getFormBySiteConfigurationSlug: (data: GetSiteFormRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any>>;
8230
+ getFormBySiteConfigurationSlug: (data: GetSiteFormRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any, {}>>;
8035
8231
  /**
8036
8232
  * No description
8037
8233
  *
@@ -8045,7 +8241,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8045
8241
  getSurveysByUsers: (query?: {
8046
8242
  /** @format int32 */
8047
8243
  limit?: number;
8048
- }, params?: RequestParams) => Promise<AxiosResponse<SocialSurveyRecord[], any>>;
8244
+ }, params?: RequestParams) => Promise<AxiosResponse<SocialSurveyRecord[], any, {}>>;
8049
8245
  /**
8050
8246
  * No description
8051
8247
  *
@@ -8057,7 +8253,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8057
8253
  * @response `200` `(SocialSurveyRecord)[]` Success
8058
8254
  * @response `422` `UnprocessableEntity` Client Error
8059
8255
  */
8060
- getSurveysByUser: (data: SurveyEmailRequest, params?: RequestParams) => Promise<AxiosResponse<SocialSurveyRecord[], any>>;
8256
+ getSurveysByUser: (data: SurveyEmailRequest, params?: RequestParams) => Promise<AxiosResponse<SocialSurveyRecord[], any, {}>>;
8061
8257
  /**
8062
8258
  * No description
8063
8259
  *
@@ -8076,7 +8272,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8076
8272
  pageNumber?: number;
8077
8273
  sortBy?: string;
8078
8274
  sortDirection?: string;
8079
- }, params?: RequestParams) => Promise<AxiosResponse<Task, any>>;
8275
+ }, params?: RequestParams) => Promise<AxiosResponse<Task, any, {}>>;
8080
8276
  /**
8081
8277
  * No description
8082
8278
  *
@@ -8087,7 +8283,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8087
8283
  * @secure
8088
8284
  * @response `201` `Task` Created
8089
8285
  */
8090
- createTask: (data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<Task, any>>;
8286
+ createTask: (data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<Task, any, {}>>;
8091
8287
  /**
8092
8288
  * No description
8093
8289
  *
@@ -8099,7 +8295,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8099
8295
  * @response `200` `Task` Success
8100
8296
  * @response `404` `ProblemDetails` Not Found
8101
8297
  */
8102
- getTask: (id: string, params?: RequestParams) => Promise<AxiosResponse<Task, any>>;
8298
+ getTask: (id: string, params?: RequestParams) => Promise<AxiosResponse<Task, any, {}>>;
8103
8299
  /**
8104
8300
  * No description
8105
8301
  *
@@ -8111,7 +8307,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8111
8307
  * @response `200` `void` Success
8112
8308
  * @response `404` `ProblemDetails` Not Found
8113
8309
  */
8114
- replaceTask: (id: string, data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8310
+ replaceTask: (id: string, data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8115
8311
  /**
8116
8312
  * No description
8117
8313
  *
@@ -8123,7 +8319,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8123
8319
  * @response `204` `void` No Content
8124
8320
  * @response `404` `ProblemDetails` Not Found
8125
8321
  */
8126
- deleteTask: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8322
+ deleteTask: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8127
8323
  /**
8128
8324
  * No description
8129
8325
  *
@@ -8141,7 +8337,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8141
8337
  pageNumber?: number;
8142
8338
  sortBy?: string;
8143
8339
  sortDirection?: string;
8144
- }, params?: RequestParams) => Promise<AxiosResponse<TaskPaginated, any>>;
8340
+ }, params?: RequestParams) => Promise<AxiosResponse<TaskPaginated, any, {}>>;
8145
8341
  /**
8146
8342
  * No description
8147
8343
  *
@@ -8151,24 +8347,19 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8151
8347
  * @secure
8152
8348
  * @response `200` `void` Success
8153
8349
  */
8154
- integrationsLosLoansCreate: (data: LosLoanCreationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8350
+ integrationsLosLoansCreate: (data: LosLoanCreationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8155
8351
  /**
8156
8352
  * No description
8157
8353
  *
8158
8354
  * @tags UsageReports
8159
- * @name GenerateUsageReports
8160
- * @summary Generate usage reports for all active production accounts
8161
- * @request POST:/api/usage-reports
8355
+ * @name GetUsageReportById
8356
+ * @summary Get usage report by ID
8357
+ * @request GET:/api/usage-reports/{id}
8162
8358
  * @secure
8163
- * @response `200` `UsageReportGenerationResult` Success
8164
- * @response `400` `ProblemDetails` Bad Request
8359
+ * @response `200` `UsageReport` Success
8360
+ * @response `404` `ProblemDetails` Not Found
8165
8361
  */
8166
- generateUsageReports: (query?: {
8167
- /** @format int32 */
8168
- month?: number;
8169
- /** @format int32 */
8170
- year?: number;
8171
- }, params?: RequestParams) => Promise<AxiosResponse<UsageReportGenerationResult, any>>;
8362
+ getUsageReportById: (id: string, params?: RequestParams) => Promise<AxiosResponse<UsageReport, any, {}>>;
8172
8363
  /**
8173
8364
  * No description
8174
8365
  *
@@ -8185,36 +8376,64 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8185
8376
  month?: number;
8186
8377
  /** @format int32 */
8187
8378
  year?: number;
8188
- }, params?: RequestParams) => Promise<AxiosResponse<UsageReport[], any>>;
8379
+ }, params?: RequestParams) => Promise<AxiosResponse<UsageReport[], any, {}>>;
8189
8380
  /**
8190
8381
  * No description
8191
8382
  *
8192
8383
  * @tags UsageReports
8193
- * @name GenerateAndSendUsageReport
8194
- * @summary Generate and send monthly usage report email
8195
- * @request POST:/api/usage-reports/generate-and-send
8384
+ * @name StartUsageReportExecution
8385
+ * @summary Start a new usage report execution (async)
8386
+ * @request POST:/api/usage-reports
8196
8387
  * @secure
8197
- * @response `204` `void` No Content
8198
- * @response `500` `void` Server Error
8388
+ * @response `202` `any` Accepted
8389
+ * @response `400` `ProblemDetails` Bad Request
8199
8390
  */
8200
- generateAndSendUsageReport: (query?: {
8391
+ startUsageReportExecution: (query?: {
8201
8392
  /** @format int32 */
8202
8393
  month?: number;
8203
8394
  /** @format int32 */
8204
8395
  year?: number;
8205
- }, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8396
+ }, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
8206
8397
  /**
8207
8398
  * No description
8208
8399
  *
8209
8400
  * @tags UsageReports
8210
- * @name GetUsageReportById
8211
- * @summary Get usage report by ID
8212
- * @request GET:/api/usage-reports/{id}
8401
+ * @name GetUsageReportDashboard
8402
+ * @summary Get usage report execution dashboard with active execution, recent history, and statistics
8403
+ * @request GET:/api/usage-reports/dashboard
8213
8404
  * @secure
8214
- * @response `200` `UsageReport` Success
8405
+ * @response `200` `UsageReportDashboard` Success
8406
+ */
8407
+ getUsageReportDashboard: (params?: RequestParams) => Promise<AxiosResponse<UsageReportDashboard, any, {}>>;
8408
+ /**
8409
+ * No description
8410
+ *
8411
+ * @tags UsageReports
8412
+ * @name GetUsageReportExecution
8413
+ * @summary Get usage report execution status by correlation ID
8414
+ * @request GET:/api/usage-reports/executions/{correlationId}
8415
+ * @secure
8416
+ * @response `200` `UsageReportExecution` Success
8215
8417
  * @response `404` `ProblemDetails` Not Found
8216
8418
  */
8217
- getUsageReportById: (id: string, params?: RequestParams) => Promise<AxiosResponse<UsageReport, any>>;
8419
+ getUsageReportExecution: (correlationId: string, params?: RequestParams) => Promise<AxiosResponse<UsageReportExecution, any, {}>>;
8420
+ /**
8421
+ * No description
8422
+ *
8423
+ * @tags UsageReports
8424
+ * @name GetUsageReportExecutionsByPeriod
8425
+ * @summary Get usage report executions by month and year
8426
+ * @request GET:/api/usage-reports/executions
8427
+ * @secure
8428
+ * @response `200` `(UsageReportExecution)[]` Success
8429
+ * @response `400` `ProblemDetails` Bad Request
8430
+ */
8431
+ getUsageReportExecutionsByPeriod: (query?: {
8432
+ /** @format int32 */
8433
+ month?: number;
8434
+ /** @format int32 */
8435
+ year?: number;
8436
+ }, params?: RequestParams) => Promise<AxiosResponse<UsageReportExecution[], any, {}>>;
8218
8437
  /**
8219
8438
  * No description
8220
8439
  *
@@ -8226,7 +8445,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8226
8445
  * @response `201` `UserDevice` Created
8227
8446
  * @response `400` `ProblemDetails` Bad Request
8228
8447
  */
8229
- createUserDevice: (data: CreateUserDeviceRequest, params?: RequestParams) => Promise<AxiosResponse<UserDevice, any>>;
8448
+ createUserDevice: (data: CreateUserDeviceRequest, params?: RequestParams) => Promise<AxiosResponse<UserDevice, any, {}>>;
8230
8449
  /**
8231
8450
  * No description
8232
8451
  *
@@ -8238,7 +8457,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8238
8457
  * @response `204` `void` No Content
8239
8458
  * @response `404` `ProblemDetails` Not Found
8240
8459
  */
8241
- deleteUserDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8460
+ deleteUserDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8242
8461
  /**
8243
8462
  * No description
8244
8463
  *
@@ -8256,7 +8475,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8256
8475
  pageNumber?: number;
8257
8476
  sortBy?: string;
8258
8477
  sortDirection?: string;
8259
- }, params?: RequestParams) => Promise<AxiosResponse<UserDraftPaginated, any>>;
8478
+ }, params?: RequestParams) => Promise<AxiosResponse<UserDraftPaginated, any, {}>>;
8260
8479
  /**
8261
8480
  * No description
8262
8481
  *
@@ -8267,7 +8486,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8267
8486
  * @secure
8268
8487
  * @response `200` `UserDraft` Success
8269
8488
  */
8270
- getDraftUser: (draftId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<UserDraft, any>>;
8489
+ getDraftUser: (draftId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<UserDraft, any, {}>>;
8271
8490
  /**
8272
8491
  * No description
8273
8492
  *
@@ -8278,7 +8497,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8278
8497
  * @secure
8279
8498
  * @response `200` `UserDraft` Success
8280
8499
  */
8281
- addDraftUsers: (draftId: string, userId: string, data: CreateUserDraft, params?: RequestParams) => Promise<AxiosResponse<UserDraft, any>>;
8500
+ addDraftUsers: (draftId: string, userId: string, data: CreateUserDraft, params?: RequestParams) => Promise<AxiosResponse<UserDraft, any, {}>>;
8282
8501
  /**
8283
8502
  * No description
8284
8503
  *
@@ -8289,7 +8508,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8289
8508
  * @secure
8290
8509
  * @response `204` `void` No Content
8291
8510
  */
8292
- deleteDraftUser: (draftId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8511
+ deleteDraftUser: (draftId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8293
8512
  /**
8294
8513
  * No description
8295
8514
  *
@@ -8300,7 +8519,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8300
8519
  * @secure
8301
8520
  * @response `200` `(UserGroupAccessScope)[]` Success
8302
8521
  */
8303
- getUserGroupAccessScopes: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope[], any>>;
8522
+ getUserGroupAccessScopes: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope[], any, {}>>;
8304
8523
  /**
8305
8524
  * No description
8306
8525
  *
@@ -8311,7 +8530,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8311
8530
  * @secure
8312
8531
  * @response `200` `UserGroupAccessScope` Success
8313
8532
  */
8314
- createUserGroupAccessScope: (groupId: string, data: CreateAccessScopeRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope, any>>;
8533
+ createUserGroupAccessScope: (groupId: string, data: CreateAccessScopeRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope, any, {}>>;
8315
8534
  /**
8316
8535
  * No description
8317
8536
  *
@@ -8322,7 +8541,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8322
8541
  * @secure
8323
8542
  * @response `204` `void` No Content
8324
8543
  */
8325
- deleteUserGroupAccessScope: (groupId: string, scopeId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8544
+ deleteUserGroupAccessScope: (groupId: string, scopeId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8326
8545
  /**
8327
8546
  * No description
8328
8547
  *
@@ -8333,7 +8552,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8333
8552
  * @secure
8334
8553
  * @response `200` `(UserGroupMember)[]` Success
8335
8554
  */
8336
- getUserGroupMembers: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupMember[], any>>;
8555
+ getUserGroupMembers: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupMember[], any, {}>>;
8337
8556
  /**
8338
8557
  * No description
8339
8558
  *
@@ -8347,7 +8566,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8347
8566
  createUserGroupMember: (groupId: string, data: CreateGroupMemberRequest, query?: {
8348
8567
  /** @format uuid */
8349
8568
  userId?: string;
8350
- }, params?: RequestParams) => Promise<AxiosResponse<UserGroupMember, any>>;
8569
+ }, params?: RequestParams) => Promise<AxiosResponse<UserGroupMember, any, {}>>;
8351
8570
  /**
8352
8571
  * No description
8353
8572
  *
@@ -8358,7 +8577,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8358
8577
  * @secure
8359
8578
  * @response `204` `void` No Content
8360
8579
  */
8361
- deleteUserGroupMember: (groupId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8580
+ deleteUserGroupMember: (groupId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8362
8581
  /**
8363
8582
  * No description
8364
8583
  *
@@ -8377,7 +8596,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8377
8596
  pageNumber?: number;
8378
8597
  sortBy?: string;
8379
8598
  sortDirection?: string;
8380
- }, params?: RequestParams) => Promise<AxiosResponse<UserGroupPaginated, any>>;
8599
+ }, params?: RequestParams) => Promise<AxiosResponse<UserGroupPaginated, any, {}>>;
8381
8600
  /**
8382
8601
  * No description
8383
8602
  *
@@ -8388,7 +8607,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8388
8607
  * @secure
8389
8608
  * @response `200` `UserGroup` Success
8390
8609
  */
8391
- getUserGroup: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any>>;
8610
+ getUserGroup: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any, {}>>;
8392
8611
  /**
8393
8612
  * No description
8394
8613
  *
@@ -8399,7 +8618,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8399
8618
  * @secure
8400
8619
  * @response `200` `UserGroup` Success
8401
8620
  */
8402
- updateUserGroup: (groupId: string, data: UpdateUserGroupRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any>>;
8621
+ updateUserGroup: (groupId: string, data: UpdateUserGroupRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any, {}>>;
8403
8622
  /**
8404
8623
  * No description
8405
8624
  *
@@ -8410,7 +8629,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8410
8629
  * @secure
8411
8630
  * @response `204` `void` No Content
8412
8631
  */
8413
- deleteUserGroup: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8632
+ deleteUserGroup: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8414
8633
  /**
8415
8634
  * No description
8416
8635
  *
@@ -8421,7 +8640,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8421
8640
  * @secure
8422
8641
  * @response `201` `UserGroup` Created
8423
8642
  */
8424
- createUserGroup: (data: CreateUserGroupRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any>>;
8643
+ createUserGroup: (data: CreateUserGroupRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any, {}>>;
8425
8644
  /**
8426
8645
  * No description
8427
8646
  *
@@ -8434,7 +8653,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8434
8653
  * @response `404` `Error` Not Found
8435
8654
  * @response `422` `UnprocessableEntity` Client Error
8436
8655
  */
8437
- requestImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8656
+ requestImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8438
8657
  /**
8439
8658
  * No description
8440
8659
  *
@@ -8447,7 +8666,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8447
8666
  * @response `404` `Error` Not Found
8448
8667
  * @response `422` `UnprocessableEntity` Client Error
8449
8668
  */
8450
- allowImpersonation: (data: AllowImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8669
+ allowImpersonation: (data: AllowImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8451
8670
  /**
8452
8671
  * No description
8453
8672
  *
@@ -8460,7 +8679,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8460
8679
  * @response `404` `Error` Not Found
8461
8680
  * @response `422` `UnprocessableEntity` Client Error
8462
8681
  */
8463
- allowImpersonationWithGuid: (allowToken: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8682
+ allowImpersonationWithGuid: (allowToken: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8464
8683
  /**
8465
8684
  * No description
8466
8685
  *
@@ -8472,7 +8691,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8472
8691
  * @response `204` `void` No Content
8473
8692
  * @response `422` `UnprocessableEntity` Client Error
8474
8693
  */
8475
- beginImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8694
+ beginImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8476
8695
  /**
8477
8696
  * No description
8478
8697
  *
@@ -8484,7 +8703,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8484
8703
  * @response `204` `void` No Content
8485
8704
  * @response `422` `UnprocessableEntity` Client Error
8486
8705
  */
8487
- stopImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8706
+ stopImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8488
8707
  /**
8489
8708
  * No description
8490
8709
  *
@@ -8497,7 +8716,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8497
8716
  * @response `404` `Error` Not Found
8498
8717
  * @response `422` `UnprocessableEntity` Client Error
8499
8718
  */
8500
- forceImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8719
+ forceImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8501
8720
  /**
8502
8721
  * No description
8503
8722
  *
@@ -8509,7 +8728,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8509
8728
  * @response `204` `void` No Content
8510
8729
  * @response `422` `UnprocessableEntity` Client Error
8511
8730
  */
8512
- extendImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8731
+ extendImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8513
8732
  /**
8514
8733
  * No description
8515
8734
  *
@@ -8521,7 +8740,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8521
8740
  * @response `204` `void` No Content
8522
8741
  * @response `422` `UnprocessableEntity` Client Error
8523
8742
  */
8524
- inviteUser: (data: CreateInviteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8743
+ inviteUser: (data: CreateInviteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8525
8744
  /**
8526
8745
  * No description
8527
8746
  *
@@ -8534,7 +8753,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8534
8753
  * @response `401` `UnprocessableEntity` Unauthorized
8535
8754
  * @response `404` `UnprocessableEntity` Not Found
8536
8755
  */
8537
- resendInviteNotification: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8756
+ resendInviteNotification: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8538
8757
  /**
8539
8758
  * No description
8540
8759
  *
@@ -8546,7 +8765,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8546
8765
  * @response `200` `Invite` Success
8547
8766
  * @response `422` `UnprocessableEntity` Client Error
8548
8767
  */
8549
- verifyUserInvite: (token: string, params?: RequestParams) => Promise<AxiosResponse<Invite, any>>;
8768
+ verifyUserInvite: (token: string, params?: RequestParams) => Promise<AxiosResponse<Invite, any, {}>>;
8550
8769
  /**
8551
8770
  * No description
8552
8771
  *
@@ -8557,7 +8776,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8557
8776
  * @secure
8558
8777
  * @response `200` `(UserRelation)[]` Success
8559
8778
  */
8560
- getUserRelations: (userId: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation[], any>>;
8779
+ getUserRelations: (userId: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation[], any, {}>>;
8561
8780
  /**
8562
8781
  * No description
8563
8782
  *
@@ -8568,7 +8787,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8568
8787
  * @secure
8569
8788
  * @response `204` `void` No Content
8570
8789
  */
8571
- createUserRelation: (userId: string, data: CreateUserRelationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8790
+ createUserRelation: (userId: string, data: CreateUserRelationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8572
8791
  /**
8573
8792
  * No description
8574
8793
  *
@@ -8579,7 +8798,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8579
8798
  * @secure
8580
8799
  * @response `200` `UserRelation` Success
8581
8800
  */
8582
- getUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation, any>>;
8801
+ getUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation, any, {}>>;
8583
8802
  /**
8584
8803
  * No description
8585
8804
  *
@@ -8590,7 +8809,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8590
8809
  * @secure
8591
8810
  * @response `204` `void` No Content
8592
8811
  */
8593
- deleteUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8812
+ deleteUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8594
8813
  /**
8595
8814
  * No description
8596
8815
  *
@@ -8608,7 +8827,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8608
8827
  pageNumber?: number;
8609
8828
  sortBy?: string;
8610
8829
  sortDirection?: string;
8611
- }, params?: RequestParams) => Promise<AxiosResponse<User[], any>>;
8830
+ }, params?: RequestParams) => Promise<AxiosResponse<User[], any, {}>>;
8612
8831
  /**
8613
8832
  * No description
8614
8833
  *
@@ -8620,7 +8839,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8620
8839
  * @response `200` `DetailedUser` Success
8621
8840
  * @response `422` `UnprocessableEntity` Client Error
8622
8841
  */
8623
- createUser: (data: CreateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
8842
+ createUser: (data: CreateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any, {}>>;
8624
8843
  /**
8625
8844
  * No description
8626
8845
  *
@@ -8638,7 +8857,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8638
8857
  pageNumber?: number;
8639
8858
  sortBy?: string;
8640
8859
  sortDirection?: string;
8641
- }, params?: RequestParams) => Promise<AxiosResponse<UserPaginated, any>>;
8860
+ }, params?: RequestParams) => Promise<AxiosResponse<UserPaginated, any, {}>>;
8642
8861
  /**
8643
8862
  * No description
8644
8863
  *
@@ -8649,7 +8868,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8649
8868
  * @secure
8650
8869
  * @response `200` `AdminAccessUser` Success
8651
8870
  */
8652
- getUserByEmail: (data: GetUserByEmailRequest, params?: RequestParams) => Promise<AxiosResponse<AdminAccessUser, any>>;
8871
+ getUserByEmail: (data: GetUserByEmailRequest, params?: RequestParams) => Promise<AxiosResponse<AdminAccessUser, any, {}>>;
8653
8872
  /**
8654
8873
  * No description
8655
8874
  *
@@ -8661,7 +8880,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8661
8880
  * @response `200` `User` Success
8662
8881
  * @response `422` `UnprocessableEntity` Client Error
8663
8882
  */
8664
- signUp: (data: RegisterUserRequest, params?: RequestParams) => Promise<AxiosResponse<User, any>>;
8883
+ signUp: (data: RegisterUserRequest, params?: RequestParams) => Promise<AxiosResponse<User, any, {}>>;
8665
8884
  /**
8666
8885
  * No description
8667
8886
  *
@@ -8673,7 +8892,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8673
8892
  * @response `200` `DetailedUser` Success
8674
8893
  * @response `422` `UnprocessableEntity` Client Error
8675
8894
  */
8676
- replaceUser: (id: string, data: UpdateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
8895
+ replaceUser: (id: string, data: UpdateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any, {}>>;
8677
8896
  /**
8678
8897
  * No description
8679
8898
  *
@@ -8687,7 +8906,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8687
8906
  deleteUser: (id: string, query?: {
8688
8907
  /** @default false */
8689
8908
  permanent?: boolean;
8690
- }, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8909
+ }, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8691
8910
  /**
8692
8911
  * No description
8693
8912
  *
@@ -8698,7 +8917,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8698
8917
  * @secure
8699
8918
  * @response `204` `void` No Content
8700
8919
  */
8701
- restoreUser: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8920
+ restoreUser: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8702
8921
  /**
8703
8922
  * No description
8704
8923
  *
@@ -8710,7 +8929,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8710
8929
  * @response `204` `void` No Content
8711
8930
  * @response `422` `UnprocessableEntity` Client Error
8712
8931
  */
8713
- changePassword: (data: ChangePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8932
+ changePassword: (data: ChangePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8714
8933
  /**
8715
8934
  * No description
8716
8935
  *
@@ -8722,7 +8941,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8722
8941
  * @response `204` `void` No Content
8723
8942
  * @response `422` `UnprocessableEntity` Client Error
8724
8943
  */
8725
- verifyPassword: (data: VerifyPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8944
+ verifyPassword: (data: VerifyPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8726
8945
  /**
8727
8946
  * No description
8728
8947
  *
@@ -8734,7 +8953,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8734
8953
  * @response `204` `void` No Content
8735
8954
  * @response `422` `UnprocessableEntity` Client Error
8736
8955
  */
8737
- overridePassword: (id: string, data: OverridePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8956
+ overridePassword: (id: string, data: OverridePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8738
8957
  /**
8739
8958
  * No description
8740
8959
  *
@@ -8746,7 +8965,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8746
8965
  * @response `204` `void` No Content
8747
8966
  * @response `422` `UnprocessableEntity` Client Error
8748
8967
  */
8749
- forgotPassword: (data: SendForgotPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8968
+ forgotPassword: (data: SendForgotPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8750
8969
  /**
8751
8970
  * No description
8752
8971
  *
@@ -8758,7 +8977,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8758
8977
  * @response `204` `void` No Content
8759
8978
  * @response `422` `UnprocessableEntity` Client Error
8760
8979
  */
8761
- sendMobilePhoneVerificationCode: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8980
+ sendMobilePhoneVerificationCode: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8762
8981
  /**
8763
8982
  * No description
8764
8983
  *
@@ -8770,7 +8989,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8770
8989
  * @response `204` `void` No Content
8771
8990
  * @response `422` `UnprocessableEntity` Client Error
8772
8991
  */
8773
- verifyUserMobilePhone: (data: UserMobilePhoneVerificationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8992
+ verifyUserMobilePhone: (data: UserMobilePhoneVerificationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8774
8993
  /**
8775
8994
  * No description
8776
8995
  *
@@ -8782,7 +9001,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8782
9001
  * @response `200` `ImpersonatedDetailedUser` Success
8783
9002
  * @response `401` `ProblemDetails` Unauthorized
8784
9003
  */
8785
- getMe: (params?: RequestParams) => Promise<AxiosResponse<ImpersonatedDetailedUser, any>>;
9004
+ getMe: (params?: RequestParams) => Promise<AxiosResponse<ImpersonatedDetailedUser, any, {}>>;
8786
9005
  /**
8787
9006
  * No description
8788
9007
  *
@@ -8793,7 +9012,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8793
9012
  * @secure
8794
9013
  * @response `200` `DetailedUser` Success
8795
9014
  */
8796
- replaceMe: (data: UpdateMeRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
9015
+ replaceMe: (data: UpdateMeRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any, {}>>;
8797
9016
  /**
8798
9017
  * @description Update the phone number If changed will send a verification code to the new number
8799
9018
  *
@@ -8804,7 +9023,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8804
9023
  * @secure
8805
9024
  * @response `204` `DetailedUser` No Content
8806
9025
  */
8807
- updateMyPhone: (data: UpdateMobilePhoneRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
9026
+ updateMyPhone: (data: UpdateMobilePhoneRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any, {}>>;
8808
9027
  /**
8809
9028
  * No description
8810
9029
  *
@@ -8815,7 +9034,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8815
9034
  * @secure
8816
9035
  * @response `200` `(UserRelationship)[]` Success
8817
9036
  */
8818
- getMyRelationships: (params?: RequestParams) => Promise<AxiosResponse<UserRelationship[], any>>;
9037
+ getMyRelationships: (params?: RequestParams) => Promise<AxiosResponse<UserRelationship[], any, {}>>;
8819
9038
  /**
8820
9039
  * No description
8821
9040
  *
@@ -8826,7 +9045,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8826
9045
  * @secure
8827
9046
  * @response `200` `(UserRelationshipProspect)[]` Success
8828
9047
  */
8829
- getMyRelationshipProspects: (params?: RequestParams) => Promise<AxiosResponse<UserRelationshipProspect[], any>>;
9048
+ getMyRelationshipProspects: (params?: RequestParams) => Promise<AxiosResponse<UserRelationshipProspect[], any, {}>>;
8830
9049
  /**
8831
9050
  * No description
8832
9051
  *
@@ -8837,7 +9056,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8837
9056
  * @secure
8838
9057
  * @response `204` `void` No Content
8839
9058
  */
8840
- deleteRelationshipProspect: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9059
+ deleteRelationshipProspect: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8841
9060
  /**
8842
9061
  * No description
8843
9062
  *
@@ -8848,7 +9067,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8848
9067
  * @secure
8849
9068
  * @response `204` `void` No Content
8850
9069
  */
8851
- deleteMe: (data: UserAccountDeletionRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9070
+ deleteMe: (data: UserAccountDeletionRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8852
9071
  /**
8853
9072
  * No description
8854
9073
  *
@@ -8859,7 +9078,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8859
9078
  * @secure
8860
9079
  * @response `200` `GetForm` Success
8861
9080
  */
8862
- getWorkflow: (data: GetWorkflowRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any>>;
9081
+ getWorkflow: (data: GetWorkflowRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any, {}>>;
8863
9082
  };
8864
9083
  sso: {
8865
9084
  /**
@@ -8871,6 +9090,6 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8871
9090
  * @secure
8872
9091
  * @response `200` `void` Success
8873
9092
  */
8874
- logoutList: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9093
+ logoutList: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8875
9094
  };
8876
9095
  }