@matech/thebigpos-sdk 2.40.0-rc.1 → 2.40.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
@@ -41,13 +41,13 @@ export type LoanHispanicEthnicity = "Mexican" | "PuertoRican" | "Cuban" | "Other
41
41
  export type LoanGiftSource = "CommunityNonProfit" | "Employer" | "FederalAgency" | "LocalAgency" | "Relative" | "ReligiousNonProfit" | "StateAgency" | "UnmarriedPartner" | "Lender" | "Other";
42
42
  export type LoanGiftAssetType = "Cash" | "Asset" | "Equity";
43
43
  export type LoanGenderType = "Male" | "Female";
44
+ export type LoanDocumentFolderPermissionLevel = "None" | "Read" | "Write" | "Manage";
44
45
  export type LoanCitizenship = "USCitizen" | "PermanentResidentAlien" | "NonPermanentResidentAlien";
45
46
  export type LoanBankruptcyType = "Chapter7" | "Chapter11" | "Chapter12" | "Chapter13";
46
47
  export type LoanAsianRace = "AsianIndian" | "Chinese" | "Filipino" | "Japanese" | "Korean" | "Vietnamese" | "Other";
47
48
  export type LoanAccountAssetType = "Checking" | "Savings" | "MoneyMarket" | "CertificateOfDeposit" | "MutualFund" | "Stocks" | "Bonds" | "Retirement" | "BridgeLoanProceeds" | "IndividualDevelopmentAccount" | "TrustAccount" | "CashValueOfLifeInsurance" | "Other";
48
49
  export type LoanAccessScopeType = "User" | "Branch";
49
50
  export type LOSStatus = "Unknown" | "Pending" | "Retrying" | "Successful" | "Failed" | "FailedPermanently" | "Uploaded" | "PendingSync";
50
- export type FolderPermissionLevel = "None" | "Read" | "Write" | "Manage";
51
51
  export type FilterType = "DateGreaterThanOrEqualTo" | "DateGreaterThan" | "DateLessThan" | "DateLessThanOrEqualTo" | "DateEquals" | "DateDoesntEqual" | "DateNonEmpty" | "DateEmpty" | "StringContains" | "StringEquals" | "StringNotEmpty" | "StringNotEquals" | "StringNotContains";
52
52
  export type Environment = "Development" | "Staging" | "UAT" | "Production";
53
53
  export type EntityType = "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Realtor";
@@ -115,7 +115,7 @@ export interface AccountBilling {
115
115
  contractedRate: number;
116
116
  }
117
117
  export interface AccountBillingRequest {
118
- billingType: "ClosedLoan" | "LoanOfficer";
118
+ billingType: AccountBillingRequestBillingTypeEnum;
119
119
  /**
120
120
  * @format double
121
121
  * @min 0
@@ -142,7 +142,7 @@ export interface Action {
142
142
  comments?: string | null;
143
143
  /** @format uuid */
144
144
  siteConfigurationID: string;
145
- applicationSettings?: any;
145
+ applicationSettings?: any | null;
146
146
  surveysToken?: string | null;
147
147
  }
148
148
  export interface Address {
@@ -435,14 +435,14 @@ export interface AuditLogEntry {
435
435
  /** @format uuid */
436
436
  id: string;
437
437
  entityType: string;
438
- changeType: "Created" | "Modified" | "SoftDeleted" | "HardDeleted" | "Restored";
438
+ changeType: AuditLogEntryChangeTypeEnum;
439
439
  /** @format uuid */
440
440
  entityId: string;
441
441
  performedBy?: AuditLogUser | null;
442
442
  rootEntityType?: string | null;
443
443
  /** @format uuid */
444
444
  rootEntityId?: string | null;
445
- changes?: any;
445
+ changes?: any | null;
446
446
  /** @format date-time */
447
447
  createdAt: string;
448
448
  }
@@ -719,7 +719,7 @@ export interface CorporateSearchCriteria {
719
719
  isActive?: boolean | null;
720
720
  }
721
721
  export interface CreateAccessScopeRequest {
722
- scopeType: "User" | "Branch";
722
+ scopeType: CreateAccessScopeRequestScopeTypeEnum;
723
723
  /** @format uuid */
724
724
  userId?: string | null;
725
725
  /** @format uuid */
@@ -742,7 +742,7 @@ export interface CreateAccountRequest {
742
742
  */
743
743
  nlmsid: number;
744
744
  settings: AccountSettingsRequest;
745
- environment: "Development" | "Staging" | "UAT" | "Production";
745
+ environment: CreateAccountRequestEnvironmentEnum;
746
746
  losIntegration: LOSIntegration;
747
747
  billingSettings: AccountBillingRequest;
748
748
  }
@@ -778,8 +778,8 @@ export interface CreateCustomFieldDefinitionRequest {
778
778
  name: string;
779
779
  defaultValue?: string | null;
780
780
  regexPattern?: string | null;
781
- dataType: "String" | "Number" | "Decimal" | "Boolean" | "Date" | "SingleSelect" | "MultiSelect";
782
- entityType: "Loan";
781
+ dataType: CreateCustomFieldDefinitionRequestDataTypeEnum;
782
+ entityType: CreateCustomFieldDefinitionRequestEntityTypeEnum;
783
783
  options?: CustomFieldOptionRequest[] | null;
784
784
  permissions?: CustomFieldPermissionRequest[] | null;
785
785
  }
@@ -799,7 +799,7 @@ export interface CreateDocumentTemplateRequest {
799
799
  export interface CreateGroupMemberRequest {
800
800
  /** @format uuid */
801
801
  userId: string;
802
- loanRole: "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
802
+ loanRole: CreateGroupMemberRequestLoanRoleEnum;
803
803
  }
804
804
  export interface CreateInviteRequest {
805
805
  /** @minLength 1 */
@@ -810,7 +810,7 @@ export interface CreateInviteRequest {
810
810
  emailAddress: string;
811
811
  phoneNumber?: string | null;
812
812
  /** @deprecated */
813
- relationship: "NotApplicable" | "Spouse" | "NonSpouse";
813
+ relationship: CreateInviteRequestRelationshipEnum;
814
814
  loanID: string;
815
815
  route?: string | null;
816
816
  /** @format uuid */
@@ -840,7 +840,7 @@ export interface CreateLoanImportRequest {
840
840
  * @minLength 1
841
841
  */
842
842
  startDate: string;
843
- importMode: "All" | "NewOnly" | "UpdateOnly";
843
+ importMode: CreateLoanImportRequestImportModeEnum;
844
844
  }
845
845
  export interface CreateSession {
846
846
  sessionId: string;
@@ -858,7 +858,7 @@ export interface CreateUserDeviceRequest {
858
858
  token: string;
859
859
  }
860
860
  export interface CreateUserDraft {
861
- loanRole: "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
861
+ loanRole: CreateUserDraftLoanRoleEnum;
862
862
  }
863
863
  export interface CreateUserGroupRequest {
864
864
  /**
@@ -939,8 +939,8 @@ export interface CustomFieldDefinition {
939
939
  name: string;
940
940
  defaultValue?: string | null;
941
941
  regexPattern?: string | null;
942
- dataType: "String" | "Number" | "Decimal" | "Boolean" | "Date" | "SingleSelect" | "MultiSelect";
943
- entityType: "Loan";
942
+ dataType: CustomFieldDefinitionDataTypeEnum;
943
+ entityType: CustomFieldDefinitionEntityTypeEnum;
944
944
  options: CustomFieldOption[];
945
945
  permissions: CustomFieldPermission[];
946
946
  encompassMapping?: EncompassMapping | null;
@@ -954,7 +954,7 @@ export interface CustomFieldEntry {
954
954
  displayOrder: number;
955
955
  name: string;
956
956
  value: string;
957
- dataType: "String" | "Number" | "Decimal" | "Boolean" | "Date" | "SingleSelect" | "MultiSelect";
957
+ dataType: CustomFieldEntryDataTypeEnum;
958
958
  }
959
959
  export interface CustomFieldOption {
960
960
  /** @format uuid */
@@ -971,12 +971,12 @@ export interface CustomFieldOptionRequest {
971
971
  export interface CustomFieldPermission {
972
972
  /** @format uuid */
973
973
  id: string;
974
- role: "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
975
- accessLevel: "NoAccess" | "ReadOnly" | "ReadWrite";
974
+ role: CustomFieldPermissionRoleEnum;
975
+ accessLevel: CustomFieldPermissionAccessLevelEnum;
976
976
  }
977
977
  export interface CustomFieldPermissionRequest {
978
- role: "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
979
- accessLevel: "NoAccess" | "ReadOnly" | "ReadWrite";
978
+ role: CustomFieldPermissionRequestRoleEnum;
979
+ accessLevel: CustomFieldPermissionRequestAccessLevelEnum;
980
980
  }
981
981
  export interface CustomFieldValue {
982
982
  /** @format uuid */
@@ -987,7 +987,7 @@ export interface CustomFieldValue {
987
987
  customFieldDefinitionID: string;
988
988
  value: string;
989
989
  definitionName: string;
990
- dataType: "String" | "Number" | "Decimal" | "Boolean" | "Date" | "SingleSelect" | "MultiSelect";
990
+ dataType: CustomFieldValueDataTypeEnum;
991
991
  }
992
992
  export interface CustomLoanData {
993
993
  eConsentInformation?: EConsentInformation | null;
@@ -1231,7 +1231,7 @@ export interface Draft {
1231
1231
  siteConfiguration: SiteConfigurationReduced;
1232
1232
  /** @format uuid */
1233
1233
  loanID?: string | null;
1234
- type: "NewLoan" | "EditLoan";
1234
+ type: DraftTypeEnum;
1235
1235
  isCoBorrower: boolean;
1236
1236
  }
1237
1237
  export interface DraftContent {
@@ -1249,7 +1249,7 @@ export interface DraftContent {
1249
1249
  siteConfiguration: SiteConfigurationReduced;
1250
1250
  /** @format uuid */
1251
1251
  loanID?: string | null;
1252
- type: "NewLoan" | "EditLoan";
1252
+ type: DraftContentTypeEnum;
1253
1253
  isCoBorrower: boolean;
1254
1254
  applicationPayload: any;
1255
1255
  }
@@ -1265,7 +1265,7 @@ export interface DraftLoanOfficerReassignRequest {
1265
1265
  }
1266
1266
  export interface DraftRequest {
1267
1267
  applicationPayload: any;
1268
- customData?: any;
1268
+ customData?: any | null;
1269
1269
  isCoBorrower: boolean;
1270
1270
  }
1271
1271
  export interface EConsentInformation {
@@ -1340,7 +1340,7 @@ export interface EncompassCredentialsDetail {
1340
1340
  defaultLoanOfficerUserName?: string | null;
1341
1341
  clearStateIfUnlicensed: boolean;
1342
1342
  baseUrl?: string | null;
1343
- signingMethod: "ConsumerConnect" | "POSF";
1343
+ signingMethod: EncompassCredentialsDetailSigningMethodEnum;
1344
1344
  subscriptionId?: string | null;
1345
1345
  environment?: string | null;
1346
1346
  }
@@ -1355,7 +1355,7 @@ export interface EncompassCredentialsRequest {
1355
1355
  defaultLoanOfficerUserName?: string | null;
1356
1356
  clearStateIfUnlicensed: boolean;
1357
1357
  baseUrl?: string | null;
1358
- signingMethod: "ConsumerConnect" | "POSF";
1358
+ signingMethod: EncompassCredentialsRequestSigningMethodEnum;
1359
1359
  subscriptionId?: string | null;
1360
1360
  environment?: string | null;
1361
1361
  clientID?: string | null;
@@ -1440,8 +1440,8 @@ export interface EncompassRequestLog {
1440
1440
  losId?: string | null;
1441
1441
  /** @format uuid */
1442
1442
  accountId: string;
1443
- operationType: "FieldUpdate" | "ConsentUpdate" | "DocumentSync" | "MilestoneUpdate" | "DocumentAttachment" | "General" | "FieldReader";
1444
- outcome: "Success" | "Failure" | "PartialSuccess";
1443
+ operationType: EncompassRequestLogOperationTypeEnum;
1444
+ outcome: EncompassRequestLogOutcomeEnum;
1445
1445
  message: string;
1446
1446
  endpoint?: string | null;
1447
1447
  httpMethod?: string | null;
@@ -1449,7 +1449,7 @@ export interface EncompassRequestLog {
1449
1449
  httpStatusCode?: number | null;
1450
1450
  /** @format int64 */
1451
1451
  durationMs?: number | null;
1452
- context?: any;
1452
+ context?: any | null;
1453
1453
  /** @format date-time */
1454
1454
  createdAt: string;
1455
1455
  }
@@ -1492,7 +1492,7 @@ export interface FileSearchCriteria {
1492
1492
  export interface FileWithBytes {
1493
1493
  name: string;
1494
1494
  /** @format byte */
1495
- data: string;
1495
+ data: Blob;
1496
1496
  fileName: string;
1497
1497
  mimeType?: string | null;
1498
1498
  extension?: string | null;
@@ -1572,7 +1572,7 @@ export interface FormSubmission {
1572
1572
  subjectPropertyAddressCounty?: string | null;
1573
1573
  subjectPropertyAddressState?: string | null;
1574
1574
  subjectPropertyAddressZip?: string | null;
1575
- data?: any;
1575
+ data?: any | null;
1576
1576
  /** @format uuid */
1577
1577
  listingID?: string | null;
1578
1578
  listing?: Listing | null;
@@ -1607,7 +1607,7 @@ export interface FormSubmissionRequest {
1607
1607
  subjectPropertyAddressCounty?: string | null;
1608
1608
  subjectPropertyAddressState?: string | null;
1609
1609
  subjectPropertyAddressZip?: string | null;
1610
- data?: any;
1610
+ data?: any | null;
1611
1611
  /** @format uuid */
1612
1612
  listingID?: string | null;
1613
1613
  }
@@ -1658,7 +1658,7 @@ export interface FusionFieldDisplay {
1658
1658
  fieldValue: string;
1659
1659
  }
1660
1660
  export interface FusionReportFilter {
1661
- filterType: "DateGreaterThanOrEqualTo" | "DateGreaterThan" | "DateLessThan" | "DateLessThanOrEqualTo" | "DateEquals" | "DateDoesntEqual" | "DateNonEmpty" | "DateEmpty" | "StringContains" | "StringEquals" | "StringNotEmpty" | "StringNotEquals" | "StringNotContains";
1661
+ filterType: FusionReportFilterFilterTypeEnum;
1662
1662
  targetField: string;
1663
1663
  targetValue: string;
1664
1664
  }
@@ -1768,11 +1768,11 @@ export interface GetWorkflowRequest {
1768
1768
  export interface GuidPatchOperation {
1769
1769
  op: string;
1770
1770
  path: string;
1771
- value?: any;
1771
+ value?: any | null;
1772
1772
  from?: string | null;
1773
1773
  }
1774
1774
  export interface IPAddress {
1775
- 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";
1775
+ addressFamily: IpAddressAddressFamilyEnum;
1776
1776
  /** @format int64 */
1777
1777
  scopeId: number;
1778
1778
  isIPv6Multicast: boolean;
@@ -2026,7 +2026,7 @@ export interface Loan {
2026
2026
  userLoans: UserLoan[];
2027
2027
  contacts: LoanContact[];
2028
2028
  customFields: CustomFieldEntry[];
2029
- signingMethod: "ConsumerConnect" | "POSF";
2029
+ signingMethod: LoanSigningMethodEnum;
2030
2030
  }
2031
2031
  export interface LoanApplication {
2032
2032
  /** @format uuid */
@@ -2063,7 +2063,7 @@ export interface LoanApplicationRequest {
2063
2063
  nonOwningBorrowers: LoanNonOwningBorrowerRequest[];
2064
2064
  /** @format uuid */
2065
2065
  draftId?: string | null;
2066
- additionalFields?: Record<string, any>;
2066
+ additionalFields?: Record<string, any> | null;
2067
2067
  /** @format uuid */
2068
2068
  existingLoanId?: string | null;
2069
2069
  }
@@ -2082,7 +2082,7 @@ export interface LoanBorrower {
2082
2082
  citizenship?: LoanCitizenship | null;
2083
2083
  maritalStatus?: LoanMaritalStatus | null;
2084
2084
  languagePreference?: LoanLanguagePreference | null;
2085
- applicationStatus: "Draft" | "Complete";
2085
+ applicationStatus: LoanBorrowerApplicationStatusEnum;
2086
2086
  /** @format int32 */
2087
2087
  numberOfDependents?: number | null;
2088
2088
  isPrimaryBorrower: boolean;
@@ -2921,7 +2921,7 @@ export interface LoanConsentRequest {
2921
2921
  borrowerEConsent?: boolean | null;
2922
2922
  borrowerCreditAuth?: boolean | null;
2923
2923
  borrowerTCPAOptIn?: boolean | null;
2924
- additionalFields?: Record<string, string>;
2924
+ additionalFields?: Record<string, string> | null;
2925
2925
  }
2926
2926
  export interface LoanContact {
2927
2927
  /** @format date-time */
@@ -2939,13 +2939,13 @@ export interface LoanContact {
2939
2939
  email?: string | null;
2940
2940
  phone?: string | null;
2941
2941
  companyName?: string | null;
2942
- role: "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
2942
+ role: LoanContactRoleEnum;
2943
2943
  }
2944
2944
  export interface LoanContactList {
2945
2945
  email: string;
2946
2946
  }
2947
2947
  export interface LoanCustomFieldsRequest {
2948
- additionalFields?: Record<string, string>;
2948
+ additionalFields?: Record<string, string> | null;
2949
2949
  }
2950
2950
  export interface LoanDocument {
2951
2951
  /** @format date-time */
@@ -2988,12 +2988,12 @@ export interface LoanDocumentFolderPermission {
2988
2988
  id: string;
2989
2989
  /** @format uuid */
2990
2990
  loanDocumentFolderID: string;
2991
- role: "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
2992
- level: "None" | "Read" | "Write" | "Manage";
2991
+ role: LoanDocumentFolderPermissionRoleEnum;
2992
+ level: LoanDocumentFolderPermissionLevelEnum;
2993
2993
  }
2994
2994
  export interface LoanDocumentFolderPermissionRequest {
2995
- role: "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
2996
- level: "None" | "Read" | "Write" | "Manage";
2995
+ role: LoanDocumentFolderPermissionRequestRoleEnum;
2996
+ level: LoanDocumentFolderPermissionRequestLevelEnum;
2997
2997
  }
2998
2998
  export interface LoanDocumentFolderUsage {
2999
2999
  /** @format uuid */
@@ -3101,13 +3101,13 @@ export interface LoanImport {
3101
3101
  /** @format int32 */
3102
3102
  importedCount: number;
3103
3103
  statusMessage?: string | null;
3104
- status: "WaitingProcess" | "InProgress" | "Completed" | "Failed" | "Cancelled";
3105
- importMode: "All" | "NewOnly" | "UpdateOnly";
3104
+ status: LoanImportStatusEnum;
3105
+ importMode: LoanImportImportModeEnum;
3106
3106
  /** @format date-time */
3107
3107
  createdAt?: string | null;
3108
3108
  }
3109
3109
  export interface LoanImportLog {
3110
- level: "None" | "Info" | "Warning" | "Error";
3110
+ level: LoanImportLogLevelEnum;
3111
3111
  message: string;
3112
3112
  /** @format date-time */
3113
3113
  createdAt: string;
@@ -3162,8 +3162,8 @@ export interface LoanListPaginated {
3162
3162
  export interface LoanLog {
3163
3163
  /** @format uuid */
3164
3164
  id: string;
3165
- level: "None" | "Info" | "Warning" | "Error";
3166
- type: "Loan" | "Queue" | "POSFlagChanged" | "Verification" | "DocumentUploaded" | "LoanCreated" | "WorkflowSubmitted" | "UserInvitationSent" | "CoBorrowerAdded" | "TaskCompleted" | "LoanStatusChanged" | "Consent" | "SensitiveDataPurge" | "ClosingDateUpdated" | "ConsumerConnectAssociation" | "TaskReminderSent";
3165
+ level: LoanLogLevelEnum;
3166
+ type: LoanLogTypeEnum;
3167
3167
  message: string;
3168
3168
  /** @format date-time */
3169
3169
  createdAt: string;
@@ -3171,8 +3171,8 @@ export interface LoanLog {
3171
3171
  export interface LoanLogDetail {
3172
3172
  /** @format uuid */
3173
3173
  id: string;
3174
- level: "None" | "Info" | "Warning" | "Error";
3175
- type: "Loan" | "Queue" | "POSFlagChanged" | "Verification" | "DocumentUploaded" | "LoanCreated" | "WorkflowSubmitted" | "UserInvitationSent" | "CoBorrowerAdded" | "TaskCompleted" | "LoanStatusChanged" | "Consent" | "SensitiveDataPurge" | "ClosingDateUpdated" | "ConsumerConnectAssociation" | "TaskReminderSent";
3174
+ level: LoanLogDetailLevelEnum;
3175
+ type: LoanLogDetailTypeEnum;
3176
3176
  message: string;
3177
3177
  /** @format date-time */
3178
3178
  createdAt: string;
@@ -3407,7 +3407,7 @@ export interface LoanQueueWithData {
3407
3407
  user: UserPublic;
3408
3408
  loanOfficer: LoanOfficerPublic;
3409
3409
  siteConfiguration: SiteConfigurationReduced;
3410
- data?: any;
3410
+ data?: any | null;
3411
3411
  }
3412
3412
  export interface LoanRecord {
3413
3413
  loanGuid: string;
@@ -3438,7 +3438,7 @@ export interface LoanTaskSearchRequest {
3438
3438
  loanStatus?: LoanTaskActivityFilter | null;
3439
3439
  }
3440
3440
  export interface LoanTaskStatusSummary {
3441
- status: "Outstanding" | "Pending" | "Completed" | "Rejected" | "Unknown";
3441
+ status: LoanTaskStatusSummaryStatusEnum;
3442
3442
  /** @format int32 */
3443
3443
  count: number;
3444
3444
  }
@@ -3450,7 +3450,7 @@ export interface LoanUser {
3450
3450
  email: string;
3451
3451
  phone?: string | null;
3452
3452
  role: string;
3453
- loanRole: "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
3453
+ loanRole: LoanUserLoanRoleEnum;
3454
3454
  isUser: boolean;
3455
3455
  /** @format date-time */
3456
3456
  createdAt: string;
@@ -3483,7 +3483,7 @@ export interface LosOperationTracking {
3483
3483
  operationType: string;
3484
3484
  correlationKey: string;
3485
3485
  lastTriggerSource?: string | null;
3486
- status: "Pending" | "Success" | "Failed" | "ConfigurationError" | "PermanentFailure" | "Locked";
3486
+ status: LosOperationTrackingStatusEnum;
3487
3487
  /** @format date-time */
3488
3488
  createdAt: string;
3489
3489
  /** @format date-time */
@@ -3544,7 +3544,7 @@ export interface LosSyncStep {
3544
3544
  /** @format int32 */
3545
3545
  order: number;
3546
3546
  name: string;
3547
- severity: "Success" | "Info" | "Warning" | "Error";
3547
+ severity: LosSyncStepSeverityEnum;
3548
3548
  message: string;
3549
3549
  /** @format date-time */
3550
3550
  atUtc: string;
@@ -3621,7 +3621,7 @@ export interface ModuleParameterValue {
3621
3621
  parameterID: string;
3622
3622
  parameterName: string;
3623
3623
  parameterType: string;
3624
- value?: any;
3624
+ value?: any | null;
3625
3625
  isInherited: boolean;
3626
3626
  }
3627
3627
  export interface MonthlyPaymentCalculator {
@@ -3832,7 +3832,7 @@ export interface NotificationTemplateVersionUpdateRequest {
3832
3832
  }
3833
3833
  export interface Operation {
3834
3834
  op?: string;
3835
- value?: string | number | boolean | null | object;
3835
+ value?: object | null;
3836
3836
  path?: string;
3837
3837
  }
3838
3838
  export interface OverridePasswordRequest {
@@ -4168,7 +4168,7 @@ export interface SSOTokenRequest {
4168
4168
  redirectUri: string;
4169
4169
  }
4170
4170
  export interface SamlMetadataRequest {
4171
- ssoIntegration: "ConsumerConnect" | "TheBigPOS" | "POSF";
4171
+ ssoIntegration: SamlMetadataRequestSsoIntegrationEnum;
4172
4172
  }
4173
4173
  export interface SendForgotPasswordRequest {
4174
4174
  /**
@@ -4219,7 +4219,7 @@ export interface SiteConfiguration {
4219
4219
  deletedAt?: string | null;
4220
4220
  /** @format uuid */
4221
4221
  id: string;
4222
- type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
4222
+ type: SiteConfigurationTypeEnum;
4223
4223
  /** @format uuid */
4224
4224
  entityID: string;
4225
4225
  /** @format int32 */
@@ -4413,7 +4413,7 @@ export interface SiteConfigurationByUrl {
4413
4413
  deletedAt?: string | null;
4414
4414
  /** @format uuid */
4415
4415
  id: string;
4416
- type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
4416
+ type: SiteConfigurationByUrlTypeEnum;
4417
4417
  /** @format uuid */
4418
4418
  entityID: string;
4419
4419
  /** @format int32 */
@@ -4624,7 +4624,7 @@ export interface SiteConfigurationForm {
4624
4624
  export interface SiteConfigurationReduced {
4625
4625
  /** @format uuid */
4626
4626
  id: string;
4627
- type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
4627
+ type: SiteConfigurationReducedTypeEnum;
4628
4628
  url?: string | null;
4629
4629
  name: string;
4630
4630
  /** @format int64 */
@@ -4641,7 +4641,7 @@ export interface SiteConfigurationRequest {
4641
4641
  entityID: string;
4642
4642
  /** @format int32 */
4643
4643
  entityType: number;
4644
- type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
4644
+ type: SiteConfigurationRequestTypeEnum;
4645
4645
  url: string;
4646
4646
  name: string;
4647
4647
  introduction?: string | null;
@@ -4816,7 +4816,7 @@ export interface SiteConfigurationSearchCriteria {
4816
4816
  export interface SiteConfigurationSummary {
4817
4817
  /** @format uuid */
4818
4818
  id: string;
4819
- type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
4819
+ type: SiteConfigurationSummaryTypeEnum;
4820
4820
  url?: string | null;
4821
4821
  name: string;
4822
4822
  /** @format int64 */
@@ -5432,7 +5432,7 @@ export interface UserDevice {
5432
5432
  export interface UserDraft {
5433
5433
  /** @format uuid */
5434
5434
  draftID: string;
5435
- role: "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
5435
+ role: UserDraftRoleEnum;
5436
5436
  user: User;
5437
5437
  }
5438
5438
  export interface UserDraftPaginated {
@@ -5456,7 +5456,7 @@ export interface UserGroupAccessScope {
5456
5456
  id: string;
5457
5457
  /** @format uuid */
5458
5458
  groupId: string;
5459
- scopeType: "User" | "Branch";
5459
+ scopeType: UserGroupAccessScopeScopeTypeEnum;
5460
5460
  /** @format uuid */
5461
5461
  userId?: string | null;
5462
5462
  /** @format uuid */
@@ -5489,24 +5489,29 @@ export interface UserLoan {
5489
5489
  deletedAt?: string | null;
5490
5490
  loanID: string;
5491
5491
  user: User;
5492
- role: "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
5492
+ role: UserLoanRoleEnum;
5493
5493
  /** @format int32 */
5494
5494
  borrowerPair?: number | null;
5495
5495
  /** @format int32 */
5496
5496
  borrowerPosition?: number | null;
5497
5497
  customLoanData?: CustomLoanData | null;
5498
+ consents: UserLoanConsent[];
5498
5499
  }
5499
5500
  export interface UserLoanConsent {
5500
5501
  /** @format uuid */
5501
5502
  id: string;
5502
5503
  /** @format uuid */
5503
5504
  userLoanID: string;
5504
- type: "Econsent" | "CreditAuthorization" | "Tcpa";
5505
+ type: UserLoanConsentTypeEnum;
5505
5506
  providedConsent: boolean;
5506
5507
  ipAddress?: string | null;
5507
- losSyncStatus: "NotStarted" | "Failed" | "Success";
5508
+ losSyncStatus: UserLoanConsentLosSyncStatusEnum;
5508
5509
  /** @format date-time */
5509
5510
  createdAt: string;
5511
+ /** @format date-time */
5512
+ updatedAt?: string | null;
5513
+ /** @format date-time */
5514
+ deletedAt?: string | null;
5510
5515
  }
5511
5516
  export interface UserLoanTask {
5512
5517
  /** @format uuid */
@@ -5641,7 +5646,7 @@ export interface UserSummary {
5641
5646
  id: string;
5642
5647
  name?: string | null;
5643
5648
  email?: string | null;
5644
- role: "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
5649
+ role: UserSummaryRoleEnum;
5645
5650
  }
5646
5651
  export interface VerifyPasswordRequest {
5647
5652
  /**
@@ -5674,6 +5679,70 @@ export interface Workflow {
5674
5679
  tileSubtitle: string;
5675
5680
  icon: string;
5676
5681
  }
5682
+ export type AccountBillingRequestBillingTypeEnum = "ClosedLoan" | "LoanOfficer";
5683
+ export type AuditLogEntryChangeTypeEnum = "Created" | "Modified" | "SoftDeleted" | "HardDeleted" | "Restored";
5684
+ export type CreateAccessScopeRequestScopeTypeEnum = "User" | "Branch";
5685
+ export type CreateAccountRequestEnvironmentEnum = "Development" | "Staging" | "UAT" | "Production";
5686
+ export type CreateCustomFieldDefinitionRequestDataTypeEnum = "String" | "Number" | "Decimal" | "Boolean" | "Date" | "SingleSelect" | "MultiSelect";
5687
+ export type CreateCustomFieldDefinitionRequestEntityTypeEnum = "Loan";
5688
+ export type CreateGroupMemberRequestLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
5689
+ /** @deprecated */
5690
+ export type CreateInviteRequestRelationshipEnum = "NotApplicable" | "Spouse" | "NonSpouse";
5691
+ export type CreateLoanImportRequestImportModeEnum = "All" | "NewOnly" | "UpdateOnly";
5692
+ export type CreateUserDraftLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
5693
+ export type CustomFieldDefinitionDataTypeEnum = "String" | "Number" | "Decimal" | "Boolean" | "Date" | "SingleSelect" | "MultiSelect";
5694
+ export type CustomFieldDefinitionEntityTypeEnum = "Loan";
5695
+ export type CustomFieldEntryDataTypeEnum = "String" | "Number" | "Decimal" | "Boolean" | "Date" | "SingleSelect" | "MultiSelect";
5696
+ export type CustomFieldPermissionRoleEnum = "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
5697
+ export type CustomFieldPermissionAccessLevelEnum = "NoAccess" | "ReadOnly" | "ReadWrite";
5698
+ export type CustomFieldPermissionRequestRoleEnum = "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
5699
+ export type CustomFieldPermissionRequestAccessLevelEnum = "NoAccess" | "ReadOnly" | "ReadWrite";
5700
+ export type CustomFieldValueDataTypeEnum = "String" | "Number" | "Decimal" | "Boolean" | "Date" | "SingleSelect" | "MultiSelect";
5701
+ export type DraftTypeEnum = "NewLoan" | "EditLoan";
5702
+ export type DraftContentTypeEnum = "NewLoan" | "EditLoan";
5703
+ export type EncompassCredentialsDetailSigningMethodEnum = "ConsumerConnect" | "POSF";
5704
+ export type EncompassCredentialsRequestSigningMethodEnum = "ConsumerConnect" | "POSF";
5705
+ export type EncompassRequestLogOperationTypeEnum = "FieldUpdate" | "ConsentUpdate" | "DocumentSync" | "MilestoneUpdate" | "DocumentAttachment" | "General" | "FieldReader";
5706
+ export type EncompassRequestLogOutcomeEnum = "Success" | "Failure" | "PartialSuccess";
5707
+ export type FusionReportFilterFilterTypeEnum = "DateGreaterThanOrEqualTo" | "DateGreaterThan" | "DateLessThan" | "DateLessThanOrEqualTo" | "DateEquals" | "DateDoesntEqual" | "DateNonEmpty" | "DateEmpty" | "StringContains" | "StringEquals" | "StringNotEmpty" | "StringNotEquals" | "StringNotContains";
5708
+ 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";
5709
+ export type LoanSigningMethodEnum = "ConsumerConnect" | "POSF";
5710
+ export type LoanBorrowerApplicationStatusEnum = "Draft" | "Complete";
5711
+ export type LoanContactRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
5712
+ export type LoanDocumentFolderPermissionRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
5713
+ export type LoanDocumentFolderPermissionLevelEnum = "None" | "Read" | "Write" | "Manage";
5714
+ export type LoanDocumentFolderPermissionRequestRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
5715
+ export type LoanDocumentFolderPermissionRequestLevelEnum = "None" | "Read" | "Write" | "Manage";
5716
+ export type LoanImportStatusEnum = "WaitingProcess" | "InProgress" | "Completed" | "Failed" | "Cancelled";
5717
+ export type LoanImportImportModeEnum = "All" | "NewOnly" | "UpdateOnly";
5718
+ export type LoanImportLogLevelEnum = "None" | "Info" | "Warning" | "Error";
5719
+ export type LoanLogLevelEnum = "None" | "Info" | "Warning" | "Error";
5720
+ export type LoanLogTypeEnum = "Loan" | "Queue" | "POSFlagChanged" | "Verification" | "DocumentUploaded" | "LoanCreated" | "WorkflowSubmitted" | "UserInvitationSent" | "CoBorrowerAdded" | "TaskCompleted" | "LoanStatusChanged" | "Consent" | "SensitiveDataPurge" | "ClosingDateUpdated" | "ConsumerConnectAssociation" | "TaskReminderSent";
5721
+ export type LoanLogDetailLevelEnum = "None" | "Info" | "Warning" | "Error";
5722
+ export type LoanLogDetailTypeEnum = "Loan" | "Queue" | "POSFlagChanged" | "Verification" | "DocumentUploaded" | "LoanCreated" | "WorkflowSubmitted" | "UserInvitationSent" | "CoBorrowerAdded" | "TaskCompleted" | "LoanStatusChanged" | "Consent" | "SensitiveDataPurge" | "ClosingDateUpdated" | "ConsumerConnectAssociation" | "TaskReminderSent";
5723
+ export type LoanTaskStatusSummaryStatusEnum = "Outstanding" | "Pending" | "Completed" | "Rejected" | "Unknown";
5724
+ export type LoanUserLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
5725
+ export type LosOperationTrackingStatusEnum = "Pending" | "Success" | "Failed" | "ConfigurationError" | "PermanentFailure" | "Locked";
5726
+ export type LosSyncStepSeverityEnum = "Success" | "Info" | "Warning" | "Error";
5727
+ export type SamlMetadataRequestSsoIntegrationEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
5728
+ export type SiteConfigurationTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
5729
+ export type SiteConfigurationByUrlTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
5730
+ export type SiteConfigurationReducedTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
5731
+ export type SiteConfigurationRequestTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
5732
+ export type SiteConfigurationSummaryTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
5733
+ export type UserDraftRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
5734
+ export type UserGroupAccessScopeScopeTypeEnum = "User" | "Branch";
5735
+ export type UserLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
5736
+ export type UserLoanConsentTypeEnum = "Econsent" | "CreditAuthorization" | "Tcpa";
5737
+ export type UserLoanConsentLosSyncStatusEnum = "NotStarted" | "Failed" | "Success";
5738
+ export type UserSummaryRoleEnum = "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
5739
+ export type GetCustomFieldDefinitionsParamsEntityTypeEnum = "Loan";
5740
+ /** @default "Realtor" */
5741
+ export type GetPartnersParamsRoleEnum = "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
5742
+ export type GetSamlMetadataParamsSSoIntegrationEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
5743
+ export type GetSamlMetadataParamsEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
5744
+ export type CreateOrReplaceSamlMetadataParamsSSoIntegrationEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
5745
+ export type CreateOrReplaceSamlMetadataParamsEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
5677
5746
  import type { AxiosInstance, AxiosRequestConfig, AxiosResponse, ResponseType } from "axios";
5678
5747
  export type QueryParamsType = Record<string | number, any>;
5679
5748
  export interface FullRequestParams extends Omit<AxiosRequestConfig, "data" | "params" | "url" | "responseType"> {
@@ -5697,7 +5766,6 @@ export interface ApiConfig<SecurityDataType = unknown> extends Omit<AxiosRequest
5697
5766
  format?: ResponseType;
5698
5767
  }
5699
5768
  export declare enum ContentType {
5700
- JsonPatch = "application/json-patch+json",
5701
5769
  Json = "application/json",
5702
5770
  JsonApi = "application/vnd.api+json",
5703
5771
  FormData = "multipart/form-data",
@@ -5719,7 +5787,7 @@ export declare class HttpClient<SecurityDataType = unknown> {
5719
5787
  }
5720
5788
  /**
5721
5789
  * @title The Big POS API
5722
- * @version v2.39.2
5790
+ * @version v2.40.0
5723
5791
  * @termsOfService https://www.thebigpos.com/terms-of-use/
5724
5792
  * @contact Mortgage Automation Technologies <support@thebigpos.com> (https://www.thebigpos.com/terms-of-use/)
5725
5793
  */
@@ -5733,7 +5801,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5733
5801
  * @secure
5734
5802
  * @response `200` `void` Success
5735
5803
  */
5736
- postRoot: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
5804
+ postRoot: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
5737
5805
  /**
5738
5806
  * No description
5739
5807
  *
@@ -5743,7 +5811,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5743
5811
  * @secure
5744
5812
  * @response `200` `string` Success
5745
5813
  */
5746
- getRoot: (params?: RequestParams) => Promise<AxiosResponse<string, any>>;
5814
+ getRoot: (params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
5747
5815
  api: {
5748
5816
  /**
5749
5817
  * No description
@@ -5756,7 +5824,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5756
5824
  * @response `200` `Account` Success
5757
5825
  * @response `404` `ProblemDetails` Not Found
5758
5826
  */
5759
- getMyAccount: (params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
5827
+ getMyAccount: (params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
5760
5828
  /**
5761
5829
  * No description
5762
5830
  *
@@ -5769,7 +5837,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5769
5837
  * @response `404` `ProblemDetails` Not Found
5770
5838
  * @response `422` `ProblemDetails` Client Error
5771
5839
  */
5772
- replaceMyAccount: (data: UpdateAccountRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
5840
+ replaceMyAccount: (data: UpdateAccountRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
5773
5841
  /**
5774
5842
  * No description
5775
5843
  *
@@ -5780,7 +5848,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5780
5848
  * @secure
5781
5849
  * @response `200` `SiteConfiguration` Success
5782
5850
  */
5783
- getSiteConfigurationByAccount: (params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
5851
+ getSiteConfigurationByAccount: (params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
5784
5852
  /**
5785
5853
  * No description
5786
5854
  *
@@ -5792,7 +5860,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5792
5860
  * @response `200` `SiteConfiguration` Success
5793
5861
  * @response `422` `UnprocessableEntity` Client Error
5794
5862
  */
5795
- updateSiteConfigurationForAccount: (data: SiteConfiguration, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
5863
+ updateSiteConfigurationForAccount: (data: SiteConfiguration, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
5796
5864
  /**
5797
5865
  * No description
5798
5866
  *
@@ -5803,7 +5871,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5803
5871
  * @secure
5804
5872
  * @response `200` `(Account)[]` Success
5805
5873
  */
5806
- getAccounts: (params?: RequestParams) => Promise<AxiosResponse<Account[], any>>;
5874
+ getAccounts: (params?: RequestParams) => Promise<AxiosResponse<Account[], any, {}>>;
5807
5875
  /**
5808
5876
  * No description
5809
5877
  *
@@ -5815,7 +5883,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5815
5883
  * @response `201` `Account` Created
5816
5884
  * @response `422` `ProblemDetails` Client Error
5817
5885
  */
5818
- createAccount: (data: CreateAccountRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
5886
+ createAccount: (data: CreateAccountRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
5819
5887
  /**
5820
5888
  * No description
5821
5889
  *
@@ -5827,7 +5895,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5827
5895
  * @response `201` `Account` Created
5828
5896
  * @response `422` `ProblemDetails` Client Error
5829
5897
  */
5830
- getAccount: (id: string, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
5898
+ getAccount: (id: string, params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
5831
5899
  /**
5832
5900
  * No description
5833
5901
  *
@@ -5843,7 +5911,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5843
5911
  deleteAccount: (id: string, query?: {
5844
5912
  /** @default false */
5845
5913
  hardDelete?: boolean;
5846
- }, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
5914
+ }, params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
5847
5915
  /**
5848
5916
  * No description
5849
5917
  *
@@ -5856,7 +5924,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5856
5924
  * @response `404` `ProblemDetails` Not Found
5857
5925
  * @response `422` `ProblemDetails` Client Error
5858
5926
  */
5859
- updateAccountBilling: (id: string, data: AccountBillingRequest, params?: RequestParams) => Promise<AxiosResponse<AccountBilling, any>>;
5927
+ updateAccountBilling: (id: string, data: AccountBillingRequest, params?: RequestParams) => Promise<AxiosResponse<AccountBilling, any, {}>>;
5860
5928
  /**
5861
5929
  * No description
5862
5930
  *
@@ -5874,7 +5942,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5874
5942
  pageNumber?: number;
5875
5943
  sortBy?: string;
5876
5944
  sortDirection?: string;
5877
- }, params?: RequestParams) => Promise<AxiosResponse<AuditLogEntryPaginated, any>>;
5945
+ }, params?: RequestParams) => Promise<AxiosResponse<AuditLogEntryPaginated, any, {}>>;
5878
5946
  /**
5879
5947
  * No description
5880
5948
  *
@@ -5885,7 +5953,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5885
5953
  * @secure
5886
5954
  * @response `200` `(AuditEntityType)[]` Success
5887
5955
  */
5888
- getAuditLogEntityTypes: (params?: RequestParams) => Promise<AxiosResponse<AuditEntityType[], any>>;
5956
+ getAuditLogEntityTypes: (params?: RequestParams) => Promise<AxiosResponse<AuditEntityType[], any, {}>>;
5889
5957
  /**
5890
5958
  * No description
5891
5959
  *
@@ -5897,7 +5965,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5897
5965
  * @response `200` `AuditLogEntry` Success
5898
5966
  * @response `404` `ProblemDetails` Not Found
5899
5967
  */
5900
- getAuditLogById: (id: string, params?: RequestParams) => Promise<AxiosResponse<AuditLogEntry, any>>;
5968
+ getAuditLogById: (id: string, params?: RequestParams) => Promise<AxiosResponse<AuditLogEntry, any, {}>>;
5901
5969
  /**
5902
5970
  * No description
5903
5971
  *
@@ -5910,7 +5978,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5910
5978
  * @response `401` `ProblemDetails` Unauthorized
5911
5979
  * @response `422` `UnprocessableEntity` Client Error
5912
5980
  */
5913
- getTokenFromRefreshToken: (data: RefreshTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any>>;
5981
+ getTokenFromRefreshToken: (data: RefreshTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any, {}>>;
5914
5982
  /**
5915
5983
  * No description
5916
5984
  *
@@ -5922,7 +5990,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5922
5990
  * @response `200` `ForcePasswordReset` Success
5923
5991
  * @response `422` `UnprocessableEntity` Client Error
5924
5992
  */
5925
- getToken: (data: TokenRequest, params?: RequestParams) => Promise<AxiosResponse<ForcePasswordReset, any>>;
5993
+ getToken: (data: TokenRequest, params?: RequestParams) => Promise<AxiosResponse<ForcePasswordReset, any, {}>>;
5926
5994
  /**
5927
5995
  * No description
5928
5996
  *
@@ -5934,7 +6002,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5934
6002
  * @response `200` `ForcePasswordReset` Success
5935
6003
  * @response `422` `UnprocessableEntity` Client Error
5936
6004
  */
5937
- getTokenFromChallengeCode: (data: TokenChallengeRequest, params?: RequestParams) => Promise<AxiosResponse<ForcePasswordReset, any>>;
6005
+ getTokenFromChallengeCode: (data: TokenChallengeRequest, params?: RequestParams) => Promise<AxiosResponse<ForcePasswordReset, any, {}>>;
5938
6006
  /**
5939
6007
  * No description
5940
6008
  *
@@ -5946,7 +6014,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5946
6014
  * @response `200` `Token` Success
5947
6015
  * @response `422` `UnprocessableEntity` Client Error
5948
6016
  */
5949
- getSystemToken: (data: SystemTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any>>;
6017
+ getSystemToken: (data: SystemTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any, {}>>;
5950
6018
  /**
5951
6019
  * No description
5952
6020
  *
@@ -5958,7 +6026,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5958
6026
  * @response `200` `SSOToken` Success
5959
6027
  * @response `422` `UnprocessableEntity` Client Error
5960
6028
  */
5961
- getSsoToken: (data: SSOTokenRequest, params?: RequestParams) => Promise<AxiosResponse<SSOToken, any>>;
6029
+ getSsoToken: (data: SSOTokenRequest, params?: RequestParams) => Promise<AxiosResponse<SSOToken, any, {}>>;
5962
6030
  /**
5963
6031
  * No description
5964
6032
  *
@@ -5970,7 +6038,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5970
6038
  * @response `204` `NoContentResult` No Content
5971
6039
  * @response `422` `UnprocessableEntity` Client Error
5972
6040
  */
5973
- logOut: (params?: RequestParams) => Promise<AxiosResponse<NoContentResult, any>>;
6041
+ logOut: (params?: RequestParams) => Promise<AxiosResponse<NoContentResult, any, {}>>;
5974
6042
  /**
5975
6043
  * No description
5976
6044
  *
@@ -5989,7 +6057,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5989
6057
  pageNumber?: number;
5990
6058
  sortBy?: string;
5991
6059
  sortDirection?: string;
5992
- }, params?: RequestParams) => Promise<AxiosResponse<GetBranchPaginated, any>>;
6060
+ }, params?: RequestParams) => Promise<AxiosResponse<GetBranchPaginated, any, {}>>;
5993
6061
  /**
5994
6062
  * No description
5995
6063
  *
@@ -6001,7 +6069,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6001
6069
  * @response `200` `GetBranch` Success
6002
6070
  * @response `422` `UnprocessableEntity` Client Error
6003
6071
  */
6004
- createBranch: (data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any>>;
6072
+ createBranch: (data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any, {}>>;
6005
6073
  /**
6006
6074
  * No description
6007
6075
  *
@@ -6019,7 +6087,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6019
6087
  pageNumber?: number;
6020
6088
  sortBy?: string;
6021
6089
  sortDirection?: string;
6022
- }, params?: RequestParams) => Promise<AxiosResponse<GetBranchPaginated, any>>;
6090
+ }, params?: RequestParams) => Promise<AxiosResponse<GetBranchPaginated, any, {}>>;
6023
6091
  /**
6024
6092
  * No description
6025
6093
  *
@@ -6030,7 +6098,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6030
6098
  * @secure
6031
6099
  * @response `200` `GetBranch` Success
6032
6100
  */
6033
- getBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any>>;
6101
+ getBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any, {}>>;
6034
6102
  /**
6035
6103
  * No description
6036
6104
  *
@@ -6042,7 +6110,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6042
6110
  * @response `200` `GetBranch` Success
6043
6111
  * @response `422` `UnprocessableEntity` Client Error
6044
6112
  */
6045
- replaceBranch: (branchId: string, data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any>>;
6113
+ replaceBranch: (branchId: string, data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any, {}>>;
6046
6114
  /**
6047
6115
  * No description
6048
6116
  *
@@ -6053,7 +6121,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6053
6121
  * @secure
6054
6122
  * @response `204` `void` No Content
6055
6123
  */
6056
- deleteBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6124
+ deleteBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
6057
6125
  /**
6058
6126
  * No description
6059
6127
  *
@@ -6065,7 +6133,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6065
6133
  * @response `204` `void` No Content
6066
6134
  * @response `400` `ProblemDetails` Bad Request
6067
6135
  */
6068
- restoreBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6136
+ restoreBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
6069
6137
  /**
6070
6138
  * No description
6071
6139
  *
@@ -6077,7 +6145,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6077
6145
  * @response `200` `SiteConfiguration` Success
6078
6146
  * @response `422` `UnprocessableEntity` Client Error
6079
6147
  */
6080
- createBranchSiteConfiguration: (branchId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
6148
+ createBranchSiteConfiguration: (branchId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
6081
6149
  /**
6082
6150
  * No description
6083
6151
  *
@@ -6088,7 +6156,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6088
6156
  * @secure
6089
6157
  * @response `200` `SiteConfigurationWithInherited` Success
6090
6158
  */
6091
- getBranchSiteConfiguration: (branchId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
6159
+ getBranchSiteConfiguration: (branchId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any, {}>>;
6092
6160
  /**
6093
6161
  * No description
6094
6162
  *
@@ -6102,7 +6170,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6102
6170
  */
6103
6171
  replaceBranchSiteConfiguration: (branchId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
6104
6172
  applyToChildren?: boolean;
6105
- }, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
6173
+ }, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
6106
6174
  /**
6107
6175
  * No description
6108
6176
  *
@@ -6113,7 +6181,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6113
6181
  * @secure
6114
6182
  * @response `200` `(LoanOfficerPublic)[]` Success
6115
6183
  */
6116
- getLoanOfficersByBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic[], any>>;
6184
+ getLoanOfficersByBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic[], any, {}>>;
6117
6185
  /**
6118
6186
  * No description
6119
6187
  *
@@ -6126,7 +6194,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6126
6194
  */
6127
6195
  getBusinessRules: (query?: {
6128
6196
  showAll?: boolean;
6129
- }, params?: RequestParams) => Promise<AxiosResponse<BusinessRule[], any>>;
6197
+ }, params?: RequestParams) => Promise<AxiosResponse<BusinessRule[], any, {}>>;
6130
6198
  /**
6131
6199
  * No description
6132
6200
  *
@@ -6138,7 +6206,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6138
6206
  * @response `200` `BusinessRule` Success
6139
6207
  * @response `422` `UnprocessableEntity` Client Error
6140
6208
  */
6141
- createBusinessRule: (data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
6209
+ createBusinessRule: (data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any, {}>>;
6142
6210
  /**
6143
6211
  * No description
6144
6212
  *
@@ -6149,7 +6217,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6149
6217
  * @secure
6150
6218
  * @response `200` `BusinessRule` Success
6151
6219
  */
6152
- getBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
6220
+ getBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any, {}>>;
6153
6221
  /**
6154
6222
  * No description
6155
6223
  *
@@ -6161,7 +6229,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6161
6229
  * @response `200` `BusinessRule` Success
6162
6230
  * @response `422` `UnprocessableEntity` Client Error
6163
6231
  */
6164
- replaceBusinessRule: (id: string, data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
6232
+ replaceBusinessRule: (id: string, data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any, {}>>;
6165
6233
  /**
6166
6234
  * No description
6167
6235
  *
@@ -6172,7 +6240,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6172
6240
  * @secure
6173
6241
  * @response `204` `void` No Content
6174
6242
  */
6175
- deleteBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6243
+ deleteBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
6176
6244
  /**
6177
6245
  * No description
6178
6246
  *
@@ -6183,7 +6251,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6183
6251
  * @secure
6184
6252
  * @response `200` `BusinessRule` Success
6185
6253
  */
6186
- restoreBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
6254
+ restoreBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any, {}>>;
6187
6255
  /**
6188
6256
  * @description Returns closed loan counts per account within the specified date range, including POS vs non-POS breakdown and utilization ratios.
6189
6257
  *
@@ -6194,7 +6262,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6194
6262
  * @secure
6195
6263
  * @response `200` `ClosedLoansReport` Success
6196
6264
  */
6197
- getClosedLoansReport: (data: ClosedLoansReportRequest, params?: RequestParams) => Promise<AxiosResponse<ClosedLoansReport, any>>;
6265
+ getClosedLoansReport: (data: ClosedLoansReportRequest, params?: RequestParams) => Promise<AxiosResponse<ClosedLoansReport, any, {}>>;
6198
6266
  /**
6199
6267
  * No description
6200
6268
  *
@@ -6205,7 +6273,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6205
6273
  * @secure
6206
6274
  * @response `200` `(ConsumerConnectStatus)[]` Success
6207
6275
  */
6208
- getConsumerConnectStatus: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<ConsumerConnectStatus[], any>>;
6276
+ getConsumerConnectStatus: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<ConsumerConnectStatus[], any, {}>>;
6209
6277
  /**
6210
6278
  * No description
6211
6279
  *
@@ -6216,7 +6284,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6216
6284
  * @secure
6217
6285
  * @response `200` `(ConsumerConnectRetry)[]` Success
6218
6286
  */
6219
- retryConsumerConnectAssociation: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<ConsumerConnectRetry[], any>>;
6287
+ retryConsumerConnectAssociation: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<ConsumerConnectRetry[], any, {}>>;
6220
6288
  /**
6221
6289
  * No description
6222
6290
  *
@@ -6235,7 +6303,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6235
6303
  pageNumber?: number;
6236
6304
  sortBy?: string;
6237
6305
  sortDirection?: string;
6238
- }, params?: RequestParams) => Promise<AxiosResponse<CorporatePaginated, any>>;
6306
+ }, params?: RequestParams) => Promise<AxiosResponse<CorporatePaginated, any, {}>>;
6239
6307
  /**
6240
6308
  * No description
6241
6309
  *
@@ -6247,7 +6315,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6247
6315
  * @response `200` `Corporate` Success
6248
6316
  * @response `422` `UnprocessableEntity` Client Error
6249
6317
  */
6250
- createCorporate: (data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any>>;
6318
+ createCorporate: (data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any, {}>>;
6251
6319
  /**
6252
6320
  * No description
6253
6321
  *
@@ -6265,7 +6333,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6265
6333
  pageNumber?: number;
6266
6334
  sortBy?: string;
6267
6335
  sortDirection?: string;
6268
- }, params?: RequestParams) => Promise<AxiosResponse<CorporatePaginated, any>>;
6336
+ }, params?: RequestParams) => Promise<AxiosResponse<CorporatePaginated, any, {}>>;
6269
6337
  /**
6270
6338
  * No description
6271
6339
  *
@@ -6276,7 +6344,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6276
6344
  * @secure
6277
6345
  * @response `200` `Corporate` Success
6278
6346
  */
6279
- getCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<Corporate, any>>;
6347
+ getCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<Corporate, any, {}>>;
6280
6348
  /**
6281
6349
  * No description
6282
6350
  *
@@ -6288,7 +6356,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6288
6356
  * @response `200` `Corporate` Success
6289
6357
  * @response `422` `UnprocessableEntity` Client Error
6290
6358
  */
6291
- replaceCorporate: (id: string, data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any>>;
6359
+ replaceCorporate: (id: string, data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any, {}>>;
6292
6360
  /**
6293
6361
  * No description
6294
6362
  *
@@ -6299,7 +6367,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6299
6367
  * @secure
6300
6368
  * @response `204` `void` No Content
6301
6369
  */
6302
- deleteCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6370
+ deleteCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
6303
6371
  /**
6304
6372
  * No description
6305
6373
  *
@@ -6310,7 +6378,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6310
6378
  * @secure
6311
6379
  * @response `204` `void` No Content
6312
6380
  */
6313
- restoreCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6381
+ restoreCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
6314
6382
  /**
6315
6383
  * No description
6316
6384
  *
@@ -6322,7 +6390,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6322
6390
  * @response `200` `SiteConfiguration` Success
6323
6391
  * @response `422` `UnprocessableEntity` Client Error
6324
6392
  */
6325
- createCorporateSiteConfiguration: (corporateId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
6393
+ createCorporateSiteConfiguration: (corporateId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
6326
6394
  /**
6327
6395
  * No description
6328
6396
  *
@@ -6333,7 +6401,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6333
6401
  * @secure
6334
6402
  * @response `200` `SiteConfigurationWithInherited` Success
6335
6403
  */
6336
- getCorporateSiteConfiguration: (corporateId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
6404
+ getCorporateSiteConfiguration: (corporateId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any, {}>>;
6337
6405
  /**
6338
6406
  * No description
6339
6407
  *
@@ -6347,7 +6415,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6347
6415
  */
6348
6416
  replaceCorporateSiteConfiguration: (corporateId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
6349
6417
  applyToChildren?: boolean;
6350
- }, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
6418
+ }, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
6351
6419
  /**
6352
6420
  * No description
6353
6421
  *
@@ -6358,7 +6426,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6358
6426
  * @secure
6359
6427
  * @response `200` `(BranchReduced)[]` Success
6360
6428
  */
6361
- getBranchesByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchReduced[], any>>;
6429
+ getBranchesByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchReduced[], any, {}>>;
6362
6430
  /**
6363
6431
  * No description
6364
6432
  *
@@ -6369,7 +6437,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6369
6437
  * @secure
6370
6438
  * @response `200` `(LoanOfficerPublic)[]` Success
6371
6439
  */
6372
- getLoanOfficersByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic[], any>>;
6440
+ getLoanOfficersByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic[], any, {}>>;
6373
6441
  /**
6374
6442
  * No description
6375
6443
  *
@@ -6381,8 +6449,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6381
6449
  * @response `200` `(CustomFieldDefinition)[]` Success
6382
6450
  */
6383
6451
  getCustomFieldDefinitions: (query?: {
6384
- entityType?: "Loan";
6385
- }, params?: RequestParams) => Promise<AxiosResponse<CustomFieldDefinition[], any>>;
6452
+ entityType?: GetCustomFieldDefinitionsParamsEntityTypeEnum;
6453
+ }, params?: RequestParams) => Promise<AxiosResponse<CustomFieldDefinition[], any, {}>>;
6386
6454
  /**
6387
6455
  * No description
6388
6456
  *
@@ -6395,7 +6463,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6395
6463
  * @response `409` `ProblemDetails` Conflict
6396
6464
  * @response `422` `ProblemDetails` Client Error
6397
6465
  */
6398
- createCustomFieldDefinition: (data: CreateCustomFieldDefinitionRequest, params?: RequestParams) => Promise<AxiosResponse<CustomFieldDefinition, any>>;
6466
+ createCustomFieldDefinition: (data: CreateCustomFieldDefinitionRequest, params?: RequestParams) => Promise<AxiosResponse<CustomFieldDefinition, any, {}>>;
6399
6467
  /**
6400
6468
  * No description
6401
6469
  *
@@ -6407,7 +6475,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6407
6475
  * @response `200` `CustomFieldDefinition` Success
6408
6476
  * @response `404` `ProblemDetails` Not Found
6409
6477
  */
6410
- getCustomFieldDefinitionById: (id: string, params?: RequestParams) => Promise<AxiosResponse<CustomFieldDefinition, any>>;
6478
+ getCustomFieldDefinitionById: (id: string, params?: RequestParams) => Promise<AxiosResponse<CustomFieldDefinition, any, {}>>;
6411
6479
  /**
6412
6480
  * No description
6413
6481
  *
@@ -6422,7 +6490,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6422
6490
  * @response `409` `ProblemDetails` Conflict
6423
6491
  * @response `422` `ProblemDetails` Client Error
6424
6492
  */
6425
- updateCustomFieldDefinition: (id: string, data: UpdateCustomFieldDefinitionRequest, params?: RequestParams) => Promise<AxiosResponse<CustomFieldDefinition, any>>;
6493
+ updateCustomFieldDefinition: (id: string, data: UpdateCustomFieldDefinitionRequest, params?: RequestParams) => Promise<AxiosResponse<CustomFieldDefinition, any, {}>>;
6426
6494
  /**
6427
6495
  * No description
6428
6496
  *
@@ -6435,7 +6503,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6435
6503
  * @response `404` `ProblemDetails` Not Found
6436
6504
  * @response `409` `ProblemDetails` Conflict
6437
6505
  */
6438
- deleteCustomFieldDefinition: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6506
+ deleteCustomFieldDefinition: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
6439
6507
  /**
6440
6508
  * No description
6441
6509
  *
@@ -6447,7 +6515,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6447
6515
  * @response `204` `void` No Content
6448
6516
  * @response `404` `ProblemDetails` Not Found
6449
6517
  */
6450
- disableCustomFieldDefinition: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6518
+ disableCustomFieldDefinition: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
6451
6519
  /**
6452
6520
  * No description
6453
6521
  *
@@ -6459,7 +6527,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6459
6527
  * @response `204` `void` No Content
6460
6528
  * @response `404` `ProblemDetails` Not Found
6461
6529
  */
6462
- enableCustomFieldDefinition: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6530
+ enableCustomFieldDefinition: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
6463
6531
  /**
6464
6532
  * No description
6465
6533
  *
@@ -6479,7 +6547,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6479
6547
  pageNumber?: number;
6480
6548
  sortBy?: string;
6481
6549
  sortDirection?: string;
6482
- }, params?: RequestParams) => Promise<AxiosResponse<DevicePaginated, any>>;
6550
+ }, params?: RequestParams) => Promise<AxiosResponse<DevicePaginated, any, {}>>;
6483
6551
  /**
6484
6552
  * No description
6485
6553
  *
@@ -6490,7 +6558,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6490
6558
  * @secure
6491
6559
  * @response `200` `Device` Success
6492
6560
  */
6493
- getDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<Device, any>>;
6561
+ getDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<Device, any, {}>>;
6494
6562
  /**
6495
6563
  * No description
6496
6564
  *
@@ -6501,7 +6569,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6501
6569
  * @secure
6502
6570
  * @response `200` `Device` Success
6503
6571
  */
6504
- updateDevice: (id: string, data: DeviceRequest, params?: RequestParams) => Promise<AxiosResponse<Device, any>>;
6572
+ updateDevice: (id: string, data: DeviceRequest, params?: RequestParams) => Promise<AxiosResponse<Device, any, {}>>;
6505
6573
  /**
6506
6574
  * No description
6507
6575
  *
@@ -6512,7 +6580,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6512
6580
  * @secure
6513
6581
  * @response `200` `DeviceMDM` Success
6514
6582
  */
6515
- getDeviceBySerialNumber: (sn: string, params?: RequestParams) => Promise<AxiosResponse<DeviceMDM, any>>;
6583
+ getDeviceBySerialNumber: (sn: string, params?: RequestParams) => Promise<AxiosResponse<DeviceMDM, any, {}>>;
6516
6584
  /**
6517
6585
  * No description
6518
6586
  *
@@ -6523,7 +6591,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6523
6591
  * @secure
6524
6592
  * @response `200` `Action` Success
6525
6593
  */
6526
- createDeviceActionBySerialNumber: (sn: string, actionName: string, params?: RequestParams) => Promise<AxiosResponse<Action, any>>;
6594
+ createDeviceActionBySerialNumber: (sn: string, actionName: string, params?: RequestParams) => Promise<AxiosResponse<Action, any, {}>>;
6527
6595
  /**
6528
6596
  * No description
6529
6597
  *
@@ -6537,7 +6605,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6537
6605
  getDocumentBuckets: (query?: {
6538
6606
  /** @default false */
6539
6607
  includeSystemBuckets?: boolean;
6540
- }, params?: RequestParams) => Promise<AxiosResponse<string[], any>>;
6608
+ }, params?: RequestParams) => Promise<AxiosResponse<string[], any, {}>>;
6541
6609
  /**
6542
6610
  * No description
6543
6611
  *
@@ -6550,7 +6618,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6550
6618
  */
6551
6619
  getDocumentTemplates: (query?: {
6552
6620
  showAll?: boolean;
6553
- }, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase[], any>>;
6621
+ }, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase[], any, {}>>;
6554
6622
  /**
6555
6623
  * No description
6556
6624
  *
@@ -6563,7 +6631,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6563
6631
  * @response `404` `ProblemDetails` Not Found
6564
6632
  * @response `422` `UnprocessableEntity` Client Error
6565
6633
  */
6566
- createDocumentTemplate: (data: CreateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any>>;
6634
+ createDocumentTemplate: (data: CreateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any, {}>>;
6567
6635
  /**
6568
6636
  * No description
6569
6637
  *
@@ -6579,7 +6647,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6579
6647
  showAll?: boolean;
6580
6648
  /** @default true */
6581
6649
  publishedOnly?: boolean;
6582
- }, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase[], any>>;
6650
+ }, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase[], any, {}>>;
6583
6651
  /**
6584
6652
  * No description
6585
6653
  *
@@ -6591,7 +6659,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6591
6659
  * @response `200` `DocumentTemplate` Success
6592
6660
  * @response `404` `ProblemDetails` Not Found
6593
6661
  */
6594
- getDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplate, any>>;
6662
+ getDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplate, any, {}>>;
6595
6663
  /**
6596
6664
  * No description
6597
6665
  *
@@ -6605,7 +6673,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6605
6673
  * @response `404` `ProblemDetails` Not Found
6606
6674
  * @response `422` `UnprocessableEntity` Client Error
6607
6675
  */
6608
- replaceDocumentTemplate: (id: string, data: UpdateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any>>;
6676
+ replaceDocumentTemplate: (id: string, data: UpdateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any, {}>>;
6609
6677
  /**
6610
6678
  * No description
6611
6679
  *
@@ -6618,7 +6686,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6618
6686
  * @response `401` `ProblemDetails` Unauthorized
6619
6687
  * @response `404` `ProblemDetails` Not Found
6620
6688
  */
6621
- deleteDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6689
+ deleteDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
6622
6690
  /**
6623
6691
  * No description
6624
6692
  *
@@ -6631,7 +6699,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6631
6699
  * @response `401` `ProblemDetails` Unauthorized
6632
6700
  * @response `404` `ProblemDetails` Not Found
6633
6701
  */
6634
- restoreDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6702
+ restoreDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
6635
6703
  /**
6636
6704
  * No description
6637
6705
  *
@@ -6642,7 +6710,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6642
6710
  * @secure
6643
6711
  * @response `200` `(DocumentTemplateVersion)[]` Success
6644
6712
  */
6645
- getDocumentTemplateVersions: (documentId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion[], any>>;
6713
+ getDocumentTemplateVersions: (documentId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion[], any, {}>>;
6646
6714
  /**
6647
6715
  * No description
6648
6716
  *
@@ -6653,7 +6721,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6653
6721
  * @secure
6654
6722
  * @response `200` `DocumentTemplateVersion` Success
6655
6723
  */
6656
- createDocumentTemplateVersion: (documentId: string, data: DocumentTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
6724
+ createDocumentTemplateVersion: (documentId: string, data: DocumentTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any, {}>>;
6657
6725
  /**
6658
6726
  * No description
6659
6727
  *
@@ -6664,7 +6732,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6664
6732
  * @secure
6665
6733
  * @response `200` `DocumentTemplateVersion` Success
6666
6734
  */
6667
- getDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
6735
+ getDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any, {}>>;
6668
6736
  /**
6669
6737
  * No description
6670
6738
  *
@@ -6675,7 +6743,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6675
6743
  * @secure
6676
6744
  * @response `200` `DocumentTemplateVersion` Success
6677
6745
  */
6678
- replaceDocumentTemplateVersion: (documentId: string, id: string, data: DocumentTemplateVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
6746
+ replaceDocumentTemplateVersion: (documentId: string, id: string, data: DocumentTemplateVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any, {}>>;
6679
6747
  /**
6680
6748
  * No description
6681
6749
  *
@@ -6686,7 +6754,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6686
6754
  * @secure
6687
6755
  * @response `200` `DocumentTemplateVersion` Success
6688
6756
  */
6689
- deleteDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
6757
+ deleteDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any, {}>>;
6690
6758
  /**
6691
6759
  * No description
6692
6760
  *
@@ -6697,7 +6765,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6697
6765
  * @response `200` `EncompassCustomFieldMapping` Success
6698
6766
  * @response `404` `void` Not Found
6699
6767
  */
6700
- getEncompassCustomFieldMapping: (definitionId: string, params?: RequestParams) => Promise<AxiosResponse<EncompassCustomFieldMapping, any>>;
6768
+ getEncompassCustomFieldMapping: (definitionId: string, params?: RequestParams) => Promise<AxiosResponse<EncompassCustomFieldMapping, any, {}>>;
6701
6769
  /**
6702
6770
  * No description
6703
6771
  *
@@ -6711,7 +6779,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6711
6779
  * @response `409` `void` Conflict
6712
6780
  * @response `422` `ProblemDetails` Client Error
6713
6781
  */
6714
- addEncompassCustomFieldMapping: (definitionId: string, data: EncompassCustomFieldMappingRequest, params?: RequestParams) => Promise<AxiosResponse<EncompassCustomFieldMapping, any>>;
6782
+ addEncompassCustomFieldMapping: (definitionId: string, data: EncompassCustomFieldMappingRequest, params?: RequestParams) => Promise<AxiosResponse<EncompassCustomFieldMapping, any, {}>>;
6715
6783
  /**
6716
6784
  * No description
6717
6785
  *
@@ -6723,7 +6791,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6723
6791
  * @response `404` `void` Not Found
6724
6792
  * @response `409` `void` Conflict
6725
6793
  */
6726
- deleteEncompassCustomFieldMapping: (definitionId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6794
+ deleteEncompassCustomFieldMapping: (definitionId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
6727
6795
  /**
6728
6796
  * No description
6729
6797
  *
@@ -6734,7 +6802,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6734
6802
  * @response `204` `void` No Content
6735
6803
  * @response `404` `void` Not Found
6736
6804
  */
6737
- disableEncompassCustomFieldMapping: (definitionId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6805
+ disableEncompassCustomFieldMapping: (definitionId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
6738
6806
  /**
6739
6807
  * No description
6740
6808
  *
@@ -6745,7 +6813,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6745
6813
  * @response `204` `void` No Content
6746
6814
  * @response `404` `void` Not Found
6747
6815
  */
6748
- enableEncompassCustomFieldMapping: (definitionId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6816
+ enableEncompassCustomFieldMapping: (definitionId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
6749
6817
  /**
6750
6818
  * No description
6751
6819
  *
@@ -6756,7 +6824,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6756
6824
  * @response `200` `(EncompassFieldListItem)[]` Success
6757
6825
  * @response `502` `ProblemDetails` Server Error
6758
6826
  */
6759
- getEncompassFields: (params?: RequestParams) => Promise<AxiosResponse<EncompassFieldListItem[], any>>;
6827
+ getEncompassFields: (params?: RequestParams) => Promise<AxiosResponse<EncompassFieldListItem[], any, {}>>;
6760
6828
  /**
6761
6829
  * No description
6762
6830
  *
@@ -6784,7 +6852,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6784
6852
  pageSize?: number;
6785
6853
  /** @format uuid */
6786
6854
  loanId?: string;
6787
- }, params?: RequestParams) => Promise<AxiosResponse<EncompassPackageList, any>>;
6855
+ }, params?: RequestParams) => Promise<AxiosResponse<EncompassPackageList, any, {}>>;
6788
6856
  /**
6789
6857
  * No description
6790
6858
  *
@@ -6796,7 +6864,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6796
6864
  * @response `401` `EncompassError` Unauthorized
6797
6865
  * @response `500` `EncompassError` Server Error
6798
6866
  */
6799
- getUserRecipients: (params?: RequestParams) => Promise<AxiosResponse<EncompassRecipientItem[], any>>;
6867
+ getUserRecipients: (params?: RequestParams) => Promise<AxiosResponse<EncompassRecipientItem[], any, {}>>;
6800
6868
  /**
6801
6869
  * No description
6802
6870
  *
@@ -6811,7 +6879,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6811
6879
  * @response `404` `EncompassError` Not Found
6812
6880
  * @response `500` `EncompassError` Server Error
6813
6881
  */
6814
- createEncompassSession: (data: CreateSessionRequest, params?: RequestParams) => Promise<AxiosResponse<CreateSession, any>>;
6882
+ createEncompassSession: (data: CreateSessionRequest, params?: RequestParams) => Promise<AxiosResponse<CreateSession, any, {}>>;
6815
6883
  /**
6816
6884
  * No description
6817
6885
  *
@@ -6831,7 +6899,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6831
6899
  sortDirection?: string;
6832
6900
  /** @default false */
6833
6901
  includeDeleted?: boolean;
6834
- }, params?: RequestParams) => Promise<AxiosResponse<FilePaginated, any>>;
6902
+ }, params?: RequestParams) => Promise<AxiosResponse<FilePaginated, any, {}>>;
6835
6903
  /**
6836
6904
  * No description
6837
6905
  *
@@ -6849,7 +6917,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6849
6917
  file?: File;
6850
6918
  isPublic?: boolean;
6851
6919
  bucket?: string;
6852
- }, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
6920
+ }, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
6853
6921
  /**
6854
6922
  * No description
6855
6923
  *
@@ -6860,7 +6928,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6860
6928
  * @secure
6861
6929
  * @response `201` `File` Created
6862
6930
  */
6863
- getFileById: (id: string, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
6931
+ getFileById: (id: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
6864
6932
  /**
6865
6933
  * No description
6866
6934
  *
@@ -6872,7 +6940,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6872
6940
  * @response `200` `string` Success
6873
6941
  * @response `422` `UnprocessableEntity` Client Error
6874
6942
  */
6875
- replaceFile: (id: string, data: FileRequest, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
6943
+ replaceFile: (id: string, data: FileRequest, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
6876
6944
  /**
6877
6945
  * No description
6878
6946
  *
@@ -6883,7 +6951,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6883
6951
  * @secure
6884
6952
  * @response `204` `void` No Content
6885
6953
  */
6886
- deleteFile: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6954
+ deleteFile: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
6887
6955
  /**
6888
6956
  * No description
6889
6957
  *
@@ -6901,7 +6969,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6901
6969
  pageNumber?: number;
6902
6970
  sortBy?: string;
6903
6971
  sortDirection?: string;
6904
- }, params?: RequestParams) => Promise<AxiosResponse<FilePaginated, any>>;
6972
+ }, params?: RequestParams) => Promise<AxiosResponse<FilePaginated, any, {}>>;
6905
6973
  /**
6906
6974
  * No description
6907
6975
  *
@@ -6914,7 +6982,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6914
6982
  */
6915
6983
  getForms: (query?: {
6916
6984
  showAll?: boolean;
6917
- }, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms[], any>>;
6985
+ }, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms[], any, {}>>;
6918
6986
  /**
6919
6987
  * No description
6920
6988
  *
@@ -6926,7 +6994,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6926
6994
  * @response `201` `Form` Created
6927
6995
  * @response `422` `UnprocessableEntity` Client Error
6928
6996
  */
6929
- createForm: (data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<Form, any>>;
6997
+ createForm: (data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<Form, any, {}>>;
6930
6998
  /**
6931
6999
  * No description
6932
7000
  *
@@ -6937,7 +7005,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6937
7005
  * @secure
6938
7006
  * @response `200` `Form` Success
6939
7007
  */
6940
- getForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<Form, any>>;
7008
+ getForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<Form, any, {}>>;
6941
7009
  /**
6942
7010
  * No description
6943
7011
  *
@@ -6949,7 +7017,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6949
7017
  * @response `200` `Form` Success
6950
7018
  * @response `422` `UnprocessableEntity` Client Error
6951
7019
  */
6952
- replaceForm: (id: string, data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<Form, any>>;
7020
+ replaceForm: (id: string, data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<Form, any, {}>>;
6953
7021
  /**
6954
7022
  * No description
6955
7023
  *
@@ -6960,7 +7028,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6960
7028
  * @secure
6961
7029
  * @response `204` `void` No Content
6962
7030
  */
6963
- deleteForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7031
+ deleteForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
6964
7032
  /**
6965
7033
  * No description
6966
7034
  *
@@ -6971,7 +7039,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6971
7039
  * @secure
6972
7040
  * @response `200` `Form` Success
6973
7041
  */
6974
- restoreForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<Form, any>>;
7042
+ restoreForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<Form, any, {}>>;
6975
7043
  /**
6976
7044
  * No description
6977
7045
  *
@@ -6986,7 +7054,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6986
7054
  /** @format binary */
6987
7055
  file?: File;
6988
7056
  name?: string;
6989
- }, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionFile, any>>;
7057
+ }, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionFile, any, {}>>;
6990
7058
  /**
6991
7059
  * No description
6992
7060
  *
@@ -6997,7 +7065,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6997
7065
  * @secure
6998
7066
  * @response `204` `void` No Content
6999
7067
  */
7000
- deleteFormSubmissionFile: (formSubmissionFileId: string, formSubmissionId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7068
+ deleteFormSubmissionFile: (formSubmissionFileId: string, formSubmissionId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
7001
7069
  /**
7002
7070
  * No description
7003
7071
  *
@@ -7011,7 +7079,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7011
7079
  downloadFormSubmissionFile: (formSubmissionFileId: string, formSubmissionId: string, query?: {
7012
7080
  /** @format uuid */
7013
7081
  siteConfigurationId?: string;
7014
- }, params?: RequestParams) => Promise<AxiosResponse<FileWithBytes, any>>;
7082
+ }, params?: RequestParams) => Promise<AxiosResponse<FileWithBytes, any, {}>>;
7015
7083
  /**
7016
7084
  * No description
7017
7085
  *
@@ -7029,7 +7097,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7029
7097
  pageNumber?: number;
7030
7098
  sortBy?: string;
7031
7099
  sortDirection?: string;
7032
- }, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionPaginated, any>>;
7100
+ }, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionPaginated, any, {}>>;
7033
7101
  /**
7034
7102
  * No description
7035
7103
  *
@@ -7042,7 +7110,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7042
7110
  */
7043
7111
  createFormSubmission: (data: FormSubmissionRequest, query?: {
7044
7112
  formID?: string;
7045
- }, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any>>;
7113
+ }, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any, {}>>;
7046
7114
  /**
7047
7115
  * No description
7048
7116
  *
@@ -7053,7 +7121,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7053
7121
  * @secure
7054
7122
  * @response `200` `FormSubmission` Success
7055
7123
  */
7056
- getFormSubmission: (id: string, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any>>;
7124
+ getFormSubmission: (id: string, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any, {}>>;
7057
7125
  /**
7058
7126
  * No description
7059
7127
  *
@@ -7064,7 +7132,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7064
7132
  * @secure
7065
7133
  * @response `200` `FormSubmission` Success
7066
7134
  */
7067
- replaceFormSubmission: (id: string, data: FormSubmissionRequest, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any>>;
7135
+ replaceFormSubmission: (id: string, data: FormSubmissionRequest, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any, {}>>;
7068
7136
  /**
7069
7137
  * No description
7070
7138
  *
@@ -7075,7 +7143,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7075
7143
  * @secure
7076
7144
  * @response `204` `void` No Content
7077
7145
  */
7078
- deleteFormSubmission: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7146
+ deleteFormSubmission: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
7079
7147
  /**
7080
7148
  * No description
7081
7149
  *
@@ -7093,7 +7161,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7093
7161
  pageNumber?: number;
7094
7162
  sortBy?: string;
7095
7163
  sortDirection?: string;
7096
- }, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionPaginated, any>>;
7164
+ }, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionPaginated, any, {}>>;
7097
7165
  /**
7098
7166
  * No description
7099
7167
  *
@@ -7104,7 +7172,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7104
7172
  * @secure
7105
7173
  * @response `200` `(FormVersion)[]` Success
7106
7174
  */
7107
- getFormVersions: (formId: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion[], any>>;
7175
+ getFormVersions: (formId: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion[], any, {}>>;
7108
7176
  /**
7109
7177
  * No description
7110
7178
  *
@@ -7115,7 +7183,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7115
7183
  * @secure
7116
7184
  * @response `200` `FormVersion` Success
7117
7185
  */
7118
- createFormVersion: (formId: string, data: FormVersionRequest, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
7186
+ createFormVersion: (formId: string, data: FormVersionRequest, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any, {}>>;
7119
7187
  /**
7120
7188
  * No description
7121
7189
  *
@@ -7126,7 +7194,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7126
7194
  * @secure
7127
7195
  * @response `200` `FormVersion` Success
7128
7196
  */
7129
- getFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
7197
+ getFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any, {}>>;
7130
7198
  /**
7131
7199
  * No description
7132
7200
  *
@@ -7137,7 +7205,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7137
7205
  * @secure
7138
7206
  * @response `200` `FormVersion` Success
7139
7207
  */
7140
- replaceFormVersion: (formId: string, id: string, data: FormVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
7208
+ replaceFormVersion: (formId: string, id: string, data: FormVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any, {}>>;
7141
7209
  /**
7142
7210
  * No description
7143
7211
  *
@@ -7148,7 +7216,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7148
7216
  * @secure
7149
7217
  * @response `200` `FormVersion` Success
7150
7218
  */
7151
- deleteFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
7219
+ deleteFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any, {}>>;
7152
7220
  /**
7153
7221
  * No description
7154
7222
  *
@@ -7159,7 +7227,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7159
7227
  * @secure
7160
7228
  * @response `200` `Record<string,any>` Success
7161
7229
  */
7162
- getLoanData: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Record<string, any>, any>>;
7230
+ getLoanData: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Record<string, any>, any, {}>>;
7163
7231
  /**
7164
7232
  * No description
7165
7233
  *
@@ -7172,7 +7240,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7172
7240
  * @response `200` `string` Success
7173
7241
  * @response `422` `UnprocessableEntity` Client Error
7174
7242
  */
7175
- updateLoanConsentAndCustomFieldsObsolete: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
7243
+ updateLoanConsentAndCustomFieldsObsolete: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
7176
7244
  /**
7177
7245
  * No description
7178
7246
  *
@@ -7183,7 +7251,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7183
7251
  * @secure
7184
7252
  * @response `200` `GetReport` Success
7185
7253
  */
7186
- getLoansReport: (data: GetReportRequest, params?: RequestParams) => Promise<AxiosResponse<GetReport, any>>;
7254
+ getLoansReport: (data: GetReportRequest, params?: RequestParams) => Promise<AxiosResponse<GetReport, any, {}>>;
7187
7255
  /**
7188
7256
  * No description
7189
7257
  *
@@ -7200,7 +7268,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7200
7268
  createLoan: (data: any, query?: {
7201
7269
  /** @default false */
7202
7270
  isPatch?: boolean;
7203
- }, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
7271
+ }, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
7204
7272
  /**
7205
7273
  * No description
7206
7274
  *
@@ -7216,7 +7284,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7216
7284
  createLoanInternal: (data: any, query?: {
7217
7285
  /** @default false */
7218
7286
  isPatch?: boolean;
7219
- }, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
7287
+ }, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
7220
7288
  /**
7221
7289
  * No description
7222
7290
  *
@@ -7228,7 +7296,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7228
7296
  * @response `200` `string` Success
7229
7297
  * @response `422` `UnprocessableEntity` Client Error
7230
7298
  */
7231
- updateLoanCustomFields: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
7299
+ updateLoanCustomFields: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
7232
7300
  /**
7233
7301
  * No description
7234
7302
  *
@@ -7241,7 +7309,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7241
7309
  * @response `202` `string` Accepted
7242
7310
  * @response `422` `UnprocessableEntity` Client Error
7243
7311
  */
7244
- updateLoanConsent: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
7312
+ updateLoanConsent: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
7245
7313
  /**
7246
7314
  * No description
7247
7315
  *
@@ -7252,7 +7320,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7252
7320
  * @secure
7253
7321
  * @response `200` `(DocumentData)[]` Success
7254
7322
  */
7255
- getTaskDocumentsByLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentData[], any>>;
7323
+ getTaskDocumentsByLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentData[], any, {}>>;
7256
7324
  /**
7257
7325
  * No description
7258
7326
  *
@@ -7266,7 +7334,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7266
7334
  getLoanDocumentContent: (loanId: string, documentId: string, query?: {
7267
7335
  /** @default "base64" */
7268
7336
  contentType?: string;
7269
- }, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7337
+ }, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
7270
7338
  /**
7271
7339
  * No description
7272
7340
  *
@@ -7277,7 +7345,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7277
7345
  * @secure
7278
7346
  * @response `204` `void` No Content
7279
7347
  */
7280
- getLoanRecipients: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7348
+ getLoanRecipients: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
7281
7349
  /**
7282
7350
  * No description
7283
7351
  *
@@ -7288,7 +7356,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7288
7356
  * @secure
7289
7357
  * @response `200` `(PreliminaryCondition)[]` Success
7290
7358
  */
7291
- getPreliminaryConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<PreliminaryCondition[], any>>;
7359
+ getPreliminaryConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<PreliminaryCondition[], any, {}>>;
7292
7360
  /**
7293
7361
  * No description
7294
7362
  *
@@ -7299,7 +7367,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7299
7367
  * @secure
7300
7368
  * @response `200` `(UnderwritingCondition)[]` Success
7301
7369
  */
7302
- getUnderwritingConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UnderwritingCondition[], any>>;
7370
+ getUnderwritingConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UnderwritingCondition[], any, {}>>;
7303
7371
  /**
7304
7372
  * No description
7305
7373
  *
@@ -7310,7 +7378,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7310
7378
  * @secure
7311
7379
  * @response `200` `string` Success
7312
7380
  */
7313
- getLoanEmbeddedSigningLink: (envelopeId: string, userName: string, email: string, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
7381
+ getLoanEmbeddedSigningLink: (envelopeId: string, userName: string, email: string, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
7314
7382
  /**
7315
7383
  * No description
7316
7384
  *
@@ -7322,7 +7390,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7322
7390
  * @secure
7323
7391
  * @response `200` `DocumentDataRequest` Success
7324
7392
  */
7325
- createLegacyLoanDocument: (data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any>>;
7393
+ createLegacyLoanDocument: (data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any, {}>>;
7326
7394
  /**
7327
7395
  * No description
7328
7396
  *
@@ -7339,7 +7407,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7339
7407
  createEditDraftForLoan: (loanId: string, query?: {
7340
7408
  /** @default false */
7341
7409
  isCoBorrower?: boolean;
7342
- }, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
7410
+ }, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
7343
7411
  /**
7344
7412
  * No description
7345
7413
  *
@@ -7355,7 +7423,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7355
7423
  file?: File;
7356
7424
  /** @format int32 */
7357
7425
  weight?: number;
7358
- }, params?: RequestParams) => Promise<AxiosResponse<ListingFile, any>>;
7426
+ }, params?: RequestParams) => Promise<AxiosResponse<ListingFile, any, {}>>;
7359
7427
  /**
7360
7428
  * No description
7361
7429
  *
@@ -7366,7 +7434,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7366
7434
  * @secure
7367
7435
  * @response `200` `ListingFile` Success
7368
7436
  */
7369
- updateListingFiles: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingFile, any>>;
7437
+ updateListingFiles: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingFile, any, {}>>;
7370
7438
  /**
7371
7439
  * No description
7372
7440
  *
@@ -7377,7 +7445,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7377
7445
  * @secure
7378
7446
  * @response `204` `Listing` No Content
7379
7447
  */
7380
- removeListingFile: (listingId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
7448
+ removeListingFile: (listingId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
7381
7449
  /**
7382
7450
  * No description
7383
7451
  *
@@ -7395,7 +7463,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7395
7463
  file?: File;
7396
7464
  /** @format int32 */
7397
7465
  weight?: number;
7398
- }, params?: RequestParams) => Promise<AxiosResponse<ListingPhoto, any>>;
7466
+ }, params?: RequestParams) => Promise<AxiosResponse<ListingPhoto, any, {}>>;
7399
7467
  /**
7400
7468
  * No description
7401
7469
  *
@@ -7406,7 +7474,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7406
7474
  * @secure
7407
7475
  * @response `200` `(ListingPhoto)[]` Success
7408
7476
  */
7409
- updateListingPhotos: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingPhoto[], any>>;
7477
+ updateListingPhotos: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingPhoto[], any, {}>>;
7410
7478
  /**
7411
7479
  * No description
7412
7480
  *
@@ -7417,7 +7485,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7417
7485
  * @secure
7418
7486
  * @response `204` `Listing` No Content
7419
7487
  */
7420
- removeListingPhoto: (listingId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
7488
+ removeListingPhoto: (listingId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
7421
7489
  /**
7422
7490
  * No description
7423
7491
  *
@@ -7435,7 +7503,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7435
7503
  pageNumber?: number;
7436
7504
  sortBy?: string;
7437
7505
  sortDirection?: string;
7438
- }, params?: RequestParams) => Promise<AxiosResponse<ListingPaginated, any>>;
7506
+ }, params?: RequestParams) => Promise<AxiosResponse<ListingPaginated, any, {}>>;
7439
7507
  /**
7440
7508
  * No description
7441
7509
  *
@@ -7446,7 +7514,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7446
7514
  * @secure
7447
7515
  * @response `201` `Listing` Created
7448
7516
  */
7449
- createListing: (data: ListingRequest, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
7517
+ createListing: (data: ListingRequest, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
7450
7518
  /**
7451
7519
  * No description
7452
7520
  *
@@ -7457,7 +7525,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7457
7525
  * @secure
7458
7526
  * @response `200` `Listing` Success
7459
7527
  */
7460
- getListingBySlug: (slug: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
7528
+ getListingBySlug: (slug: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
7461
7529
  /**
7462
7530
  * No description
7463
7531
  *
@@ -7468,7 +7536,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7468
7536
  * @secure
7469
7537
  * @response `200` `Listing` Success
7470
7538
  */
7471
- getListing: (id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
7539
+ getListing: (id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
7472
7540
  /**
7473
7541
  * No description
7474
7542
  *
@@ -7479,7 +7547,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7479
7547
  * @secure
7480
7548
  * @response `200` `Listing` Success
7481
7549
  */
7482
- replaceListing: (id: string, data: ListingRequest, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
7550
+ replaceListing: (id: string, data: ListingRequest, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
7483
7551
  /**
7484
7552
  * No description
7485
7553
  *
@@ -7490,7 +7558,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7490
7558
  * @secure
7491
7559
  * @response `204` `void` No Content
7492
7560
  */
7493
- deleteListing: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7561
+ deleteListing: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
7494
7562
  /**
7495
7563
  * No description
7496
7564
  *
@@ -7508,7 +7576,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7508
7576
  pageNumber?: number;
7509
7577
  sortBy?: string;
7510
7578
  sortDirection?: string;
7511
- }, params?: RequestParams) => Promise<AxiosResponse<ListingPaginated, any>>;
7579
+ }, params?: RequestParams) => Promise<AxiosResponse<ListingPaginated, any, {}>>;
7512
7580
  /**
7513
7581
  * No description
7514
7582
  *
@@ -7522,7 +7590,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7522
7590
  updateListingBackgroundImage: (id: string, data: {
7523
7591
  /** @format binary */
7524
7592
  file?: File;
7525
- }, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
7593
+ }, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
7526
7594
  /**
7527
7595
  * No description
7528
7596
  *
@@ -7533,7 +7601,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7533
7601
  * @secure
7534
7602
  * @response `204` `void` No Content
7535
7603
  */
7536
- deleteListingBackgroundImage: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7604
+ deleteListingBackgroundImage: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
7537
7605
  /**
7538
7606
  * No description
7539
7607
  *
@@ -7544,7 +7612,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7544
7612
  * @secure
7545
7613
  * @response `200` `File` Success
7546
7614
  */
7547
- getListingOpenHouseFlyer: (id: string, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
7615
+ getListingOpenHouseFlyer: (id: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
7548
7616
  /**
7549
7617
  * No description
7550
7618
  *
@@ -7555,7 +7623,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7555
7623
  * @secure
7556
7624
  * @response `200` `RunLOCalculation` Success
7557
7625
  */
7558
- getLoanCalculator: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any>>;
7626
+ getLoanCalculator: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any, {}>>;
7559
7627
  /**
7560
7628
  * No description
7561
7629
  *
@@ -7568,7 +7636,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7568
7636
  * @response `422` `UnprocessableEntity` Client Error
7569
7637
  * @response `423` `UnprocessableEntity` Client Error
7570
7638
  */
7571
- runLoanCalculator: (loanId: string, data: RunLOCalculationRequest, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any>>;
7639
+ runLoanCalculator: (loanId: string, data: RunLOCalculationRequest, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any, {}>>;
7572
7640
  /**
7573
7641
  * No description
7574
7642
  *
@@ -7579,7 +7647,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7579
7647
  * @secure
7580
7648
  * @response `200` `LoanComparison` Success
7581
7649
  */
7582
- getLoanComparisons: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<LoanComparison, any>>;
7650
+ getLoanComparisons: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<LoanComparison, any, {}>>;
7583
7651
  /**
7584
7652
  * No description
7585
7653
  *
@@ -7592,7 +7660,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7592
7660
  * @response `422` `UnprocessableEntity` Client Error
7593
7661
  * @response `423` `UnprocessableEntity` Client Error
7594
7662
  */
7595
- createLoanComparison: (loanId: string, index: number, data: LoanComparisonScenario, params?: RequestParams) => Promise<AxiosResponse<LoanComparisonScenario, any>>;
7663
+ createLoanComparison: (loanId: string, index: number, data: LoanComparisonScenario, params?: RequestParams) => Promise<AxiosResponse<LoanComparisonScenario, any, {}>>;
7596
7664
  /**
7597
7665
  * No description
7598
7666
  *
@@ -7603,7 +7671,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7603
7671
  * @secure
7604
7672
  * @response `204` `void` No Content
7605
7673
  */
7606
- deleteLoanComparison: (loanId: string, index: number, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7674
+ deleteLoanComparison: (loanId: string, index: number, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
7607
7675
  /**
7608
7676
  * No description
7609
7677
  *
@@ -7615,7 +7683,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7615
7683
  * @response `204` `void` No Content
7616
7684
  * @response `422` `UnprocessableEntity` Client Error
7617
7685
  */
7618
- createLoanComparisonPdf: (loanId: string, data: PostLoanComparisonPdfRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7686
+ createLoanComparisonPdf: (loanId: string, data: PostLoanComparisonPdfRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
7619
7687
  /**
7620
7688
  * No description
7621
7689
  *
@@ -7628,7 +7696,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7628
7696
  * @response `404` `ProblemDetails` Not Found
7629
7697
  * @response `422` `ProblemDetails` Client Error
7630
7698
  */
7631
- resyncLoanConsents: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7699
+ resyncLoanConsents: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
7632
7700
  /**
7633
7701
  * No description
7634
7702
  *
@@ -7639,7 +7707,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7639
7707
  * @secure
7640
7708
  * @response `200` `(CustomFieldValue)[]` Success
7641
7709
  */
7642
- getLoanCustomFieldValues: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<CustomFieldValue[], any>>;
7710
+ getLoanCustomFieldValues: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<CustomFieldValue[], any, {}>>;
7643
7711
  /**
7644
7712
  * No description
7645
7713
  *
@@ -7652,7 +7720,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7652
7720
  * @response `400` `ProblemDetails` Bad Request
7653
7721
  * @response `422` `ProblemDetails` Client Error
7654
7722
  */
7655
- bulkSetLoanCustomFieldValues: (loanId: string, data: SetCustomFieldValueRequest[], params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7723
+ bulkSetLoanCustomFieldValues: (loanId: string, data: SetCustomFieldValueRequest[], params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
7656
7724
  /**
7657
7725
  * No description
7658
7726
  *
@@ -7666,7 +7734,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7666
7734
  * @response `404` `ProblemDetails` Not Found
7667
7735
  * @response `422` `ProblemDetails` Client Error
7668
7736
  */
7669
- setLoanCustomFieldValue: (loanId: string, definitionId: string, data: SetSingleCustomFieldValueRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7737
+ setLoanCustomFieldValue: (loanId: string, definitionId: string, data: SetSingleCustomFieldValueRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
7670
7738
  /**
7671
7739
  * No description
7672
7740
  *
@@ -7678,7 +7746,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7678
7746
  * @response `204` `void` No Content
7679
7747
  * @response `404` `ProblemDetails` Not Found
7680
7748
  */
7681
- deleteLoanCustomFieldValue: (loanId: string, definitionId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7749
+ deleteLoanCustomFieldValue: (loanId: string, definitionId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
7682
7750
  /**
7683
7751
  * No description
7684
7752
  *
@@ -7689,7 +7757,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7689
7757
  * @secure
7690
7758
  * @response `200` `(string)[]` Success
7691
7759
  */
7692
- getLoanDocumentBuckets: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<string[], any>>;
7760
+ getLoanDocumentBuckets: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<string[], any, {}>>;
7693
7761
  /**
7694
7762
  * No description
7695
7763
  *
@@ -7700,18 +7768,18 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7700
7768
  * @secure
7701
7769
  * @response `201` `(string)[]` Created
7702
7770
  */
7703
- createLoanDocumentBuckets: (loanId: string, data: string[], params?: RequestParams) => Promise<AxiosResponse<string[], any>>;
7771
+ createLoanDocumentBuckets: (loanId: string, data: string[], params?: RequestParams) => Promise<AxiosResponse<string[], any, {}>>;
7704
7772
  /**
7705
7773
  * No description
7706
7774
  *
7707
7775
  * @tags LoanDocumentFolders
7708
- * @name GetLoanDocumentFolders
7776
+ * @name GetAllLoanDocumentFolders
7709
7777
  * @summary Get all loan document folders for the current account
7710
7778
  * @request GET:/api/loan-document-folders
7711
7779
  * @secure
7712
7780
  * @response `200` `(LoanDocumentFolder)[]` Success
7713
7781
  */
7714
- getLoanDocumentFolders: (params?: RequestParams) => Promise<AxiosResponse<LoanDocumentFolder[], any>>;
7782
+ getAllLoanDocumentFolders: (params?: RequestParams) => Promise<AxiosResponse<LoanDocumentFolder[], any, {}>>;
7715
7783
  /**
7716
7784
  * No description
7717
7785
  *
@@ -7724,7 +7792,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7724
7792
  * @response `409` `ProblemDetails` Conflict
7725
7793
  * @response `422` `ProblemDetails` Client Error
7726
7794
  */
7727
- createLoanDocumentFolder: (data: CreateLoanDocumentFolderRequest, params?: RequestParams) => Promise<AxiosResponse<LoanDocumentFolder, any>>;
7795
+ createLoanDocumentFolder: (data: CreateLoanDocumentFolderRequest, params?: RequestParams) => Promise<AxiosResponse<LoanDocumentFolder, any, {}>>;
7728
7796
  /**
7729
7797
  * No description
7730
7798
  *
@@ -7736,7 +7804,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7736
7804
  * @response `200` `LoanDocumentFolder` Success
7737
7805
  * @response `404` `ProblemDetails` Not Found
7738
7806
  */
7739
- getLoanDocumentFolderById: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanDocumentFolder, any>>;
7807
+ getLoanDocumentFolderById: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanDocumentFolder, any, {}>>;
7740
7808
  /**
7741
7809
  * No description
7742
7810
  *
@@ -7751,7 +7819,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7751
7819
  * @response `409` `ProblemDetails` Conflict
7752
7820
  * @response `422` `ProblemDetails` Client Error
7753
7821
  */
7754
- updateLoanDocumentFolder: (id: string, data: UpdateLoanDocumentFolderRequest, params?: RequestParams) => Promise<AxiosResponse<LoanDocumentFolder, any>>;
7822
+ updateLoanDocumentFolder: (id: string, data: UpdateLoanDocumentFolderRequest, params?: RequestParams) => Promise<AxiosResponse<LoanDocumentFolder, any, {}>>;
7755
7823
  /**
7756
7824
  * No description
7757
7825
  *
@@ -7765,7 +7833,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7765
7833
  * @response `404` `ProblemDetails` Not Found
7766
7834
  * @response `409` `ProblemDetails` Conflict
7767
7835
  */
7768
- deleteLoanDocumentFolder: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7836
+ deleteLoanDocumentFolder: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
7769
7837
  /**
7770
7838
  * No description
7771
7839
  *
@@ -7778,7 +7846,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7778
7846
  * @response `400` `ProblemDetails` Bad Request
7779
7847
  * @response `404` `ProblemDetails` Not Found
7780
7848
  */
7781
- deactivateLoanDocumentFolder: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7849
+ deactivateLoanDocumentFolder: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
7782
7850
  /**
7783
7851
  * No description
7784
7852
  *
@@ -7790,7 +7858,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7790
7858
  * @response `204` `void` No Content
7791
7859
  * @response `404` `ProblemDetails` Not Found
7792
7860
  */
7793
- reactivateLoanDocumentFolder: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7861
+ reactivateLoanDocumentFolder: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
7794
7862
  /**
7795
7863
  * No description
7796
7864
  *
@@ -7802,7 +7870,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7802
7870
  * @response `200` `LoanDocumentFolderUsage` Success
7803
7871
  * @response `404` `ProblemDetails` Not Found
7804
7872
  */
7805
- getLoanDocumentFolderUsage: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanDocumentFolderUsage, any>>;
7873
+ getLoanDocumentFolderUsage: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanDocumentFolderUsage, any, {}>>;
7806
7874
  /**
7807
7875
  * No description
7808
7876
  *
@@ -7817,7 +7885,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7817
7885
  getLoanDocument: (loanId: string, documentId: string, query?: {
7818
7886
  /** @default false */
7819
7887
  preview?: boolean;
7820
- }, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any>>;
7888
+ }, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any, {}>>;
7821
7889
  /**
7822
7890
  * No description
7823
7891
  *
@@ -7829,7 +7897,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7829
7897
  * @response `200` `Record<string,string>` Success
7830
7898
  * @response `400` `ProblemDetails` Bad Request
7831
7899
  */
7832
- getLoanDocumentPreviews: (loanId: string, data: LoanDocumentPreviewsRequest, params?: RequestParams) => Promise<AxiosResponse<Record<string, string>, any>>;
7900
+ getLoanDocumentPreviews: (loanId: string, data: LoanDocumentPreviewsRequest, params?: RequestParams) => Promise<AxiosResponse<Record<string, string>, any, {}>>;
7833
7901
  /**
7834
7902
  * No description
7835
7903
  *
@@ -7847,23 +7915,21 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7847
7915
  pageNumber?: number;
7848
7916
  sortBy?: string;
7849
7917
  sortDirection?: string;
7850
- }, params?: RequestParams) => Promise<AxiosResponse<LoanDocumentSearchPaginated, any>>;
7918
+ }, params?: RequestParams) => Promise<AxiosResponse<LoanDocumentSearchPaginated, any, {}>>;
7851
7919
  /**
7852
7920
  * @description Returns all documents grouped by folder for sidebar display. Use folderNamesOnly=true to get simplified response with folder names and counts for mobile (Files array will be empty).
7853
7921
  *
7854
7922
  * @tags LoanDocuments
7855
- * @name GetLoanDocumentFolders2
7923
+ * @name GetLoanDocumentFolders
7856
7924
  * @summary Get document folder hierarchy
7857
7925
  * @request POST:/api/loans/{loanId}/documents/folders
7858
- * @originalName getLoanDocumentFolders
7859
- * @duplicate
7860
7926
  * @secure
7861
7927
  * @response `200` `(DocumentFolder)[]` Success
7862
7928
  */
7863
- getLoanDocumentFolders2: (loanId: string, data: DocumentFoldersRequest, query?: {
7929
+ getLoanDocumentFolders: (loanId: string, data: DocumentFoldersRequest, query?: {
7864
7930
  /** @default false */
7865
7931
  folderNamesOnly?: boolean;
7866
- }, params?: RequestParams) => Promise<AxiosResponse<DocumentFolder[], any>>;
7932
+ }, params?: RequestParams) => Promise<AxiosResponse<DocumentFolder[], any, {}>>;
7867
7933
  /**
7868
7934
  * No description
7869
7935
  *
@@ -7872,10 +7938,10 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7872
7938
  * @summary Download By ID
7873
7939
  * @request GET:/api/loans/{loanId}/documents/{documentId}/download
7874
7940
  * @secure
7875
- * @response `200` `string` Success
7941
+ * @response `200` `Blob` Success
7876
7942
  * @response `404` `ProblemDetails` Not Found
7877
7943
  */
7878
- downloadLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
7944
+ downloadLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<Blob, any, {}>>;
7879
7945
  /**
7880
7946
  * No description
7881
7947
  *
@@ -7893,7 +7959,9 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7893
7959
  /** @format binary */
7894
7960
  file?: File;
7895
7961
  bucket?: string;
7896
- }, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any>>;
7962
+ /** @format uuid */
7963
+ folderID?: string;
7964
+ }, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any, {}>>;
7897
7965
  /**
7898
7966
  * No description
7899
7967
  *
@@ -7906,7 +7974,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7906
7974
  * @response `404` `ProblemDetails` Not Found
7907
7975
  * @response `422` `UnprocessableEntity` Client Error
7908
7976
  */
7909
- retryFailedLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any>>;
7977
+ retryFailedLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any, {}>>;
7910
7978
  /**
7911
7979
  * No description
7912
7980
  *
@@ -7917,7 +7985,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7917
7985
  * @secure
7918
7986
  * @response `200` `DocumentDataRequest` Success
7919
7987
  */
7920
- generateLoanDocument: (loanId: string, data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any>>;
7988
+ generateLoanDocument: (loanId: string, data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any, {}>>;
7921
7989
  /**
7922
7990
  * No description
7923
7991
  *
@@ -7930,7 +7998,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7930
7998
  * @response `400` `ProblemDetails` Bad Request
7931
7999
  * @response `404` `ProblemDetails` Not Found
7932
8000
  */
7933
- sendLoanDocuments: (loanId: string, data: SendLoanDocumentsRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8001
+ sendLoanDocuments: (loanId: string, data: SendLoanDocumentsRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
7934
8002
  /**
7935
8003
  * @description Fetches all documents from Encompass that don't exist locally and stores them in S3
7936
8004
  *
@@ -7942,7 +8010,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7942
8010
  * @response `200` `DocumentSync` Success
7943
8011
  * @response `404` `ProblemDetails` Not Found
7944
8012
  */
7945
- syncLoanDocumentsFromLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentSync, any>>;
8013
+ syncLoanDocumentsFromLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentSync, any, {}>>;
7946
8014
  /**
7947
8015
  * @description Re-attempts to push a failed document to LOS
7948
8016
  *
@@ -7955,7 +8023,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7955
8023
  * @response `404` `ProblemDetails` Not Found
7956
8024
  * @response `423` `ProblemDetails` Client Error
7957
8025
  */
7958
- retrySyncLoanDocumentToLos: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8026
+ retrySyncLoanDocumentToLos: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
7959
8027
  /**
7960
8028
  * No description
7961
8029
  *
@@ -7966,7 +8034,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7966
8034
  * @secure
7967
8035
  * @response `201` `Draft` Created
7968
8036
  */
7969
- createLoanDraft: (data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
8037
+ createLoanDraft: (data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
7970
8038
  /**
7971
8039
  * No description
7972
8040
  *
@@ -7977,7 +8045,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7977
8045
  * @secure
7978
8046
  * @response `200` `(DraftContent)[]` Success
7979
8047
  */
7980
- getLoanDrafts: (params?: RequestParams) => Promise<AxiosResponse<DraftContent[], any>>;
8048
+ getLoanDrafts: (params?: RequestParams) => Promise<AxiosResponse<DraftContent[], any, {}>>;
7981
8049
  /**
7982
8050
  * No description
7983
8051
  *
@@ -7988,7 +8056,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7988
8056
  * @secure
7989
8057
  * @response `200` `DraftContent` Success
7990
8058
  */
7991
- getLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<DraftContent, any>>;
8059
+ getLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<DraftContent, any, {}>>;
7992
8060
  /**
7993
8061
  * No description
7994
8062
  *
@@ -7999,7 +8067,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7999
8067
  * @secure
8000
8068
  * @response `200` `Draft` Success
8001
8069
  */
8002
- replaceLoanDraft: (draftId: string, data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
8070
+ replaceLoanDraft: (draftId: string, data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
8003
8071
  /**
8004
8072
  * No description
8005
8073
  *
@@ -8010,7 +8078,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8010
8078
  * @secure
8011
8079
  * @response `204` `void` No Content
8012
8080
  */
8013
- deleteLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8081
+ deleteLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8014
8082
  /**
8015
8083
  * No description
8016
8084
  *
@@ -8028,7 +8096,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8028
8096
  pageNumber?: number;
8029
8097
  sortBy?: string;
8030
8098
  sortDirection?: string;
8031
- }, params?: RequestParams) => Promise<AxiosResponse<DraftContentPaginated, any>>;
8099
+ }, params?: RequestParams) => Promise<AxiosResponse<DraftContentPaginated, any, {}>>;
8032
8100
  /**
8033
8101
  * No description
8034
8102
  *
@@ -8039,7 +8107,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8039
8107
  * @secure
8040
8108
  * @response `200` `Draft` Success
8041
8109
  */
8042
- reassignLoanOfficer: (draftId: string, data: DraftLoanOfficerReassignRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
8110
+ reassignLoanOfficer: (draftId: string, data: DraftLoanOfficerReassignRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
8043
8111
  /**
8044
8112
  * No description
8045
8113
  *
@@ -8050,7 +8118,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8050
8118
  * @secure
8051
8119
  * @response `200` `Draft` Success
8052
8120
  */
8053
- restoreLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
8121
+ restoreLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
8054
8122
  /**
8055
8123
  * No description
8056
8124
  *
@@ -8070,7 +8138,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8070
8138
  pageNumber?: number;
8071
8139
  sortBy?: string;
8072
8140
  sortDirection?: string;
8073
- }, params?: RequestParams) => Promise<AxiosResponse<LoanImportPaginated, any>>;
8141
+ }, params?: RequestParams) => Promise<AxiosResponse<LoanImportPaginated, any, {}>>;
8074
8142
  /**
8075
8143
  * No description
8076
8144
  *
@@ -8081,7 +8149,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8081
8149
  * @secure
8082
8150
  * @response `201` `LoanImport` Created
8083
8151
  */
8084
- createLoanImport: (data: CreateLoanImportRequest, params?: RequestParams) => Promise<AxiosResponse<LoanImport, any>>;
8152
+ createLoanImport: (data: CreateLoanImportRequest, params?: RequestParams) => Promise<AxiosResponse<LoanImport, any, {}>>;
8085
8153
  /**
8086
8154
  * No description
8087
8155
  *
@@ -8092,7 +8160,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8092
8160
  * @secure
8093
8161
  * @response `200` `LoanImport` Success
8094
8162
  */
8095
- getLoanImport: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanImport, any>>;
8163
+ getLoanImport: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanImport, any, {}>>;
8096
8164
  /**
8097
8165
  * No description
8098
8166
  *
@@ -8110,7 +8178,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8110
8178
  pageNumber?: number;
8111
8179
  sortBy?: string;
8112
8180
  sortDirection?: string;
8113
- }, params?: RequestParams) => Promise<AxiosResponse<LoanImportLogPaginated, any>>;
8181
+ }, params?: RequestParams) => Promise<AxiosResponse<LoanImportLogPaginated, any, {}>>;
8114
8182
  /**
8115
8183
  * No description
8116
8184
  *
@@ -8122,7 +8190,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8122
8190
  * @response `200` `(Invite)[]` Success
8123
8191
  * @response `404` `ProblemDetails` Not Found
8124
8192
  */
8125
- getLoanInvites: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Invite[], any>>;
8193
+ getLoanInvites: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Invite[], any, {}>>;
8126
8194
  /**
8127
8195
  * No description
8128
8196
  *
@@ -8134,7 +8202,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8134
8202
  * @response `200` `(Invite)[]` Success
8135
8203
  * @response `404` `ProblemDetails` Not Found
8136
8204
  */
8137
- inviteLoanContacts: (loanId: string, data: string[], params?: RequestParams) => Promise<AxiosResponse<Invite[], any>>;
8205
+ inviteLoanContacts: (loanId: string, data: string[], params?: RequestParams) => Promise<AxiosResponse<Invite[], any, {}>>;
8138
8206
  /**
8139
8207
  * No description
8140
8208
  *
@@ -8152,7 +8220,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8152
8220
  pageNumber?: number;
8153
8221
  sortBy?: string;
8154
8222
  sortDirection?: string;
8155
- }, params?: RequestParams) => Promise<AxiosResponse<LoanLogPaginated, any>>;
8223
+ }, params?: RequestParams) => Promise<AxiosResponse<LoanLogPaginated, any, {}>>;
8156
8224
  /**
8157
8225
  * No description
8158
8226
  *
@@ -8164,7 +8232,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8164
8232
  * @response `200` `LoanLogDetail` Success
8165
8233
  * @response `404` `ProblemDetails` Not Found
8166
8234
  */
8167
- getLoanLogById: (loanId: string, loanLogId: string, params?: RequestParams) => Promise<AxiosResponse<LoanLogDetail, any>>;
8235
+ getLoanLogById: (loanId: string, loanLogId: string, params?: RequestParams) => Promise<AxiosResponse<LoanLogDetail, any, {}>>;
8168
8236
  /**
8169
8237
  * No description
8170
8238
  *
@@ -8183,7 +8251,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8183
8251
  pageNumber?: number;
8184
8252
  sortBy?: string;
8185
8253
  sortDirection?: string;
8186
- }, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any>>;
8254
+ }, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any, {}>>;
8187
8255
  /**
8188
8256
  * No description
8189
8257
  *
@@ -8201,7 +8269,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8201
8269
  pageNumber?: number;
8202
8270
  sortBy?: string;
8203
8271
  sortDirection?: string;
8204
- }, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any>>;
8272
+ }, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any, {}>>;
8205
8273
  /**
8206
8274
  * No description
8207
8275
  *
@@ -8212,7 +8280,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8212
8280
  * @secure
8213
8281
  * @response `200` `BranchUser` Success
8214
8282
  */
8215
- getLoanOfficer: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any>>;
8283
+ getLoanOfficer: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any, {}>>;
8216
8284
  /**
8217
8285
  * No description
8218
8286
  *
@@ -8224,7 +8292,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8224
8292
  * @response `200` `SiteConfiguration` Success
8225
8293
  * @response `422` `UnprocessableEntity` Client Error
8226
8294
  */
8227
- createLoanOfficerSiteConfiguration: (loanOfficerId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
8295
+ createLoanOfficerSiteConfiguration: (loanOfficerId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
8228
8296
  /**
8229
8297
  * No description
8230
8298
  *
@@ -8235,7 +8303,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8235
8303
  * @secure
8236
8304
  * @response `200` `SiteConfigurationWithInherited` Success
8237
8305
  */
8238
- getLoanOfficerSiteConfiguration: (loanOfficerId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
8306
+ getLoanOfficerSiteConfiguration: (loanOfficerId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any, {}>>;
8239
8307
  /**
8240
8308
  * No description
8241
8309
  *
@@ -8249,7 +8317,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8249
8317
  */
8250
8318
  replaceLoanOfficerSiteConfiguration: (loanOfficerId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
8251
8319
  applyToChildren?: boolean;
8252
- }, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
8320
+ }, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
8253
8321
  /**
8254
8322
  * No description
8255
8323
  *
@@ -8267,7 +8335,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8267
8335
  pageNumber?: number;
8268
8336
  sortBy?: string;
8269
8337
  sortDirection?: string;
8270
- }, params?: RequestParams) => Promise<AxiosResponse<LoanQueuePaginated, any>>;
8338
+ }, params?: RequestParams) => Promise<AxiosResponse<LoanQueuePaginated, any, {}>>;
8271
8339
  /**
8272
8340
  * No description
8273
8341
  *
@@ -8279,7 +8347,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8279
8347
  * @response `200` `any` Success
8280
8348
  * @response `404` `ProblemDetails` Not Found
8281
8349
  */
8282
- getLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<any, any>>;
8350
+ getLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
8283
8351
  /**
8284
8352
  * No description
8285
8353
  *
@@ -8291,7 +8359,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8291
8359
  * @response `200` `LoanQueueWithData` Success
8292
8360
  * @response `404` `ProblemDetails` Not Found
8293
8361
  */
8294
- replaceLoanQueue: (loanQueueId: string, data: UpdateLoanQueueRequest, params?: RequestParams) => Promise<AxiosResponse<LoanQueueWithData, any>>;
8362
+ replaceLoanQueue: (loanQueueId: string, data: UpdateLoanQueueRequest, params?: RequestParams) => Promise<AxiosResponse<LoanQueueWithData, any, {}>>;
8295
8363
  /**
8296
8364
  * No description
8297
8365
  *
@@ -8303,7 +8371,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8303
8371
  * @response `204` `void` No Content
8304
8372
  * @response `404` `ProblemDetails` Not Found
8305
8373
  */
8306
- deleteLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8374
+ deleteLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8307
8375
  /**
8308
8376
  * No description
8309
8377
  *
@@ -8315,7 +8383,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8315
8383
  * @response `204` `void` No Content
8316
8384
  * @response `404` `ProblemDetails` Not Found
8317
8385
  */
8318
- retryLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8386
+ retryLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8319
8387
  /**
8320
8388
  * No description
8321
8389
  *
@@ -8327,7 +8395,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8327
8395
  * @response `200` `Loan` Success
8328
8396
  * @response `404` `ProblemDetails` Not Found
8329
8397
  */
8330
- getLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any>>;
8398
+ getLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any, {}>>;
8331
8399
  /**
8332
8400
  * No description
8333
8401
  *
@@ -8338,7 +8406,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8338
8406
  * @secure
8339
8407
  * @response `200` `GetApplications` Success
8340
8408
  */
8341
- getLoans: (params?: RequestParams) => Promise<AxiosResponse<GetApplications, any>>;
8409
+ getLoans: (params?: RequestParams) => Promise<AxiosResponse<GetApplications, any, {}>>;
8342
8410
  /**
8343
8411
  * No description
8344
8412
  *
@@ -8352,7 +8420,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8352
8420
  * @response `401` `ProblemDetails` Unauthorized
8353
8421
  * @response `403` `ProblemDetails` Forbidden
8354
8422
  */
8355
- createLoanv3: (data: LoanApplicationRequest, params?: RequestParams) => Promise<AxiosResponse<LoanApplication, any>>;
8423
+ createLoanv3: (data: LoanApplicationRequest, params?: RequestParams) => Promise<AxiosResponse<LoanApplication, any, {}>>;
8356
8424
  /**
8357
8425
  * No description
8358
8426
  *
@@ -8370,7 +8438,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8370
8438
  pageNumber?: number;
8371
8439
  sortBy?: string;
8372
8440
  sortDirection?: string;
8373
- }, params?: RequestParams) => Promise<AxiosResponse<LoanListPaginated, any>>;
8441
+ }, params?: RequestParams) => Promise<AxiosResponse<LoanListPaginated, any, {}>>;
8374
8442
  /**
8375
8443
  * No description
8376
8444
  *
@@ -8386,7 +8454,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8386
8454
  * @response `404` `ProblemDetails` Not Found
8387
8455
  * @response `409` `any` Conflict
8388
8456
  */
8389
- updateLoan: (loanId: string, data: any, params?: RequestParams) => Promise<AxiosResponse<Loan, any>>;
8457
+ updateLoan: (loanId: string, data: any, params?: RequestParams) => Promise<AxiosResponse<Loan, any, {}>>;
8390
8458
  /**
8391
8459
  * No description
8392
8460
  *
@@ -8399,7 +8467,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8399
8467
  * @response `400` `ProblemDetails` Bad Request
8400
8468
  * @response `404` `ProblemDetails` Not Found
8401
8469
  */
8402
- completeBorrowerApplication: (loanId: string, borrowerId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8470
+ completeBorrowerApplication: (loanId: string, borrowerId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8403
8471
  /**
8404
8472
  * No description
8405
8473
  *
@@ -8410,7 +8478,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8410
8478
  * @secure
8411
8479
  * @response `200` `Loan` Success
8412
8480
  */
8413
- importLoanFromLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any>>;
8481
+ importLoanFromLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any, {}>>;
8414
8482
  /**
8415
8483
  * No description
8416
8484
  *
@@ -8422,7 +8490,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8422
8490
  * @response `202` `void` Accepted
8423
8491
  * @response `404` `ProblemDetails` Not Found
8424
8492
  */
8425
- syncLoanToLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8493
+ syncLoanToLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8426
8494
  /**
8427
8495
  * No description
8428
8496
  *
@@ -8435,7 +8503,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8435
8503
  * @response `400` `ProblemDetails` Bad Request
8436
8504
  * @response `404` `ProblemDetails` Not Found
8437
8505
  */
8438
- triggerAso: (loanId: string, data: TriggerAsoRequest, params?: RequestParams) => Promise<AxiosResponse<AutomatedService, any>>;
8506
+ triggerAso: (loanId: string, data: TriggerAsoRequest, params?: RequestParams) => Promise<AxiosResponse<AutomatedService, any, {}>>;
8439
8507
  /**
8440
8508
  * No description
8441
8509
  *
@@ -8454,7 +8522,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8454
8522
  pageNumber?: number;
8455
8523
  sortBy?: string;
8456
8524
  sortDirection?: string;
8457
- }, params?: RequestParams) => Promise<AxiosResponse<TaskCommentPaginated, any>>;
8525
+ }, params?: RequestParams) => Promise<AxiosResponse<TaskCommentPaginated, any, {}>>;
8458
8526
  /**
8459
8527
  * No description
8460
8528
  *
@@ -8466,7 +8534,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8466
8534
  * @response `200` `TaskComment` Success
8467
8535
  * @response `404` `ProblemDetails` Not Found
8468
8536
  */
8469
- getLoanTaskComment: (id: string, loanId: string, userLoanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any>>;
8537
+ getLoanTaskComment: (id: string, loanId: string, userLoanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any, {}>>;
8470
8538
  /**
8471
8539
  * No description
8472
8540
  *
@@ -8478,7 +8546,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8478
8546
  * @response `201` `TaskComment` Created
8479
8547
  * @response `404` `ProblemDetails` Not Found
8480
8548
  */
8481
- createLoanTaskComment: (loanId: string, userLoanTaskId: string, data: TaskCommentRequest, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any>>;
8549
+ createLoanTaskComment: (loanId: string, userLoanTaskId: string, data: TaskCommentRequest, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any, {}>>;
8482
8550
  /**
8483
8551
  * No description
8484
8552
  *
@@ -8490,7 +8558,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8490
8558
  * @response `200` `TaskComment` Success
8491
8559
  * @response `404` `ProblemDetails` Not Found
8492
8560
  */
8493
- replaceLoanTaskComment: (loanId: string, userLoanTaskId: string, commentId: string, data: TaskCommentRequest, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any>>;
8561
+ replaceLoanTaskComment: (loanId: string, userLoanTaskId: string, commentId: string, data: TaskCommentRequest, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any, {}>>;
8494
8562
  /**
8495
8563
  * No description
8496
8564
  *
@@ -8502,7 +8570,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8502
8570
  * @response `204` `void` No Content
8503
8571
  * @response `404` `ProblemDetails` Not Found
8504
8572
  */
8505
- deleteLoanTaskComment: (loanId: string, userLoanTaskId: string, commentId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8573
+ deleteLoanTaskComment: (loanId: string, userLoanTaskId: string, commentId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8506
8574
  /**
8507
8575
  * No description
8508
8576
  *
@@ -8520,7 +8588,9 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8520
8588
  /** @format binary */
8521
8589
  file?: File;
8522
8590
  bucket?: string;
8523
- }, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
8591
+ /** @format uuid */
8592
+ folderID?: string;
8593
+ }, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
8524
8594
  /**
8525
8595
  * No description
8526
8596
  *
@@ -8532,7 +8602,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8532
8602
  * @response `204` `UserLoanTask` No Content
8533
8603
  * @response `422` `UnprocessableEntity` Client Error
8534
8604
  */
8535
- createLoanTaskDocumentBucket: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
8605
+ createLoanTaskDocumentBucket: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
8536
8606
  /**
8537
8607
  * No description
8538
8608
  *
@@ -8544,7 +8614,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8544
8614
  * @response `204` `void` No Content
8545
8615
  * @response `404` `ProblemDetails` Not Found
8546
8616
  */
8547
- sendOutstandingLoanTaskNotification: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8617
+ sendOutstandingLoanTaskNotification: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8548
8618
  /**
8549
8619
  * No description
8550
8620
  *
@@ -8557,7 +8627,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8557
8627
  * @response `400` `ProblemDetails` Bad Request
8558
8628
  * @response `404` `ProblemDetails` Not Found
8559
8629
  */
8560
- sendLoanTaskReminder: (loanId: string, data: SendLoanTaskReminderRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8630
+ sendLoanTaskReminder: (loanId: string, data: SendLoanTaskReminderRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8561
8631
  /**
8562
8632
  * @description Search tasks across all loans
8563
8633
  *
@@ -8575,7 +8645,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8575
8645
  pageNumber?: number;
8576
8646
  sortBy?: string;
8577
8647
  sortDirection?: string;
8578
- }, params?: RequestParams) => Promise<AxiosResponse<UserLoanTaskPaginated, any>>;
8648
+ }, params?: RequestParams) => Promise<AxiosResponse<UserLoanTaskPaginated, any, {}>>;
8579
8649
  /**
8580
8650
  * @description Returns task counts grouped by status for loans accessible to the current user based on their role
8581
8651
  *
@@ -8587,7 +8657,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8587
8657
  * @response `200` `(LoanTaskStatusSummary)[]` Success
8588
8658
  * @response `422` `UnprocessableEntity` Client Error
8589
8659
  */
8590
- searchLoanTasksSummary: (data: LoanTaskSearchRequest, params?: RequestParams) => Promise<AxiosResponse<LoanTaskStatusSummary[], any>>;
8660
+ searchLoanTasksSummary: (data: LoanTaskSearchRequest, params?: RequestParams) => Promise<AxiosResponse<LoanTaskStatusSummary[], any, {}>>;
8591
8661
  /**
8592
8662
  * No description
8593
8663
  *
@@ -8599,7 +8669,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8599
8669
  * @response `200` `(UserLoanTask)[]` Success
8600
8670
  * @response `404` `ProblemDetails` Not Found
8601
8671
  */
8602
- getLoanTasks: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any>>;
8672
+ getLoanTasks: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any, {}>>;
8603
8673
  /**
8604
8674
  * No description
8605
8675
  *
@@ -8611,7 +8681,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8611
8681
  * @response `200` `UserLoanTask` Success
8612
8682
  * @response `404` `ProblemDetails` Not Found
8613
8683
  */
8614
- getLoanTask: (id: string, loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
8684
+ getLoanTask: (id: string, loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
8615
8685
  /**
8616
8686
  * @description Get the difference between the current loan tasks and the tasks generated by business rules
8617
8687
  *
@@ -8623,7 +8693,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8623
8693
  * @response `200` `(UserLoanTask)[]` Success
8624
8694
  * @response `404` `ProblemDetails` Not Found
8625
8695
  */
8626
- getLoanTaskDifference: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any>>;
8696
+ getLoanTaskDifference: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any, {}>>;
8627
8697
  /**
8628
8698
  * No description
8629
8699
  *
@@ -8635,7 +8705,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8635
8705
  * @response `201` `UserLoanTask` Created
8636
8706
  * @response `404` `ProblemDetails` Not Found
8637
8707
  */
8638
- createLoanTask: (loanId: string, taskId: string, data: UserLoanTaskRequest, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
8708
+ createLoanTask: (loanId: string, taskId: string, data: UserLoanTaskRequest, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
8639
8709
  /**
8640
8710
  * No description
8641
8711
  *
@@ -8647,7 +8717,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8647
8717
  * @response `201` `(UserLoanTask)[]` Created
8648
8718
  * @response `404` `ProblemDetails` Not Found
8649
8719
  */
8650
- importLoanTask: (loanId: string, data: ImportUserLoanTaskRequest[], params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any>>;
8720
+ importLoanTask: (loanId: string, data: ImportUserLoanTaskRequest[], params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any, {}>>;
8651
8721
  /**
8652
8722
  * No description
8653
8723
  *
@@ -8659,7 +8729,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8659
8729
  * @response `200` `UserLoanTask` Success
8660
8730
  * @response `404` `ProblemDetails` Not Found
8661
8731
  */
8662
- replaceLoanTask: (loanId: string, userLoanTaskId: string, data: UserLoanTaskUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
8732
+ replaceLoanTask: (loanId: string, userLoanTaskId: string, data: UserLoanTaskUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
8663
8733
  /**
8664
8734
  * No description
8665
8735
  *
@@ -8671,7 +8741,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8671
8741
  * @response `204` `void` No Content
8672
8742
  * @response `404` `ProblemDetails` Not Found
8673
8743
  */
8674
- deleteLoanTask: (loanId: string, userLoanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8744
+ deleteLoanTask: (loanId: string, userLoanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8675
8745
  /**
8676
8746
  * No description
8677
8747
  *
@@ -8684,7 +8754,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8684
8754
  * @response `404` `ProblemDetails` Not Found
8685
8755
  * @response `422` `UnprocessableEntity` Client Error
8686
8756
  */
8687
- createLoanTaskVerification: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
8757
+ createLoanTaskVerification: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
8688
8758
  /**
8689
8759
  * No description
8690
8760
  *
@@ -8696,7 +8766,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8696
8766
  * @response `200` `(UserLoanConsent)[]` Success
8697
8767
  * @response `403` `ProblemDetails` Forbidden
8698
8768
  */
8699
- getLoanUserConsents: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanConsent[], any>>;
8769
+ getLoanUserConsents: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanConsent[], any, {}>>;
8700
8770
  /**
8701
8771
  * No description
8702
8772
  *
@@ -8707,7 +8777,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8707
8777
  * @secure
8708
8778
  * @response `200` `LoanUser` Success
8709
8779
  */
8710
- getLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any>>;
8780
+ getLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any, {}>>;
8711
8781
  /**
8712
8782
  * No description
8713
8783
  *
@@ -8718,7 +8788,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8718
8788
  * @secure
8719
8789
  * @response `201` `LoanUser` Created
8720
8790
  */
8721
- addLoanUser: (loanId: string, userId: string, data: CreateUserLoan, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any>>;
8791
+ addLoanUser: (loanId: string, userId: string, data: CreateUserLoan, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any, {}>>;
8722
8792
  /**
8723
8793
  * No description
8724
8794
  *
@@ -8729,7 +8799,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8729
8799
  * @secure
8730
8800
  * @response `204` `LoanUser` No Content
8731
8801
  */
8732
- removeLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any>>;
8802
+ removeLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any, {}>>;
8733
8803
  /**
8734
8804
  * No description
8735
8805
  *
@@ -8740,7 +8810,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8740
8810
  * @secure
8741
8811
  * @response `204` `void` No Content
8742
8812
  */
8743
- sendLoanUserInviteReminderNotification: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8813
+ sendLoanUserInviteReminderNotification: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8744
8814
  /**
8745
8815
  * No description
8746
8816
  *
@@ -8758,7 +8828,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8758
8828
  pageNumber?: number;
8759
8829
  sortBy?: string;
8760
8830
  sortDirection?: string;
8761
- }, params?: RequestParams) => Promise<AxiosResponse<LosOperationTrackingPaginated, any>>;
8831
+ }, params?: RequestParams) => Promise<AxiosResponse<LosOperationTrackingPaginated, any, {}>>;
8762
8832
  /**
8763
8833
  * No description
8764
8834
  *
@@ -8769,7 +8839,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8769
8839
  * @secure
8770
8840
  * @response `200` `(MilestoneConfiguration)[]` Success
8771
8841
  */
8772
- getMilestones: (params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration[], any>>;
8842
+ getMilestones: (params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration[], any, {}>>;
8773
8843
  /**
8774
8844
  * No description
8775
8845
  *
@@ -8781,7 +8851,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8781
8851
  * @response `201` `MilestoneConfiguration` Created
8782
8852
  * @response `422` `UnprocessableEntity` Client Error
8783
8853
  */
8784
- createMilestone: (data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any>>;
8854
+ createMilestone: (data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any, {}>>;
8785
8855
  /**
8786
8856
  * No description
8787
8857
  *
@@ -8793,7 +8863,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8793
8863
  * @response `200` `MilestoneConfiguration` Success
8794
8864
  * @response `404` `Error` Not Found
8795
8865
  */
8796
- getMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any>>;
8866
+ getMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any, {}>>;
8797
8867
  /**
8798
8868
  * No description
8799
8869
  *
@@ -8806,7 +8876,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8806
8876
  * @response `404` `Error` Not Found
8807
8877
  * @response `422` `UnprocessableEntity` Client Error
8808
8878
  */
8809
- replaceMilestone: (id: string, data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any>>;
8879
+ replaceMilestone: (id: string, data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any, {}>>;
8810
8880
  /**
8811
8881
  * No description
8812
8882
  *
@@ -8818,7 +8888,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8818
8888
  * @response `204` `void` No Content
8819
8889
  * @response `404` `Error` Not Found
8820
8890
  */
8821
- deleteMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8891
+ deleteMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8822
8892
  /**
8823
8893
  * No description
8824
8894
  *
@@ -8830,7 +8900,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8830
8900
  * @response `200` `MonthlyPaymentCalculator` Success
8831
8901
  * @response `422` `ProblemDetails` Client Error
8832
8902
  */
8833
- calculateMortgageMonthlyPayment: (data: MonthlyPaymentCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<MonthlyPaymentCalculator, any>>;
8903
+ calculateMortgageMonthlyPayment: (data: MonthlyPaymentCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<MonthlyPaymentCalculator, any, {}>>;
8834
8904
  /**
8835
8905
  * No description
8836
8906
  *
@@ -8842,7 +8912,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8842
8912
  * @response `200` `AffordabilityCalculator` Success
8843
8913
  * @response `422` `ProblemDetails` Client Error
8844
8914
  */
8845
- calculateMortgageAffordability: (data: AffordabilityCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<AffordabilityCalculator, any>>;
8915
+ calculateMortgageAffordability: (data: AffordabilityCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<AffordabilityCalculator, any, {}>>;
8846
8916
  /**
8847
8917
  * No description
8848
8918
  *
@@ -8854,7 +8924,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8854
8924
  * @response `200` `LoanComparisonCalculator` Success
8855
8925
  * @response `422` `ProblemDetails` Client Error
8856
8926
  */
8857
- calculateMortgageLoanComparison: (data: LoanComparisonCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<LoanComparisonCalculator, any>>;
8927
+ calculateMortgageLoanComparison: (data: LoanComparisonCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<LoanComparisonCalculator, any, {}>>;
8858
8928
  /**
8859
8929
  * No description
8860
8930
  *
@@ -8866,7 +8936,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8866
8936
  * @response `200` `RefinanceCalculator` Success
8867
8937
  * @response `422` `ProblemDetails` Client Error
8868
8938
  */
8869
- calculateMortgageRefinance: (data: RefinanceCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<RefinanceCalculator, any>>;
8939
+ calculateMortgageRefinance: (data: RefinanceCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<RefinanceCalculator, any, {}>>;
8870
8940
  /**
8871
8941
  * No description
8872
8942
  *
@@ -8878,7 +8948,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8878
8948
  * @response `200` `void` Success
8879
8949
  * @response `422` `UnprocessableEntity` Client Error
8880
8950
  */
8881
- sendNotificationForLoan: (data: SendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8951
+ sendNotificationForLoan: (data: SendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8882
8952
  /**
8883
8953
  * No description
8884
8954
  *
@@ -8890,7 +8960,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8890
8960
  * @response `200` `void` Success
8891
8961
  * @response `422` `UnprocessableEntity` Client Error
8892
8962
  */
8893
- sendTestNotificationForLoan: (data: TestSendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8963
+ sendTestNotificationForLoan: (data: TestSendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8894
8964
  /**
8895
8965
  * No description
8896
8966
  *
@@ -8903,7 +8973,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8903
8973
  */
8904
8974
  getNotificationTemplates: (query?: {
8905
8975
  showAll?: boolean;
8906
- }, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateBase[], any>>;
8976
+ }, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateBase[], any, {}>>;
8907
8977
  /**
8908
8978
  * No description
8909
8979
  *
@@ -8915,7 +8985,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8915
8985
  * @response `201` `NotificationTemplate` Created
8916
8986
  * @response `422` `UnprocessableEntity` Client Error
8917
8987
  */
8918
- createNotificationTemplate: (data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
8988
+ createNotificationTemplate: (data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any, {}>>;
8919
8989
  /**
8920
8990
  * No description
8921
8991
  *
@@ -8933,7 +9003,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8933
9003
  pageNumber?: number;
8934
9004
  sortBy?: string;
8935
9005
  sortDirection?: string;
8936
- }, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateBasePaginated, any>>;
9006
+ }, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateBasePaginated, any, {}>>;
8937
9007
  /**
8938
9008
  * No description
8939
9009
  *
@@ -8944,7 +9014,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8944
9014
  * @secure
8945
9015
  * @response `200` `NotificationTemplate` Success
8946
9016
  */
8947
- getNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
9017
+ getNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any, {}>>;
8948
9018
  /**
8949
9019
  * No description
8950
9020
  *
@@ -8956,7 +9026,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8956
9026
  * @response `200` `NotificationTemplate` Success
8957
9027
  * @response `422` `UnprocessableEntity` Client Error
8958
9028
  */
8959
- replaceNotificationTemplate: (id: string, data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
9029
+ replaceNotificationTemplate: (id: string, data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any, {}>>;
8960
9030
  /**
8961
9031
  * No description
8962
9032
  *
@@ -8967,7 +9037,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8967
9037
  * @secure
8968
9038
  * @response `204` `void` No Content
8969
9039
  */
8970
- deleteNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9040
+ deleteNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8971
9041
  /**
8972
9042
  * No description
8973
9043
  *
@@ -8978,7 +9048,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8978
9048
  * @secure
8979
9049
  * @response `200` `NotificationTemplate` Success
8980
9050
  */
8981
- restoreNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
9051
+ restoreNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any, {}>>;
8982
9052
  /**
8983
9053
  * No description
8984
9054
  *
@@ -8989,7 +9059,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8989
9059
  * @secure
8990
9060
  * @response `200` `(NotificationTemplateVersion)[]` Success
8991
9061
  */
8992
- getNotificationTemplateVersions: (notificationId: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion[], any>>;
9062
+ getNotificationTemplateVersions: (notificationId: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion[], any, {}>>;
8993
9063
  /**
8994
9064
  * No description
8995
9065
  *
@@ -9000,7 +9070,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9000
9070
  * @secure
9001
9071
  * @response `200` `NotificationTemplateVersion` Success
9002
9072
  */
9003
- createNotificationTemplateVersion: (notificationId: string, data: NotificationTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
9073
+ createNotificationTemplateVersion: (notificationId: string, data: NotificationTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any, {}>>;
9004
9074
  /**
9005
9075
  * No description
9006
9076
  *
@@ -9011,7 +9081,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9011
9081
  * @secure
9012
9082
  * @response `200` `NotificationTemplateVersion` Success
9013
9083
  */
9014
- getNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
9084
+ getNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any, {}>>;
9015
9085
  /**
9016
9086
  * No description
9017
9087
  *
@@ -9022,7 +9092,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9022
9092
  * @secure
9023
9093
  * @response `200` `NotificationTemplateVersion` Success
9024
9094
  */
9025
- replaceNotificationTemplateVersion: (notificationId: string, id: string, data: NotificationTemplateVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
9095
+ replaceNotificationTemplateVersion: (notificationId: string, id: string, data: NotificationTemplateVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any, {}>>;
9026
9096
  /**
9027
9097
  * No description
9028
9098
  *
@@ -9033,7 +9103,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9033
9103
  * @secure
9034
9104
  * @response `200` `NotificationTemplateVersion` Success
9035
9105
  */
9036
- deleteNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
9106
+ deleteNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any, {}>>;
9037
9107
  /**
9038
9108
  * No description
9039
9109
  *
@@ -9047,14 +9117,14 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9047
9117
  getPartners: (query?: {
9048
9118
  showAll?: boolean;
9049
9119
  /** @default "Realtor" */
9050
- role?: "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
9120
+ role?: GetPartnersParamsRoleEnum;
9051
9121
  /** @format int32 */
9052
9122
  pageSize?: number;
9053
9123
  /** @format int32 */
9054
9124
  pageNumber?: number;
9055
9125
  sortBy?: string;
9056
9126
  sortDirection?: string;
9057
- }, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any>>;
9127
+ }, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any, {}>>;
9058
9128
  /**
9059
9129
  * No description
9060
9130
  *
@@ -9072,7 +9142,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9072
9142
  pageNumber?: number;
9073
9143
  sortBy?: string;
9074
9144
  sortDirection?: string;
9075
- }, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any>>;
9145
+ }, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any, {}>>;
9076
9146
  /**
9077
9147
  * No description
9078
9148
  *
@@ -9083,7 +9153,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9083
9153
  * @secure
9084
9154
  * @response `200` `BranchUser` Success
9085
9155
  */
9086
- getPartner: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any>>;
9156
+ getPartner: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any, {}>>;
9087
9157
  /**
9088
9158
  * No description
9089
9159
  *
@@ -9095,7 +9165,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9095
9165
  * @response `200` `SiteConfiguration` Success
9096
9166
  * @response `422` `UnprocessableEntity` Client Error
9097
9167
  */
9098
- createPartnerSiteConfiguration: (realtorId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
9168
+ createPartnerSiteConfiguration: (realtorId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
9099
9169
  /**
9100
9170
  * No description
9101
9171
  *
@@ -9106,7 +9176,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9106
9176
  * @secure
9107
9177
  * @response `200` `SiteConfigurationWithInherited` Success
9108
9178
  */
9109
- getPartnerSiteConfiguration: (realtorId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
9179
+ getPartnerSiteConfiguration: (realtorId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any, {}>>;
9110
9180
  /**
9111
9181
  * No description
9112
9182
  *
@@ -9120,7 +9190,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9120
9190
  */
9121
9191
  replacePartnerSiteConfiguration: (realtorId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
9122
9192
  applyToChildren?: boolean;
9123
- }, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
9193
+ }, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
9124
9194
  /**
9125
9195
  * No description
9126
9196
  *
@@ -9131,7 +9201,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9131
9201
  * @secure
9132
9202
  * @response `200` `SiteConfiguration` Success
9133
9203
  */
9134
- getSiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
9204
+ getSiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
9135
9205
  /**
9136
9206
  * No description
9137
9207
  *
@@ -9144,7 +9214,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9144
9214
  * @response `200` `SiteConfigurationByUrl` Success
9145
9215
  * @response `422` `UnprocessableEntity` Client Error
9146
9216
  */
9147
- searchSiteConfigurationByUrl: (data: GetSiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationByUrl, any>>;
9217
+ searchSiteConfigurationByUrl: (data: GetSiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationByUrl, any, {}>>;
9148
9218
  /**
9149
9219
  * No description
9150
9220
  *
@@ -9158,7 +9228,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9158
9228
  */
9159
9229
  getSiteConfigurationByUrl: (query?: {
9160
9230
  url?: string;
9161
- }, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationByUrl, any>>;
9231
+ }, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationByUrl, any, {}>>;
9162
9232
  /**
9163
9233
  * No description
9164
9234
  *
@@ -9171,7 +9241,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9171
9241
  * @response `200` `SiteConfiguration` Success
9172
9242
  * @response `422` `UnprocessableEntity` Client Error
9173
9243
  */
9174
- searchSiteConfigurationByLoanOfficerUser: (data: GetSiteConfigurationByLOUserIDRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
9244
+ searchSiteConfigurationByLoanOfficerUser: (data: GetSiteConfigurationByLOUserIDRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
9175
9245
  /**
9176
9246
  * No description
9177
9247
  *
@@ -9183,7 +9253,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9183
9253
  * @response `200` `SiteConfiguration` Success
9184
9254
  * @response `422` `UnprocessableEntity` Client Error
9185
9255
  */
9186
- getSiteConfigurationByLoanOfficerUser: (loUserId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
9256
+ getSiteConfigurationByLoanOfficerUser: (loUserId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
9187
9257
  /**
9188
9258
  * No description
9189
9259
  *
@@ -9202,7 +9272,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9202
9272
  pageNumber?: number;
9203
9273
  sortBy?: string;
9204
9274
  sortDirection?: string;
9205
- }, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationSummaryPaginated, any>>;
9275
+ }, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationSummaryPaginated, any, {}>>;
9206
9276
  /**
9207
9277
  * No description
9208
9278
  *
@@ -9213,7 +9283,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9213
9283
  * @secure
9214
9284
  * @response `200` `(AdminAccessGetForms)[]` Success
9215
9285
  */
9216
- getFormsBySiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms[], any>>;
9286
+ getFormsBySiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms[], any, {}>>;
9217
9287
  /**
9218
9288
  * No description
9219
9289
  *
@@ -9225,7 +9295,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9225
9295
  * @response `200` `File` Success
9226
9296
  * @response `404` `ProblemDetails` Not Found
9227
9297
  */
9228
- getSamlMetadata: (sSoIntegration: "ConsumerConnect" | "TheBigPOS" | "POSF", ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
9298
+ getSamlMetadata: (sSoIntegration: GetSamlMetadataParamsEnum, ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
9229
9299
  /**
9230
9300
  * No description
9231
9301
  *
@@ -9236,7 +9306,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9236
9306
  * @secure
9237
9307
  * @response `200` `File` Success
9238
9308
  */
9239
- createOrReplaceSamlMetadata: (sSoIntegration: "ConsumerConnect" | "TheBigPOS" | "POSF", ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
9309
+ createOrReplaceSamlMetadata: (sSoIntegration: CreateOrReplaceSamlMetadataParamsEnum, ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
9240
9310
  /**
9241
9311
  * No description
9242
9312
  *
@@ -9247,7 +9317,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9247
9317
  * @secure
9248
9318
  * @response `200` `(SiteConfigurationForm)[]` Success
9249
9319
  */
9250
- getWorkflowSiteConfigurations: (workflowId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm[], any>>;
9320
+ getWorkflowSiteConfigurations: (workflowId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm[], any, {}>>;
9251
9321
  /**
9252
9322
  * No description
9253
9323
  *
@@ -9259,7 +9329,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9259
9329
  * @response `200` `SiteConfigurationForm` Success
9260
9330
  * @response `404` `ProblemDetails` Not Found
9261
9331
  */
9262
- getWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any>>;
9332
+ getWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any, {}>>;
9263
9333
  /**
9264
9334
  * No description
9265
9335
  *
@@ -9272,7 +9342,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9272
9342
  * @response `409` `ProblemDetails` Conflict
9273
9343
  * @response `422` `UnprocessableEntity` Client Error
9274
9344
  */
9275
- createWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any>>;
9345
+ createWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any, {}>>;
9276
9346
  /**
9277
9347
  * No description
9278
9348
  *
@@ -9283,7 +9353,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9283
9353
  * @secure
9284
9354
  * @response `204` `void` No Content
9285
9355
  */
9286
- deleteWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9356
+ deleteWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9287
9357
  /**
9288
9358
  * No description
9289
9359
  *
@@ -9294,7 +9364,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9294
9364
  * @secure
9295
9365
  * @response `200` `GetForm` Success
9296
9366
  */
9297
- getFormBySiteConfigurationSlug: (data: GetSiteFormRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any>>;
9367
+ getFormBySiteConfigurationSlug: (data: GetSiteFormRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any, {}>>;
9298
9368
  /**
9299
9369
  * No description
9300
9370
  *
@@ -9308,7 +9378,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9308
9378
  getSurveysByUsers: (query?: {
9309
9379
  /** @format int32 */
9310
9380
  limit?: number;
9311
- }, params?: RequestParams) => Promise<AxiosResponse<SocialSurveyRecord[], any>>;
9381
+ }, params?: RequestParams) => Promise<AxiosResponse<SocialSurveyRecord[], any, {}>>;
9312
9382
  /**
9313
9383
  * No description
9314
9384
  *
@@ -9320,7 +9390,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9320
9390
  * @response `200` `(SocialSurveyRecord)[]` Success
9321
9391
  * @response `422` `UnprocessableEntity` Client Error
9322
9392
  */
9323
- getSurveysByUser: (data: SurveyEmailRequest, params?: RequestParams) => Promise<AxiosResponse<SocialSurveyRecord[], any>>;
9393
+ getSurveysByUser: (data: SurveyEmailRequest, params?: RequestParams) => Promise<AxiosResponse<SocialSurveyRecord[], any, {}>>;
9324
9394
  /**
9325
9395
  * No description
9326
9396
  *
@@ -9339,7 +9409,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9339
9409
  pageNumber?: number;
9340
9410
  sortBy?: string;
9341
9411
  sortDirection?: string;
9342
- }, params?: RequestParams) => Promise<AxiosResponse<Task, any>>;
9412
+ }, params?: RequestParams) => Promise<AxiosResponse<Task, any, {}>>;
9343
9413
  /**
9344
9414
  * No description
9345
9415
  *
@@ -9350,7 +9420,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9350
9420
  * @secure
9351
9421
  * @response `201` `Task` Created
9352
9422
  */
9353
- createTask: (data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<Task, any>>;
9423
+ createTask: (data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<Task, any, {}>>;
9354
9424
  /**
9355
9425
  * No description
9356
9426
  *
@@ -9362,7 +9432,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9362
9432
  * @response `200` `Task` Success
9363
9433
  * @response `404` `ProblemDetails` Not Found
9364
9434
  */
9365
- getTask: (id: string, params?: RequestParams) => Promise<AxiosResponse<Task, any>>;
9435
+ getTask: (id: string, params?: RequestParams) => Promise<AxiosResponse<Task, any, {}>>;
9366
9436
  /**
9367
9437
  * No description
9368
9438
  *
@@ -9374,7 +9444,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9374
9444
  * @response `200` `void` Success
9375
9445
  * @response `404` `ProblemDetails` Not Found
9376
9446
  */
9377
- replaceTask: (id: string, data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9447
+ replaceTask: (id: string, data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9378
9448
  /**
9379
9449
  * No description
9380
9450
  *
@@ -9386,7 +9456,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9386
9456
  * @response `204` `void` No Content
9387
9457
  * @response `404` `ProblemDetails` Not Found
9388
9458
  */
9389
- deleteTask: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9459
+ deleteTask: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9390
9460
  /**
9391
9461
  * No description
9392
9462
  *
@@ -9404,7 +9474,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9404
9474
  pageNumber?: number;
9405
9475
  sortBy?: string;
9406
9476
  sortDirection?: string;
9407
- }, params?: RequestParams) => Promise<AxiosResponse<TaskPaginated, any>>;
9477
+ }, params?: RequestParams) => Promise<AxiosResponse<TaskPaginated, any, {}>>;
9408
9478
  /**
9409
9479
  * No description
9410
9480
  *
@@ -9414,7 +9484,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9414
9484
  * @secure
9415
9485
  * @response `200` `void` Success
9416
9486
  */
9417
- integrationsLosLoansCreate: (data: LosLoanCreationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9487
+ integrationsLosLoansCreate: (data: LosLoanCreationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9418
9488
  /**
9419
9489
  * No description
9420
9490
  *
@@ -9431,7 +9501,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9431
9501
  pageNumber: number;
9432
9502
  sortBy?: string;
9433
9503
  sortDirection?: string;
9434
- }, data: EncompassLogSearchCriteria, params?: RequestParams) => Promise<AxiosResponse<EncompassRequestLogPaginated, any>>;
9504
+ }, data: EncompassLogSearchCriteria, params?: RequestParams) => Promise<AxiosResponse<EncompassRequestLogPaginated, any, {}>>;
9435
9505
  /**
9436
9506
  * No description
9437
9507
  *
@@ -9442,7 +9512,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9442
9512
  * @response `200` `EncompassCredentialsDetail` Success
9443
9513
  * @response `204` `void` No Content
9444
9514
  */
9445
- getEncompassCredentials: (params?: RequestParams) => Promise<AxiosResponse<EncompassCredentialsDetail, any>>;
9515
+ getEncompassCredentials: (params?: RequestParams) => Promise<AxiosResponse<EncompassCredentialsDetail, any, {}>>;
9446
9516
  /**
9447
9517
  * No description
9448
9518
  *
@@ -9452,7 +9522,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9452
9522
  * @secure
9453
9523
  * @response `201` `LosCredentials` Created
9454
9524
  */
9455
- createEncompassCredentials: (data: EncompassCredentialsRequest, params?: RequestParams) => Promise<AxiosResponse<LosCredentials, any>>;
9525
+ createEncompassCredentials: (data: EncompassCredentialsRequest, params?: RequestParams) => Promise<AxiosResponse<LosCredentials, any, {}>>;
9456
9526
  /**
9457
9527
  * No description
9458
9528
  *
@@ -9462,7 +9532,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9462
9532
  * @secure
9463
9533
  * @response `200` `EncompassCredentialsDetail` Success
9464
9534
  */
9465
- updateEncompassCredentials: (data: EncompassCredentialsRequest, params?: RequestParams) => Promise<AxiosResponse<EncompassCredentialsDetail, any>>;
9535
+ updateEncompassCredentials: (data: EncompassCredentialsRequest, params?: RequestParams) => Promise<AxiosResponse<EncompassCredentialsDetail, any, {}>>;
9466
9536
  /**
9467
9537
  * No description
9468
9538
  *
@@ -9472,7 +9542,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9472
9542
  * @secure
9473
9543
  * @response `200` `(LosWebhook)[]` Success
9474
9544
  */
9475
- getEncompassWebhooks: (params?: RequestParams) => Promise<AxiosResponse<LosWebhook[], any>>;
9545
+ getEncompassWebhooks: (params?: RequestParams) => Promise<AxiosResponse<LosWebhook[], any, {}>>;
9476
9546
  /**
9477
9547
  * No description
9478
9548
  *
@@ -9482,7 +9552,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9482
9552
  * @secure
9483
9553
  * @response `201` `LosWebhook` Created
9484
9554
  */
9485
- createEncompassWebhook: (data: CreateWebhookRequest, params?: RequestParams) => Promise<AxiosResponse<LosWebhook, any>>;
9555
+ createEncompassWebhook: (data: CreateWebhookRequest, params?: RequestParams) => Promise<AxiosResponse<LosWebhook, any, {}>>;
9486
9556
  /**
9487
9557
  * No description
9488
9558
  *
@@ -9492,7 +9562,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9492
9562
  * @secure
9493
9563
  * @response `204` `void` No Content
9494
9564
  */
9495
- deleteEncompassWebhook: (webhookId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9565
+ deleteEncompassWebhook: (webhookId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9496
9566
  /**
9497
9567
  * No description
9498
9568
  *
@@ -9509,7 +9579,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9509
9579
  pageNumber: number;
9510
9580
  sortBy?: string;
9511
9581
  sortDirection?: string;
9512
- }, data: LosSyncSearchCriteria, params?: RequestParams) => Promise<AxiosResponse<LosSyncPaginated, any>>;
9582
+ }, data: LosSyncSearchCriteria, params?: RequestParams) => Promise<AxiosResponse<LosSyncPaginated, any, {}>>;
9513
9583
  /**
9514
9584
  * No description
9515
9585
  *
@@ -9521,7 +9591,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9521
9591
  * @response `200` `UsageReport` Success
9522
9592
  * @response `404` `ProblemDetails` Not Found
9523
9593
  */
9524
- getUsageReportById: (id: string, params?: RequestParams) => Promise<AxiosResponse<UsageReport, any>>;
9594
+ getUsageReportById: (id: string, params?: RequestParams) => Promise<AxiosResponse<UsageReport, any, {}>>;
9525
9595
  /**
9526
9596
  * No description
9527
9597
  *
@@ -9538,7 +9608,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9538
9608
  month?: number;
9539
9609
  /** @format int32 */
9540
9610
  year?: number;
9541
- }, params?: RequestParams) => Promise<AxiosResponse<UsageReport[], any>>;
9611
+ }, params?: RequestParams) => Promise<AxiosResponse<UsageReport[], any, {}>>;
9542
9612
  /**
9543
9613
  * No description
9544
9614
  *
@@ -9555,7 +9625,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9555
9625
  month?: number;
9556
9626
  /** @format int32 */
9557
9627
  year?: number;
9558
- }, params?: RequestParams) => Promise<AxiosResponse<any, any>>;
9628
+ }, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
9559
9629
  /**
9560
9630
  * No description
9561
9631
  *
@@ -9566,7 +9636,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9566
9636
  * @secure
9567
9637
  * @response `200` `UsageReportDashboard` Success
9568
9638
  */
9569
- getUsageReportDashboard: (params?: RequestParams) => Promise<AxiosResponse<UsageReportDashboard, any>>;
9639
+ getUsageReportDashboard: (params?: RequestParams) => Promise<AxiosResponse<UsageReportDashboard, any, {}>>;
9570
9640
  /**
9571
9641
  * No description
9572
9642
  *
@@ -9578,7 +9648,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9578
9648
  * @response `200` `UsageReportExecution` Success
9579
9649
  * @response `404` `ProblemDetails` Not Found
9580
9650
  */
9581
- getUsageReportExecution: (correlationId: string, params?: RequestParams) => Promise<AxiosResponse<UsageReportExecution, any>>;
9651
+ getUsageReportExecution: (correlationId: string, params?: RequestParams) => Promise<AxiosResponse<UsageReportExecution, any, {}>>;
9582
9652
  /**
9583
9653
  * No description
9584
9654
  *
@@ -9595,7 +9665,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9595
9665
  month?: number;
9596
9666
  /** @format int32 */
9597
9667
  year?: number;
9598
- }, params?: RequestParams) => Promise<AxiosResponse<UsageReportExecution[], any>>;
9668
+ }, params?: RequestParams) => Promise<AxiosResponse<UsageReportExecution[], any, {}>>;
9599
9669
  /**
9600
9670
  * No description
9601
9671
  *
@@ -9607,7 +9677,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9607
9677
  * @response `201` `UserDevice` Created
9608
9678
  * @response `400` `ProblemDetails` Bad Request
9609
9679
  */
9610
- createUserDevice: (data: CreateUserDeviceRequest, params?: RequestParams) => Promise<AxiosResponse<UserDevice, any>>;
9680
+ createUserDevice: (data: CreateUserDeviceRequest, params?: RequestParams) => Promise<AxiosResponse<UserDevice, any, {}>>;
9611
9681
  /**
9612
9682
  * No description
9613
9683
  *
@@ -9619,7 +9689,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9619
9689
  * @response `204` `void` No Content
9620
9690
  * @response `404` `ProblemDetails` Not Found
9621
9691
  */
9622
- deleteUserDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9692
+ deleteUserDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9623
9693
  /**
9624
9694
  * No description
9625
9695
  *
@@ -9637,7 +9707,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9637
9707
  pageNumber?: number;
9638
9708
  sortBy?: string;
9639
9709
  sortDirection?: string;
9640
- }, params?: RequestParams) => Promise<AxiosResponse<UserDraftPaginated, any>>;
9710
+ }, params?: RequestParams) => Promise<AxiosResponse<UserDraftPaginated, any, {}>>;
9641
9711
  /**
9642
9712
  * No description
9643
9713
  *
@@ -9648,7 +9718,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9648
9718
  * @secure
9649
9719
  * @response `200` `UserDraft` Success
9650
9720
  */
9651
- getDraftUser: (draftId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<UserDraft, any>>;
9721
+ getDraftUser: (draftId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<UserDraft, any, {}>>;
9652
9722
  /**
9653
9723
  * No description
9654
9724
  *
@@ -9659,7 +9729,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9659
9729
  * @secure
9660
9730
  * @response `200` `UserDraft` Success
9661
9731
  */
9662
- addDraftUsers: (draftId: string, userId: string, data: CreateUserDraft, params?: RequestParams) => Promise<AxiosResponse<UserDraft, any>>;
9732
+ addDraftUsers: (draftId: string, userId: string, data: CreateUserDraft, params?: RequestParams) => Promise<AxiosResponse<UserDraft, any, {}>>;
9663
9733
  /**
9664
9734
  * No description
9665
9735
  *
@@ -9670,7 +9740,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9670
9740
  * @secure
9671
9741
  * @response `204` `void` No Content
9672
9742
  */
9673
- deleteDraftUser: (draftId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9743
+ deleteDraftUser: (draftId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9674
9744
  /**
9675
9745
  * No description
9676
9746
  *
@@ -9681,7 +9751,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9681
9751
  * @secure
9682
9752
  * @response `200` `(UserGroupAccessScope)[]` Success
9683
9753
  */
9684
- getUserGroupAccessScopes: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope[], any>>;
9754
+ getUserGroupAccessScopes: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope[], any, {}>>;
9685
9755
  /**
9686
9756
  * No description
9687
9757
  *
@@ -9692,7 +9762,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9692
9762
  * @secure
9693
9763
  * @response `200` `UserGroupAccessScope` Success
9694
9764
  */
9695
- createUserGroupAccessScope: (groupId: string, data: CreateAccessScopeRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope, any>>;
9765
+ createUserGroupAccessScope: (groupId: string, data: CreateAccessScopeRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope, any, {}>>;
9696
9766
  /**
9697
9767
  * No description
9698
9768
  *
@@ -9703,7 +9773,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9703
9773
  * @secure
9704
9774
  * @response `204` `void` No Content
9705
9775
  */
9706
- deleteUserGroupAccessScope: (groupId: string, scopeId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9776
+ deleteUserGroupAccessScope: (groupId: string, scopeId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9707
9777
  /**
9708
9778
  * No description
9709
9779
  *
@@ -9714,7 +9784,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9714
9784
  * @secure
9715
9785
  * @response `200` `(UserGroupMember)[]` Success
9716
9786
  */
9717
- getUserGroupMembers: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupMember[], any>>;
9787
+ getUserGroupMembers: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupMember[], any, {}>>;
9718
9788
  /**
9719
9789
  * No description
9720
9790
  *
@@ -9728,7 +9798,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9728
9798
  createUserGroupMember: (groupId: string, data: CreateGroupMemberRequest, query?: {
9729
9799
  /** @format uuid */
9730
9800
  userId?: string;
9731
- }, params?: RequestParams) => Promise<AxiosResponse<UserGroupMember, any>>;
9801
+ }, params?: RequestParams) => Promise<AxiosResponse<UserGroupMember, any, {}>>;
9732
9802
  /**
9733
9803
  * No description
9734
9804
  *
@@ -9739,7 +9809,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9739
9809
  * @secure
9740
9810
  * @response `204` `void` No Content
9741
9811
  */
9742
- deleteUserGroupMember: (groupId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9812
+ deleteUserGroupMember: (groupId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9743
9813
  /**
9744
9814
  * No description
9745
9815
  *
@@ -9758,7 +9828,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9758
9828
  pageNumber?: number;
9759
9829
  sortBy?: string;
9760
9830
  sortDirection?: string;
9761
- }, params?: RequestParams) => Promise<AxiosResponse<UserGroupPaginated, any>>;
9831
+ }, params?: RequestParams) => Promise<AxiosResponse<UserGroupPaginated, any, {}>>;
9762
9832
  /**
9763
9833
  * No description
9764
9834
  *
@@ -9769,7 +9839,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9769
9839
  * @secure
9770
9840
  * @response `200` `UserGroup` Success
9771
9841
  */
9772
- getUserGroup: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any>>;
9842
+ getUserGroup: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any, {}>>;
9773
9843
  /**
9774
9844
  * No description
9775
9845
  *
@@ -9780,7 +9850,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9780
9850
  * @secure
9781
9851
  * @response `200` `UserGroup` Success
9782
9852
  */
9783
- updateUserGroup: (groupId: string, data: UpdateUserGroupRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any>>;
9853
+ updateUserGroup: (groupId: string, data: UpdateUserGroupRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any, {}>>;
9784
9854
  /**
9785
9855
  * No description
9786
9856
  *
@@ -9791,7 +9861,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9791
9861
  * @secure
9792
9862
  * @response `204` `void` No Content
9793
9863
  */
9794
- deleteUserGroup: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9864
+ deleteUserGroup: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9795
9865
  /**
9796
9866
  * No description
9797
9867
  *
@@ -9802,7 +9872,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9802
9872
  * @secure
9803
9873
  * @response `201` `UserGroup` Created
9804
9874
  */
9805
- createUserGroup: (data: CreateUserGroupRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any>>;
9875
+ createUserGroup: (data: CreateUserGroupRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any, {}>>;
9806
9876
  /**
9807
9877
  * No description
9808
9878
  *
@@ -9815,7 +9885,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9815
9885
  * @response `404` `Error` Not Found
9816
9886
  * @response `422` `UnprocessableEntity` Client Error
9817
9887
  */
9818
- requestImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9888
+ requestImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9819
9889
  /**
9820
9890
  * No description
9821
9891
  *
@@ -9828,7 +9898,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9828
9898
  * @response `404` `Error` Not Found
9829
9899
  * @response `422` `UnprocessableEntity` Client Error
9830
9900
  */
9831
- allowImpersonation: (data: AllowImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9901
+ allowImpersonation: (data: AllowImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9832
9902
  /**
9833
9903
  * No description
9834
9904
  *
@@ -9841,7 +9911,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9841
9911
  * @response `404` `Error` Not Found
9842
9912
  * @response `422` `UnprocessableEntity` Client Error
9843
9913
  */
9844
- allowImpersonationWithGuid: (allowToken: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9914
+ allowImpersonationWithGuid: (allowToken: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9845
9915
  /**
9846
9916
  * No description
9847
9917
  *
@@ -9853,7 +9923,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9853
9923
  * @response `204` `void` No Content
9854
9924
  * @response `422` `UnprocessableEntity` Client Error
9855
9925
  */
9856
- beginImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9926
+ beginImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9857
9927
  /**
9858
9928
  * No description
9859
9929
  *
@@ -9865,7 +9935,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9865
9935
  * @response `204` `void` No Content
9866
9936
  * @response `422` `UnprocessableEntity` Client Error
9867
9937
  */
9868
- stopImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9938
+ stopImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9869
9939
  /**
9870
9940
  * No description
9871
9941
  *
@@ -9878,7 +9948,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9878
9948
  * @response `404` `Error` Not Found
9879
9949
  * @response `422` `UnprocessableEntity` Client Error
9880
9950
  */
9881
- forceImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9951
+ forceImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9882
9952
  /**
9883
9953
  * No description
9884
9954
  *
@@ -9890,7 +9960,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9890
9960
  * @response `204` `void` No Content
9891
9961
  * @response `422` `UnprocessableEntity` Client Error
9892
9962
  */
9893
- extendImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9963
+ extendImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9894
9964
  /**
9895
9965
  * No description
9896
9966
  *
@@ -9902,7 +9972,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9902
9972
  * @response `204` `void` No Content
9903
9973
  * @response `422` `UnprocessableEntity` Client Error
9904
9974
  */
9905
- inviteUser: (data: CreateInviteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9975
+ inviteUser: (data: CreateInviteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9906
9976
  /**
9907
9977
  * No description
9908
9978
  *
@@ -9915,7 +9985,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9915
9985
  * @response `401` `UnprocessableEntity` Unauthorized
9916
9986
  * @response `404` `UnprocessableEntity` Not Found
9917
9987
  */
9918
- resendInviteNotification: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9988
+ resendInviteNotification: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9919
9989
  /**
9920
9990
  * No description
9921
9991
  *
@@ -9927,7 +9997,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9927
9997
  * @response `200` `Invite` Success
9928
9998
  * @response `422` `UnprocessableEntity` Client Error
9929
9999
  */
9930
- verifyUserInvite: (token: string, params?: RequestParams) => Promise<AxiosResponse<Invite, any>>;
10000
+ verifyUserInvite: (token: string, params?: RequestParams) => Promise<AxiosResponse<Invite, any, {}>>;
9931
10001
  /**
9932
10002
  * No description
9933
10003
  *
@@ -9938,7 +10008,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9938
10008
  * @secure
9939
10009
  * @response `200` `(UserRelation)[]` Success
9940
10010
  */
9941
- getUserRelations: (userId: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation[], any>>;
10011
+ getUserRelations: (userId: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation[], any, {}>>;
9942
10012
  /**
9943
10013
  * No description
9944
10014
  *
@@ -9949,7 +10019,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9949
10019
  * @secure
9950
10020
  * @response `204` `void` No Content
9951
10021
  */
9952
- createUserRelation: (userId: string, data: CreateUserRelationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
10022
+ createUserRelation: (userId: string, data: CreateUserRelationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9953
10023
  /**
9954
10024
  * No description
9955
10025
  *
@@ -9960,7 +10030,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9960
10030
  * @secure
9961
10031
  * @response `200` `UserRelation` Success
9962
10032
  */
9963
- getUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation, any>>;
10033
+ getUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation, any, {}>>;
9964
10034
  /**
9965
10035
  * No description
9966
10036
  *
@@ -9971,7 +10041,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9971
10041
  * @secure
9972
10042
  * @response `204` `void` No Content
9973
10043
  */
9974
- deleteUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
10044
+ deleteUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9975
10045
  /**
9976
10046
  * No description
9977
10047
  *
@@ -9989,7 +10059,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9989
10059
  pageNumber?: number;
9990
10060
  sortBy?: string;
9991
10061
  sortDirection?: string;
9992
- }, params?: RequestParams) => Promise<AxiosResponse<User[], any>>;
10062
+ }, params?: RequestParams) => Promise<AxiosResponse<User[], any, {}>>;
9993
10063
  /**
9994
10064
  * No description
9995
10065
  *
@@ -10001,7 +10071,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
10001
10071
  * @response `200` `DetailedUser` Success
10002
10072
  * @response `422` `UnprocessableEntity` Client Error
10003
10073
  */
10004
- createUser: (data: CreateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
10074
+ createUser: (data: CreateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any, {}>>;
10005
10075
  /**
10006
10076
  * No description
10007
10077
  *
@@ -10019,7 +10089,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
10019
10089
  pageNumber?: number;
10020
10090
  sortBy?: string;
10021
10091
  sortDirection?: string;
10022
- }, params?: RequestParams) => Promise<AxiosResponse<UserPaginated, any>>;
10092
+ }, params?: RequestParams) => Promise<AxiosResponse<UserPaginated, any, {}>>;
10023
10093
  /**
10024
10094
  * No description
10025
10095
  *
@@ -10030,7 +10100,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
10030
10100
  * @secure
10031
10101
  * @response `200` `AdminAccessUser` Success
10032
10102
  */
10033
- getUserByEmail: (data: GetUserByEmailRequest, params?: RequestParams) => Promise<AxiosResponse<AdminAccessUser, any>>;
10103
+ getUserByEmail: (data: GetUserByEmailRequest, params?: RequestParams) => Promise<AxiosResponse<AdminAccessUser, any, {}>>;
10034
10104
  /**
10035
10105
  * No description
10036
10106
  *
@@ -10042,7 +10112,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
10042
10112
  * @response `200` `User` Success
10043
10113
  * @response `422` `UnprocessableEntity` Client Error
10044
10114
  */
10045
- signUp: (data: RegisterUserRequest, params?: RequestParams) => Promise<AxiosResponse<User, any>>;
10115
+ signUp: (data: RegisterUserRequest, params?: RequestParams) => Promise<AxiosResponse<User, any, {}>>;
10046
10116
  /**
10047
10117
  * No description
10048
10118
  *
@@ -10054,7 +10124,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
10054
10124
  * @response `200` `DetailedUser` Success
10055
10125
  * @response `422` `UnprocessableEntity` Client Error
10056
10126
  */
10057
- replaceUser: (id: string, data: UpdateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
10127
+ replaceUser: (id: string, data: UpdateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any, {}>>;
10058
10128
  /**
10059
10129
  * No description
10060
10130
  *
@@ -10068,7 +10138,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
10068
10138
  deleteUser: (id: string, query?: {
10069
10139
  /** @default false */
10070
10140
  permanent?: boolean;
10071
- }, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
10141
+ }, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
10072
10142
  /**
10073
10143
  * No description
10074
10144
  *
@@ -10079,7 +10149,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
10079
10149
  * @secure
10080
10150
  * @response `204` `void` No Content
10081
10151
  */
10082
- restoreUser: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
10152
+ restoreUser: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
10083
10153
  /**
10084
10154
  * No description
10085
10155
  *
@@ -10091,7 +10161,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
10091
10161
  * @response `204` `void` No Content
10092
10162
  * @response `422` `UnprocessableEntity` Client Error
10093
10163
  */
10094
- changePassword: (data: ChangePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
10164
+ changePassword: (data: ChangePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
10095
10165
  /**
10096
10166
  * No description
10097
10167
  *
@@ -10103,7 +10173,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
10103
10173
  * @response `204` `void` No Content
10104
10174
  * @response `422` `UnprocessableEntity` Client Error
10105
10175
  */
10106
- verifyPassword: (data: VerifyPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
10176
+ verifyPassword: (data: VerifyPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
10107
10177
  /**
10108
10178
  * No description
10109
10179
  *
@@ -10115,7 +10185,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
10115
10185
  * @response `204` `void` No Content
10116
10186
  * @response `422` `UnprocessableEntity` Client Error
10117
10187
  */
10118
- overridePassword: (id: string, data: OverridePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
10188
+ overridePassword: (id: string, data: OverridePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
10119
10189
  /**
10120
10190
  * No description
10121
10191
  *
@@ -10127,7 +10197,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
10127
10197
  * @response `204` `void` No Content
10128
10198
  * @response `422` `UnprocessableEntity` Client Error
10129
10199
  */
10130
- forgotPassword: (data: SendForgotPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
10200
+ forgotPassword: (data: SendForgotPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
10131
10201
  /**
10132
10202
  * No description
10133
10203
  *
@@ -10139,7 +10209,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
10139
10209
  * @response `204` `void` No Content
10140
10210
  * @response `422` `UnprocessableEntity` Client Error
10141
10211
  */
10142
- sendMobilePhoneVerificationCode: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
10212
+ sendMobilePhoneVerificationCode: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
10143
10213
  /**
10144
10214
  * No description
10145
10215
  *
@@ -10151,7 +10221,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
10151
10221
  * @response `204` `void` No Content
10152
10222
  * @response `422` `UnprocessableEntity` Client Error
10153
10223
  */
10154
- verifyUserMobilePhone: (data: UserMobilePhoneVerificationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
10224
+ verifyUserMobilePhone: (data: UserMobilePhoneVerificationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
10155
10225
  /**
10156
10226
  * No description
10157
10227
  *
@@ -10163,7 +10233,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
10163
10233
  * @response `200` `ImpersonatedDetailedUser` Success
10164
10234
  * @response `401` `ProblemDetails` Unauthorized
10165
10235
  */
10166
- getMe: (params?: RequestParams) => Promise<AxiosResponse<ImpersonatedDetailedUser, any>>;
10236
+ getMe: (params?: RequestParams) => Promise<AxiosResponse<ImpersonatedDetailedUser, any, {}>>;
10167
10237
  /**
10168
10238
  * No description
10169
10239
  *
@@ -10174,7 +10244,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
10174
10244
  * @secure
10175
10245
  * @response `200` `DetailedUser` Success
10176
10246
  */
10177
- replaceMe: (data: UpdateMeRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
10247
+ replaceMe: (data: UpdateMeRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any, {}>>;
10178
10248
  /**
10179
10249
  * @description Update the phone number If changed will send a verification code to the new number
10180
10250
  *
@@ -10185,7 +10255,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
10185
10255
  * @secure
10186
10256
  * @response `204` `DetailedUser` No Content
10187
10257
  */
10188
- updateMyPhone: (data: UpdateMobilePhoneRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
10258
+ updateMyPhone: (data: UpdateMobilePhoneRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any, {}>>;
10189
10259
  /**
10190
10260
  * No description
10191
10261
  *
@@ -10196,7 +10266,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
10196
10266
  * @secure
10197
10267
  * @response `200` `(UserRelationship)[]` Success
10198
10268
  */
10199
- getMyRelationships: (params?: RequestParams) => Promise<AxiosResponse<UserRelationship[], any>>;
10269
+ getMyRelationships: (params?: RequestParams) => Promise<AxiosResponse<UserRelationship[], any, {}>>;
10200
10270
  /**
10201
10271
  * No description
10202
10272
  *
@@ -10207,7 +10277,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
10207
10277
  * @secure
10208
10278
  * @response `200` `(UserRelationshipProspect)[]` Success
10209
10279
  */
10210
- getMyRelationshipProspects: (params?: RequestParams) => Promise<AxiosResponse<UserRelationshipProspect[], any>>;
10280
+ getMyRelationshipProspects: (params?: RequestParams) => Promise<AxiosResponse<UserRelationshipProspect[], any, {}>>;
10211
10281
  /**
10212
10282
  * No description
10213
10283
  *
@@ -10218,7 +10288,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
10218
10288
  * @secure
10219
10289
  * @response `204` `void` No Content
10220
10290
  */
10221
- deleteRelationshipProspect: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
10291
+ deleteRelationshipProspect: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
10222
10292
  /**
10223
10293
  * No description
10224
10294
  *
@@ -10229,7 +10299,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
10229
10299
  * @secure
10230
10300
  * @response `204` `void` No Content
10231
10301
  */
10232
- deleteMe: (data: UserAccountDeletionRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
10302
+ deleteMe: (data: UserAccountDeletionRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
10233
10303
  /**
10234
10304
  * No description
10235
10305
  *
@@ -10240,7 +10310,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
10240
10310
  * @secure
10241
10311
  * @response `200` `GetForm` Success
10242
10312
  */
10243
- getWorkflow: (data: GetWorkflowRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any>>;
10313
+ getWorkflow: (data: GetWorkflowRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any, {}>>;
10244
10314
  };
10245
10315
  sso: {
10246
10316
  /**
@@ -10252,6 +10322,6 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
10252
10322
  * @secure
10253
10323
  * @response `200` `void` Success
10254
10324
  */
10255
- logoutList: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
10325
+ logoutList: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
10256
10326
  };
10257
10327
  }