@matech/thebigpos-sdk 2.39.0 → 2.39.1-rc1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -52,9 +52,6 @@ export type EntityType = "Account" | "Corporate" | "Branch" | "LoanOfficer" | "R
52
52
  export type EncompassLogOutcome = "Success" | "Failure" | "PartialSuccess";
53
53
  export type EncompassLogOperationType = "FieldUpdate" | "ConsentUpdate" | "DocumentSync" | "MilestoneUpdate" | "DocumentAttachment" | "General" | "FieldReader";
54
54
  export type DraftType = "NewLoan" | "EditLoan";
55
- export type CustomFieldEntityType = "Loan";
56
- export type CustomFieldDataType = "String" | "Number" | "Decimal" | "Boolean" | "Date" | "SingleSelect" | "MultiSelect";
57
- export type CustomFieldAccessLevel = "NoAccess" | "ReadOnly" | "ReadWrite";
58
55
  export type ConsentType = "Econsent" | "CreditAuthorization" | "Tcpa";
59
56
  export type ConsentLosSyncStatus = "NotStarted" | "Failed" | "Success";
60
57
  export type BranchType = "Mortgage" | "RealEstate";
@@ -113,7 +110,7 @@ export interface AccountBilling {
113
110
  contractedRate: number;
114
111
  }
115
112
  export interface AccountBillingRequest {
116
- billingType: "ClosedLoan" | "LoanOfficer";
113
+ billingType: AccountBillingRequestBillingTypeEnum;
117
114
  /**
118
115
  * @format double
119
116
  * @min 0
@@ -391,17 +388,17 @@ export interface ApplicationRowData {
391
388
  loanNumber?: string | null;
392
389
  /** @deprecated */
393
390
  role?: string | null;
394
- /** @format date */
391
+ /** @format date-time */
395
392
  initialDisclosureDate?: string | null;
396
- /** @format date */
393
+ /** @format date-time */
397
394
  closingDisclosureDate?: string | null;
398
- /** @format date */
395
+ /** @format date-time */
399
396
  underwritingApprovalDate?: string | null;
400
397
  /** @format date-time */
401
398
  closedDate?: string | null;
402
399
  /** @format date-time */
403
400
  fundingDate?: string | null;
404
- /** @format date */
401
+ /** @format date-time */
405
402
  currentStatusDate?: string | null;
406
403
  channel?: string | null;
407
404
  currentMilestone?: string | null;
@@ -433,7 +430,7 @@ export interface AuditLogEntry {
433
430
  /** @format uuid */
434
431
  id: string;
435
432
  entityType: string;
436
- changeType: "Created" | "Modified" | "SoftDeleted" | "HardDeleted" | "Restored";
433
+ changeType: AuditLogEntryChangeTypeEnum;
437
434
  /** @format uuid */
438
435
  entityId: string;
439
436
  performedBy?: AuditLogUser | null;
@@ -469,11 +466,6 @@ export interface AuditLogUser {
469
466
  lastName: string;
470
467
  email: string;
471
468
  }
472
- export interface AutomatedService {
473
- triggered: string[];
474
- skipped: string[];
475
- rateLimited: string[];
476
- }
477
469
  export interface BranchBase {
478
470
  /** @format date-time */
479
471
  createdAt: string;
@@ -717,7 +709,7 @@ export interface CorporateSearchCriteria {
717
709
  isActive?: boolean | null;
718
710
  }
719
711
  export interface CreateAccessScopeRequest {
720
- scopeType: "User" | "Branch";
712
+ scopeType: CreateAccessScopeRequestScopeTypeEnum;
721
713
  /** @format uuid */
722
714
  userId?: string | null;
723
715
  /** @format uuid */
@@ -740,7 +732,7 @@ export interface CreateAccountRequest {
740
732
  */
741
733
  nlmsid: number;
742
734
  settings: AccountSettingsRequest;
743
- environment: "Development" | "Staging" | "UAT" | "Production";
735
+ environment: CreateAccountRequestEnvironmentEnum;
744
736
  losIntegration: LOSIntegration;
745
737
  billingSettings: AccountBillingRequest;
746
738
  }
@@ -754,33 +746,6 @@ export interface CreateBranchRequest {
754
746
  corporateID: string;
755
747
  type: string;
756
748
  }
757
- export interface CreateCustomFieldDefinitionRequest {
758
- isRequired: boolean;
759
- /**
760
- * @format int32
761
- * @min 0
762
- */
763
- displayOrder: number;
764
- /** @format int32 */
765
- minLength?: number | null;
766
- /** @format int32 */
767
- maxLength?: number | null;
768
- /** @format double */
769
- minValue?: number | null;
770
- /** @format double */
771
- maxValue?: number | null;
772
- /**
773
- * @minLength 1
774
- * @maxLength 250
775
- */
776
- name: string;
777
- defaultValue?: string | null;
778
- regexPattern?: string | null;
779
- dataType: "String" | "Number" | "Decimal" | "Boolean" | "Date" | "SingleSelect" | "MultiSelect";
780
- entityType: "Loan";
781
- options?: CustomFieldOptionRequest[] | null;
782
- permissions?: CustomFieldPermissionRequest[] | null;
783
- }
784
749
  export interface CreateDocumentTemplateRequest {
785
750
  /** @minLength 1 */
786
751
  htmlBody: string;
@@ -797,7 +762,7 @@ export interface CreateDocumentTemplateRequest {
797
762
  export interface CreateGroupMemberRequest {
798
763
  /** @format uuid */
799
764
  userId: string;
800
- loanRole: "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
765
+ loanRole: CreateGroupMemberRequestLoanRoleEnum;
801
766
  }
802
767
  export interface CreateInviteRequest {
803
768
  /** @minLength 1 */
@@ -808,7 +773,7 @@ export interface CreateInviteRequest {
808
773
  emailAddress: string;
809
774
  phoneNumber?: string | null;
810
775
  /** @deprecated */
811
- relationship: "NotApplicable" | "Spouse" | "NonSpouse";
776
+ relationship: CreateInviteRequestRelationshipEnum;
812
777
  loanID: string;
813
778
  route?: string | null;
814
779
  /** @format uuid */
@@ -830,7 +795,7 @@ export interface CreateLoanImportRequest {
830
795
  * @minLength 1
831
796
  */
832
797
  startDate: string;
833
- importMode: "All" | "NewOnly" | "UpdateOnly";
798
+ importMode: CreateLoanImportRequestImportModeEnum;
834
799
  }
835
800
  export interface CreateSession {
836
801
  sessionId: string;
@@ -848,7 +813,7 @@ export interface CreateUserDeviceRequest {
848
813
  token: string;
849
814
  }
850
815
  export interface CreateUserDraft {
851
- loanRole: "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
816
+ loanRole: CreateUserDraftLoanRoleEnum;
852
817
  }
853
818
  export interface CreateUserGroupRequest {
854
819
  /**
@@ -903,81 +868,6 @@ export interface CreateUserRequest {
903
868
  export interface CreateWebhookRequest {
904
869
  webhookPath: string;
905
870
  }
906
- export interface CustomFieldDefinition {
907
- /** @format date-time */
908
- createdAt: string;
909
- /** @format date-time */
910
- updatedAt?: string | null;
911
- /** @format date-time */
912
- deletedAt?: string | null;
913
- /** @format uuid */
914
- id: string;
915
- /** @format uuid */
916
- accountID: string;
917
- isActive: boolean;
918
- isRequired: boolean;
919
- /** @format int32 */
920
- displayOrder: number;
921
- /** @format int32 */
922
- minLength?: number | null;
923
- /** @format int32 */
924
- maxLength?: number | null;
925
- /** @format double */
926
- minValue?: number | null;
927
- /** @format double */
928
- maxValue?: number | null;
929
- name: string;
930
- defaultValue?: string | null;
931
- regexPattern?: string | null;
932
- dataType: "String" | "Number" | "Decimal" | "Boolean" | "Date" | "SingleSelect" | "MultiSelect";
933
- entityType: "Loan";
934
- options: CustomFieldOption[];
935
- permissions: CustomFieldPermission[];
936
- }
937
- export interface CustomFieldEntry {
938
- /** @format uuid */
939
- definitionId: string;
940
- isActive: boolean;
941
- isReadOnly: boolean;
942
- /** @format int32 */
943
- displayOrder: number;
944
- name: string;
945
- value: string;
946
- dataType: "String" | "Number" | "Decimal" | "Boolean" | "Date" | "SingleSelect" | "MultiSelect";
947
- }
948
- export interface CustomFieldOption {
949
- /** @format uuid */
950
- id: string;
951
- /** @format int32 */
952
- displayOrder: number;
953
- value: string;
954
- }
955
- export interface CustomFieldOptionRequest {
956
- /** @format int32 */
957
- displayOrder: number;
958
- value: string;
959
- }
960
- export interface CustomFieldPermission {
961
- /** @format uuid */
962
- id: string;
963
- role: "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
964
- accessLevel: "NoAccess" | "ReadOnly" | "ReadWrite";
965
- }
966
- export interface CustomFieldPermissionRequest {
967
- role: "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
968
- accessLevel: "NoAccess" | "ReadOnly" | "ReadWrite";
969
- }
970
- export interface CustomFieldValue {
971
- /** @format uuid */
972
- id: string;
973
- /** @format uuid */
974
- entityID: string;
975
- /** @format uuid */
976
- customFieldDefinitionID: string;
977
- value: string;
978
- definitionName: string;
979
- dataType: "String" | "Number" | "Decimal" | "Boolean" | "Date" | "SingleSelect" | "MultiSelect";
980
- }
981
871
  export interface CustomLoanData {
982
872
  eConsentInformation?: EConsentInformation | null;
983
873
  }
@@ -1220,7 +1110,7 @@ export interface Draft {
1220
1110
  siteConfiguration: SiteConfigurationReduced;
1221
1111
  /** @format uuid */
1222
1112
  loanID?: string | null;
1223
- type: "NewLoan" | "EditLoan";
1113
+ type: DraftTypeEnum;
1224
1114
  isCoBorrower: boolean;
1225
1115
  }
1226
1116
  export interface DraftContent {
@@ -1238,7 +1128,7 @@ export interface DraftContent {
1238
1128
  siteConfiguration: SiteConfigurationReduced;
1239
1129
  /** @format uuid */
1240
1130
  loanID?: string | null;
1241
- type: "NewLoan" | "EditLoan";
1131
+ type: DraftContentTypeEnum;
1242
1132
  isCoBorrower: boolean;
1243
1133
  applicationPayload: any;
1244
1134
  }
@@ -1311,7 +1201,6 @@ export interface EnabledServices {
1311
1201
  listings?: boolean | null;
1312
1202
  addCoBorrower?: boolean | null;
1313
1203
  autoNameTaskDocuments?: boolean | null;
1314
- genericCalculatorsEnabled?: boolean | null;
1315
1204
  }
1316
1205
  export interface EncompassContact {
1317
1206
  name?: string | null;
@@ -1330,7 +1219,7 @@ export interface EncompassCredentialsDetail {
1330
1219
  defaultLoanOfficerUserName?: string | null;
1331
1220
  clearStateIfUnlicensed: boolean;
1332
1221
  baseUrl?: string | null;
1333
- signingMethod: "ConsumerConnect" | "POSF";
1222
+ signingMethod: EncompassCredentialsDetailSigningMethodEnum;
1334
1223
  subscriptionId?: string | null;
1335
1224
  environment?: string | null;
1336
1225
  }
@@ -1345,7 +1234,7 @@ export interface EncompassCredentialsRequest {
1345
1234
  defaultLoanOfficerUserName?: string | null;
1346
1235
  clearStateIfUnlicensed: boolean;
1347
1236
  baseUrl?: string | null;
1348
- signingMethod: "ConsumerConnect" | "POSF";
1237
+ signingMethod: EncompassCredentialsRequestSigningMethodEnum;
1349
1238
  subscriptionId?: string | null;
1350
1239
  environment?: string | null;
1351
1240
  clientID?: string | null;
@@ -1403,8 +1292,8 @@ export interface EncompassRequestLog {
1403
1292
  losId?: string | null;
1404
1293
  /** @format uuid */
1405
1294
  accountId: string;
1406
- operationType: "FieldUpdate" | "ConsentUpdate" | "DocumentSync" | "MilestoneUpdate" | "DocumentAttachment" | "General" | "FieldReader";
1407
- outcome: "Success" | "Failure" | "PartialSuccess";
1295
+ operationType: EncompassRequestLogOperationTypeEnum;
1296
+ outcome: EncompassRequestLogOutcomeEnum;
1408
1297
  message: string;
1409
1298
  endpoint?: string | null;
1410
1299
  httpMethod?: string | null;
@@ -1621,7 +1510,7 @@ export interface FusionFieldDisplay {
1621
1510
  fieldValue: string;
1622
1511
  }
1623
1512
  export interface FusionReportFilter {
1624
- filterType: "DateGreaterThanOrEqualTo" | "DateGreaterThan" | "DateLessThan" | "DateLessThanOrEqualTo" | "DateEquals" | "DateDoesntEqual" | "DateNonEmpty" | "DateEmpty" | "StringContains" | "StringEquals" | "StringNotEmpty" | "StringNotEquals" | "StringNotContains";
1513
+ filterType: FusionReportFilterFilterTypeEnum;
1625
1514
  targetField: string;
1626
1515
  targetValue: string;
1627
1516
  }
@@ -1735,7 +1624,7 @@ export interface GuidPatchOperation {
1735
1624
  from?: string | null;
1736
1625
  }
1737
1626
  export interface IPAddress {
1738
- 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";
1627
+ addressFamily: IpAddressAddressFamilyEnum;
1739
1628
  /** @format int64 */
1740
1629
  scopeId: number;
1741
1630
  isIPv6Multicast: boolean;
@@ -1943,7 +1832,7 @@ export interface Loan {
1943
1832
  currentLoanStatus?: string | null;
1944
1833
  currentMilestone?: string | null;
1945
1834
  lastCompletedMilestone?: string | null;
1946
- /** @format date */
1835
+ /** @format date-time */
1947
1836
  currentStatusDate?: string | null;
1948
1837
  isActive: boolean;
1949
1838
  loanChannel?: string | null;
@@ -1957,17 +1846,17 @@ export interface Loan {
1957
1846
  source?: string | null;
1958
1847
  isPOSLoan?: boolean | null;
1959
1848
  version?: string | null;
1960
- /** @format date */
1849
+ /** @format date-time */
1961
1850
  startDate?: string | null;
1962
- /** @format date */
1851
+ /** @format date-time */
1963
1852
  initialDisclosureProvidedDate?: string | null;
1964
- /** @format date */
1853
+ /** @format date-time */
1965
1854
  closingDisclosureSentDate?: string | null;
1966
- /** @format date */
1855
+ /** @format date-time */
1967
1856
  underwritingApprovalDate?: string | null;
1968
1857
  /** @format date */
1969
1858
  closingDate?: string | null;
1970
- /** @format date */
1859
+ /** @format date-time */
1971
1860
  fundingOrderDate?: string | null;
1972
1861
  isInSync: boolean;
1973
1862
  /** @format date-time */
@@ -1988,8 +1877,7 @@ export interface Loan {
1988
1877
  nonOwningBorrowers: LoanNonOwningBorrower[];
1989
1878
  userLoans: UserLoan[];
1990
1879
  contacts: LoanContact[];
1991
- customFields: CustomFieldEntry[];
1992
- signingMethod: "ConsumerConnect" | "POSF";
1880
+ signingMethod: LoanSigningMethodEnum;
1993
1881
  }
1994
1882
  export interface LoanApplication {
1995
1883
  /** @format uuid */
@@ -2001,7 +1889,7 @@ export interface LoanApplication {
2001
1889
  number?: string | null;
2002
1890
  program?: string | null;
2003
1891
  channel?: string | null;
2004
- /** @format date */
1892
+ /** @format date-time */
2005
1893
  startDate?: string | null;
2006
1894
  property?: LoanProperty | null;
2007
1895
  financial?: LoanFinancial | null;
@@ -2026,7 +1914,6 @@ export interface LoanApplicationRequest {
2026
1914
  nonOwningBorrowers: LoanNonOwningBorrowerRequest[];
2027
1915
  /** @format uuid */
2028
1916
  draftId?: string | null;
2029
- additionalFields?: Record<string, any>;
2030
1917
  /** @format uuid */
2031
1918
  existingLoanId?: string | null;
2032
1919
  }
@@ -2045,7 +1932,7 @@ export interface LoanBorrower {
2045
1932
  citizenship?: LoanCitizenship | null;
2046
1933
  maritalStatus?: LoanMaritalStatus | null;
2047
1934
  languagePreference?: LoanLanguagePreference | null;
2048
- applicationStatus: "Draft" | "Complete";
1935
+ applicationStatus: LoanBorrowerApplicationStatusEnum;
2049
1936
  /** @format int32 */
2050
1937
  numberOfDependents?: number | null;
2051
1938
  isPrimaryBorrower: boolean;
@@ -2902,7 +2789,7 @@ export interface LoanContact {
2902
2789
  email?: string | null;
2903
2790
  phone?: string | null;
2904
2791
  companyName?: string | null;
2905
- role: "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
2792
+ role: LoanContactRoleEnum;
2906
2793
  }
2907
2794
  export interface LoanContactList {
2908
2795
  email: string;
@@ -2930,9 +2817,6 @@ export interface LoanDocument {
2930
2817
  /** @format date-time */
2931
2818
  sensitiveDataPurgedOn?: string | null;
2932
2819
  }
2933
- export interface LoanDocumentPreviewsRequest {
2934
- documentIds: string[];
2935
- }
2936
2820
  export interface LoanDocumentSearch {
2937
2821
  /** @format date-time */
2938
2822
  createdAt: string;
@@ -3031,13 +2915,13 @@ export interface LoanImport {
3031
2915
  /** @format int32 */
3032
2916
  importedCount: number;
3033
2917
  statusMessage?: string | null;
3034
- status: "WaitingProcess" | "InProgress" | "Completed" | "Failed" | "Cancelled";
3035
- importMode: "All" | "NewOnly" | "UpdateOnly";
2918
+ status: LoanImportStatusEnum;
2919
+ importMode: LoanImportImportModeEnum;
3036
2920
  /** @format date-time */
3037
2921
  createdAt?: string | null;
3038
2922
  }
3039
2923
  export interface LoanImportLog {
3040
- level: "None" | "Info" | "Warning" | "Error";
2924
+ level: LoanImportLogLevelEnum;
3041
2925
  message: string;
3042
2926
  /** @format date-time */
3043
2927
  createdAt: string;
@@ -3064,7 +2948,7 @@ export interface LoanList {
3064
2948
  purpose?: LoanPurpose | null;
3065
2949
  /** @format double */
3066
2950
  totalLoanAmount?: number | null;
3067
- /** @format date */
2951
+ /** @format date-time */
3068
2952
  startDate?: string | null;
3069
2953
  isActive: boolean;
3070
2954
  propertyAddress?: Address | null;
@@ -3092,8 +2976,8 @@ export interface LoanListPaginated {
3092
2976
  export interface LoanLog {
3093
2977
  /** @format uuid */
3094
2978
  id: string;
3095
- level: "None" | "Info" | "Warning" | "Error";
3096
- type: "Loan" | "Queue" | "POSFlagChanged" | "Verification" | "DocumentUploaded" | "LoanCreated" | "WorkflowSubmitted" | "UserInvitationSent" | "CoBorrowerAdded" | "TaskCompleted" | "LoanStatusChanged" | "Consent" | "SensitiveDataPurge" | "ClosingDateUpdated" | "ConsumerConnectAssociation" | "TaskReminderSent";
2979
+ level: LoanLogLevelEnum;
2980
+ type: LoanLogTypeEnum;
3097
2981
  message: string;
3098
2982
  /** @format date-time */
3099
2983
  createdAt: string;
@@ -3101,8 +2985,8 @@ export interface LoanLog {
3101
2985
  export interface LoanLogDetail {
3102
2986
  /** @format uuid */
3103
2987
  id: string;
3104
- level: "None" | "Info" | "Warning" | "Error";
3105
- type: "Loan" | "Queue" | "POSFlagChanged" | "Verification" | "DocumentUploaded" | "LoanCreated" | "WorkflowSubmitted" | "UserInvitationSent" | "CoBorrowerAdded" | "TaskCompleted" | "LoanStatusChanged" | "Consent" | "SensitiveDataPurge" | "ClosingDateUpdated" | "ConsumerConnectAssociation" | "TaskReminderSent";
2988
+ level: LoanLogDetailLevelEnum;
2989
+ type: LoanLogDetailTypeEnum;
3106
2990
  message: string;
3107
2991
  /** @format date-time */
3108
2992
  createdAt: string;
@@ -3368,7 +3252,7 @@ export interface LoanTaskSearchRequest {
3368
3252
  loanStatus?: LoanTaskActivityFilter | null;
3369
3253
  }
3370
3254
  export interface LoanTaskStatusSummary {
3371
- status: "Outstanding" | "Pending" | "Completed" | "Rejected" | "Unknown";
3255
+ status: LoanTaskStatusSummaryStatusEnum;
3372
3256
  /** @format int32 */
3373
3257
  count: number;
3374
3258
  }
@@ -3380,7 +3264,7 @@ export interface LoanUser {
3380
3264
  email: string;
3381
3265
  phone?: string | null;
3382
3266
  role: string;
3383
- loanRole: "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
3267
+ loanRole: LoanUserLoanRoleEnum;
3384
3268
  isUser: boolean;
3385
3269
  /** @format date-time */
3386
3270
  createdAt: string;
@@ -3413,7 +3297,7 @@ export interface LosOperationTracking {
3413
3297
  operationType: string;
3414
3298
  correlationKey: string;
3415
3299
  lastTriggerSource?: string | null;
3416
- status: "Pending" | "Success" | "Failed" | "ConfigurationError" | "PermanentFailure" | "Locked";
3300
+ status: LosOperationTrackingStatusEnum;
3417
3301
  /** @format date-time */
3418
3302
  createdAt: string;
3419
3303
  /** @format date-time */
@@ -3434,49 +3318,6 @@ export interface LosOperationTrackingSearchCriteria {
3434
3318
  operationType?: string | null;
3435
3319
  status?: LosOperationStatus | null;
3436
3320
  }
3437
- export interface LosSync {
3438
- /** @format uuid */
3439
- correlationId: string;
3440
- /** @format uuid */
3441
- loanId?: string | null;
3442
- direction: string;
3443
- currentState: string;
3444
- encompassLoanId?: string | null;
3445
- encompassLoanNumber?: string | null;
3446
- /** @format int32 */
3447
- retryCount: number;
3448
- /** @format date-time */
3449
- requestedAtUtc?: string | null;
3450
- /** @format date-time */
3451
- completedAtUtc?: string | null;
3452
- /** @format date-time */
3453
- failedAtUtc?: string | null;
3454
- errors: string[];
3455
- steps: LosSyncStep[];
3456
- }
3457
- export interface LosSyncPaginated {
3458
- rows: LosSync[];
3459
- pagination: Pagination;
3460
- /** @format int64 */
3461
- count: number;
3462
- }
3463
- export interface LosSyncSearchCriteria {
3464
- searchText?: string | null;
3465
- syncDirection?: string | null;
3466
- status?: string | null;
3467
- /** @format date-time */
3468
- dateFrom?: string | null;
3469
- /** @format date-time */
3470
- dateTo?: string | null;
3471
- }
3472
- export interface LosSyncStep {
3473
- name: string;
3474
- completed: boolean;
3475
- /** @format date-time */
3476
- completedAtUtc?: string | null;
3477
- /** @format int32 */
3478
- order: number;
3479
- }
3480
3321
  export interface LosWebhook {
3481
3322
  /** @format uuid */
3482
3323
  id: string;
@@ -4096,7 +3937,7 @@ export interface SSOTokenRequest {
4096
3937
  redirectUri: string;
4097
3938
  }
4098
3939
  export interface SamlMetadataRequest {
4099
- ssoIntegration: "ConsumerConnect" | "TheBigPOS" | "POSF";
3940
+ ssoIntegration: SamlMetadataRequestSsoIntegrationEnum;
4100
3941
  }
4101
3942
  export interface SendForgotPasswordRequest {
4102
3943
  /**
@@ -4130,14 +3971,6 @@ export interface SendNotificationForLoanRequest {
4130
3971
  phone?: string | null;
4131
3972
  attachments: Attachment[];
4132
3973
  }
4133
- export interface SetCustomFieldValueRequest {
4134
- /** @format uuid */
4135
- definitionId: string;
4136
- value?: string | null;
4137
- }
4138
- export interface SetSingleCustomFieldValueRequest {
4139
- value?: string | null;
4140
- }
4141
3974
  export interface SiteConfiguration {
4142
3975
  /** @format date-time */
4143
3976
  createdAt: string;
@@ -4147,7 +3980,7 @@ export interface SiteConfiguration {
4147
3980
  deletedAt?: string | null;
4148
3981
  /** @format uuid */
4149
3982
  id: string;
4150
- type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
3983
+ type: SiteConfigurationTypeEnum;
4151
3984
  /** @format uuid */
4152
3985
  entityID: string;
4153
3986
  /** @format int32 */
@@ -4341,7 +4174,7 @@ export interface SiteConfigurationByUrl {
4341
4174
  deletedAt?: string | null;
4342
4175
  /** @format uuid */
4343
4176
  id: string;
4344
- type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
4177
+ type: SiteConfigurationByUrlTypeEnum;
4345
4178
  /** @format uuid */
4346
4179
  entityID: string;
4347
4180
  /** @format int32 */
@@ -4552,7 +4385,7 @@ export interface SiteConfigurationForm {
4552
4385
  export interface SiteConfigurationReduced {
4553
4386
  /** @format uuid */
4554
4387
  id: string;
4555
- type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
4388
+ type: SiteConfigurationReducedTypeEnum;
4556
4389
  url?: string | null;
4557
4390
  name: string;
4558
4391
  /** @format int64 */
@@ -4569,7 +4402,7 @@ export interface SiteConfigurationRequest {
4569
4402
  entityID: string;
4570
4403
  /** @format int32 */
4571
4404
  entityType: number;
4572
- type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
4405
+ type: SiteConfigurationRequestTypeEnum;
4573
4406
  url: string;
4574
4407
  name: string;
4575
4408
  introduction?: string | null;
@@ -4744,7 +4577,7 @@ export interface SiteConfigurationSearchCriteria {
4744
4577
  export interface SiteConfigurationSummary {
4745
4578
  /** @format uuid */
4746
4579
  id: string;
4747
- type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
4580
+ type: SiteConfigurationSummaryTypeEnum;
4748
4581
  url?: string | null;
4749
4582
  name: string;
4750
4583
  /** @format int64 */
@@ -4969,10 +4802,6 @@ export interface TokenRequest {
4969
4802
  siteConfigurationId?: string | null;
4970
4803
  isSupport: boolean;
4971
4804
  }
4972
- export interface TriggerAsoRequest {
4973
- /** @maxItems 23 */
4974
- serviceKeys: string[];
4975
- }
4976
4805
  export interface UnderwritingCondition {
4977
4806
  /** @format uuid */
4978
4807
  id: string;
@@ -5029,31 +4858,6 @@ export interface UpdateAccountRequest {
5029
4858
  asoSettings?: ASOSettings | null;
5030
4859
  settings: AccountSettingsRequest;
5031
4860
  }
5032
- export interface UpdateCustomFieldDefinitionRequest {
5033
- isRequired: boolean;
5034
- /**
5035
- * @format int32
5036
- * @min 0
5037
- */
5038
- displayOrder: number;
5039
- /** @format int32 */
5040
- minLength?: number | null;
5041
- /** @format int32 */
5042
- maxLength?: number | null;
5043
- /** @format double */
5044
- minValue?: number | null;
5045
- /** @format double */
5046
- maxValue?: number | null;
5047
- /**
5048
- * @minLength 1
5049
- * @maxLength 250
5050
- */
5051
- name: string;
5052
- defaultValue?: string | null;
5053
- regexPattern?: string | null;
5054
- options?: CustomFieldOptionRequest[] | null;
5055
- permissions?: CustomFieldPermissionRequest[] | null;
5056
- }
5057
4861
  export interface UpdateDocumentTemplateRequest {
5058
4862
  /** @minLength 1 */
5059
4863
  htmlBody: string;
@@ -5352,7 +5156,7 @@ export interface UserDevice {
5352
5156
  export interface UserDraft {
5353
5157
  /** @format uuid */
5354
5158
  draftID: string;
5355
- role: "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
5159
+ role: UserDraftRoleEnum;
5356
5160
  user: User;
5357
5161
  }
5358
5162
  export interface UserDraftPaginated {
@@ -5376,7 +5180,7 @@ export interface UserGroupAccessScope {
5376
5180
  id: string;
5377
5181
  /** @format uuid */
5378
5182
  groupId: string;
5379
- scopeType: "User" | "Branch";
5183
+ scopeType: UserGroupAccessScopeScopeTypeEnum;
5380
5184
  /** @format uuid */
5381
5185
  userId?: string | null;
5382
5186
  /** @format uuid */
@@ -5409,7 +5213,7 @@ export interface UserLoan {
5409
5213
  deletedAt?: string | null;
5410
5214
  loanID: string;
5411
5215
  user: User;
5412
- role: "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
5216
+ role: UserLoanRoleEnum;
5413
5217
  /** @format int32 */
5414
5218
  borrowerPair?: number | null;
5415
5219
  /** @format int32 */
@@ -5421,10 +5225,10 @@ export interface UserLoanConsent {
5421
5225
  id: string;
5422
5226
  /** @format uuid */
5423
5227
  userLoanID: string;
5424
- type: "Econsent" | "CreditAuthorization" | "Tcpa";
5228
+ type: UserLoanConsentTypeEnum;
5425
5229
  providedConsent: boolean;
5426
5230
  ipAddress?: string | null;
5427
- losSyncStatus: "NotStarted" | "Failed" | "Success";
5231
+ losSyncStatus: UserLoanConsentLosSyncStatusEnum;
5428
5232
  /** @format date-time */
5429
5233
  createdAt: string;
5430
5234
  }
@@ -5561,7 +5365,7 @@ export interface UserSummary {
5561
5365
  id: string;
5562
5366
  name?: string | null;
5563
5367
  email?: string | null;
5564
- role: "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
5368
+ role: UserSummaryRoleEnum;
5565
5369
  }
5566
5370
  export interface VerifyPasswordRequest {
5567
5371
  /**
@@ -5594,6 +5398,54 @@ export interface Workflow {
5594
5398
  tileSubtitle: string;
5595
5399
  icon: string;
5596
5400
  }
5401
+ export type AccountBillingRequestBillingTypeEnum = "ClosedLoan" | "LoanOfficer";
5402
+ export type AuditLogEntryChangeTypeEnum = "Created" | "Modified" | "SoftDeleted" | "HardDeleted" | "Restored";
5403
+ export type CreateAccessScopeRequestScopeTypeEnum = "User" | "Branch";
5404
+ export type CreateAccountRequestEnvironmentEnum = "Development" | "Staging" | "UAT" | "Production";
5405
+ export type CreateGroupMemberRequestLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
5406
+ /** @deprecated */
5407
+ export type CreateInviteRequestRelationshipEnum = "NotApplicable" | "Spouse" | "NonSpouse";
5408
+ export type CreateLoanImportRequestImportModeEnum = "All" | "NewOnly" | "UpdateOnly";
5409
+ export type CreateUserDraftLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
5410
+ export type DraftTypeEnum = "NewLoan" | "EditLoan";
5411
+ export type DraftContentTypeEnum = "NewLoan" | "EditLoan";
5412
+ export type EncompassCredentialsDetailSigningMethodEnum = "ConsumerConnect" | "POSF";
5413
+ export type EncompassCredentialsRequestSigningMethodEnum = "ConsumerConnect" | "POSF";
5414
+ export type EncompassRequestLogOperationTypeEnum = "FieldUpdate" | "ConsentUpdate" | "DocumentSync" | "MilestoneUpdate" | "DocumentAttachment" | "General" | "FieldReader";
5415
+ export type EncompassRequestLogOutcomeEnum = "Success" | "Failure" | "PartialSuccess";
5416
+ export type FusionReportFilterFilterTypeEnum = "DateGreaterThanOrEqualTo" | "DateGreaterThan" | "DateLessThan" | "DateLessThanOrEqualTo" | "DateEquals" | "DateDoesntEqual" | "DateNonEmpty" | "DateEmpty" | "StringContains" | "StringEquals" | "StringNotEmpty" | "StringNotEquals" | "StringNotContains";
5417
+ 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";
5418
+ export type LoanSigningMethodEnum = "ConsumerConnect" | "POSF";
5419
+ export type LoanBorrowerApplicationStatusEnum = "Draft" | "Complete";
5420
+ export type LoanContactRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
5421
+ export type LoanImportStatusEnum = "WaitingProcess" | "InProgress" | "Completed" | "Failed" | "Cancelled";
5422
+ export type LoanImportImportModeEnum = "All" | "NewOnly" | "UpdateOnly";
5423
+ export type LoanImportLogLevelEnum = "None" | "Info" | "Warning" | "Error";
5424
+ export type LoanLogLevelEnum = "None" | "Info" | "Warning" | "Error";
5425
+ export type LoanLogTypeEnum = "Loan" | "Queue" | "POSFlagChanged" | "Verification" | "DocumentUploaded" | "LoanCreated" | "WorkflowSubmitted" | "UserInvitationSent" | "CoBorrowerAdded" | "TaskCompleted" | "LoanStatusChanged" | "Consent" | "SensitiveDataPurge" | "ClosingDateUpdated" | "ConsumerConnectAssociation" | "TaskReminderSent";
5426
+ export type LoanLogDetailLevelEnum = "None" | "Info" | "Warning" | "Error";
5427
+ export type LoanLogDetailTypeEnum = "Loan" | "Queue" | "POSFlagChanged" | "Verification" | "DocumentUploaded" | "LoanCreated" | "WorkflowSubmitted" | "UserInvitationSent" | "CoBorrowerAdded" | "TaskCompleted" | "LoanStatusChanged" | "Consent" | "SensitiveDataPurge" | "ClosingDateUpdated" | "ConsumerConnectAssociation" | "TaskReminderSent";
5428
+ export type LoanTaskStatusSummaryStatusEnum = "Outstanding" | "Pending" | "Completed" | "Rejected" | "Unknown";
5429
+ export type LoanUserLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
5430
+ export type LosOperationTrackingStatusEnum = "Pending" | "Success" | "Failed" | "ConfigurationError" | "PermanentFailure" | "Locked";
5431
+ export type SamlMetadataRequestSsoIntegrationEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
5432
+ export type SiteConfigurationTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
5433
+ export type SiteConfigurationByUrlTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
5434
+ export type SiteConfigurationReducedTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
5435
+ export type SiteConfigurationRequestTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
5436
+ export type SiteConfigurationSummaryTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
5437
+ export type UserDraftRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
5438
+ export type UserGroupAccessScopeScopeTypeEnum = "User" | "Branch";
5439
+ export type UserLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
5440
+ export type UserLoanConsentTypeEnum = "Econsent" | "CreditAuthorization" | "Tcpa";
5441
+ export type UserLoanConsentLosSyncStatusEnum = "NotStarted" | "Failed" | "Success";
5442
+ export type UserSummaryRoleEnum = "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
5443
+ /** @default "Realtor" */
5444
+ export type GetPartnersParamsRoleEnum = "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
5445
+ export type GetSamlMetadataParamsSSoIntegrationEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
5446
+ export type GetSamlMetadataParamsEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
5447
+ export type CreateOrReplaceSamlMetadataParamsSSoIntegrationEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
5448
+ export type CreateOrReplaceSamlMetadataParamsEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
5597
5449
  import type { AxiosInstance, AxiosRequestConfig, AxiosResponse, ResponseType } from "axios";
5598
5450
  export type QueryParamsType = Record<string | number, any>;
5599
5451
  export interface FullRequestParams extends Omit<AxiosRequestConfig, "data" | "params" | "url" | "responseType"> {
@@ -5653,7 +5505,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5653
5505
  * @secure
5654
5506
  * @response `200` `void` Success
5655
5507
  */
5656
- postRoot: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
5508
+ postRoot: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
5657
5509
  /**
5658
5510
  * No description
5659
5511
  *
@@ -5663,7 +5515,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5663
5515
  * @secure
5664
5516
  * @response `200` `string` Success
5665
5517
  */
5666
- getRoot: (params?: RequestParams) => Promise<AxiosResponse<string, any>>;
5518
+ getRoot: (params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
5667
5519
  api: {
5668
5520
  /**
5669
5521
  * No description
@@ -5676,7 +5528,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5676
5528
  * @response `200` `Account` Success
5677
5529
  * @response `404` `ProblemDetails` Not Found
5678
5530
  */
5679
- getMyAccount: (params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
5531
+ getMyAccount: (params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
5680
5532
  /**
5681
5533
  * No description
5682
5534
  *
@@ -5689,7 +5541,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5689
5541
  * @response `404` `ProblemDetails` Not Found
5690
5542
  * @response `422` `ProblemDetails` Client Error
5691
5543
  */
5692
- replaceMyAccount: (data: UpdateAccountRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
5544
+ replaceMyAccount: (data: UpdateAccountRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
5693
5545
  /**
5694
5546
  * No description
5695
5547
  *
@@ -5700,7 +5552,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5700
5552
  * @secure
5701
5553
  * @response `200` `SiteConfiguration` Success
5702
5554
  */
5703
- getSiteConfigurationByAccount: (params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
5555
+ getSiteConfigurationByAccount: (params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
5704
5556
  /**
5705
5557
  * No description
5706
5558
  *
@@ -5712,7 +5564,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5712
5564
  * @response `200` `SiteConfiguration` Success
5713
5565
  * @response `422` `UnprocessableEntity` Client Error
5714
5566
  */
5715
- updateSiteConfigurationForAccount: (data: SiteConfiguration, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
5567
+ updateSiteConfigurationForAccount: (data: SiteConfiguration, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
5716
5568
  /**
5717
5569
  * No description
5718
5570
  *
@@ -5723,7 +5575,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5723
5575
  * @secure
5724
5576
  * @response `200` `(Account)[]` Success
5725
5577
  */
5726
- getAccounts: (params?: RequestParams) => Promise<AxiosResponse<Account[], any>>;
5578
+ getAccounts: (params?: RequestParams) => Promise<AxiosResponse<Account[], any, {}>>;
5727
5579
  /**
5728
5580
  * No description
5729
5581
  *
@@ -5735,7 +5587,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5735
5587
  * @response `201` `Account` Created
5736
5588
  * @response `422` `ProblemDetails` Client Error
5737
5589
  */
5738
- createAccount: (data: CreateAccountRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
5590
+ createAccount: (data: CreateAccountRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
5739
5591
  /**
5740
5592
  * No description
5741
5593
  *
@@ -5747,7 +5599,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5747
5599
  * @response `201` `Account` Created
5748
5600
  * @response `422` `ProblemDetails` Client Error
5749
5601
  */
5750
- getAccount: (id: string, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
5602
+ getAccount: (id: string, params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
5751
5603
  /**
5752
5604
  * No description
5753
5605
  *
@@ -5763,7 +5615,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5763
5615
  deleteAccount: (id: string, query?: {
5764
5616
  /** @default false */
5765
5617
  hardDelete?: boolean;
5766
- }, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
5618
+ }, params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
5767
5619
  /**
5768
5620
  * No description
5769
5621
  *
@@ -5776,7 +5628,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5776
5628
  * @response `404` `ProblemDetails` Not Found
5777
5629
  * @response `422` `ProblemDetails` Client Error
5778
5630
  */
5779
- updateAccountBilling: (id: string, data: AccountBillingRequest, params?: RequestParams) => Promise<AxiosResponse<AccountBilling, any>>;
5631
+ updateAccountBilling: (id: string, data: AccountBillingRequest, params?: RequestParams) => Promise<AxiosResponse<AccountBilling, any, {}>>;
5780
5632
  /**
5781
5633
  * No description
5782
5634
  *
@@ -5794,7 +5646,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5794
5646
  pageNumber?: number;
5795
5647
  sortBy?: string;
5796
5648
  sortDirection?: string;
5797
- }, params?: RequestParams) => Promise<AxiosResponse<AuditLogEntryPaginated, any>>;
5649
+ }, params?: RequestParams) => Promise<AxiosResponse<AuditLogEntryPaginated, any, {}>>;
5798
5650
  /**
5799
5651
  * No description
5800
5652
  *
@@ -5805,7 +5657,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5805
5657
  * @secure
5806
5658
  * @response `200` `(AuditEntityType)[]` Success
5807
5659
  */
5808
- getAuditLogEntityTypes: (params?: RequestParams) => Promise<AxiosResponse<AuditEntityType[], any>>;
5660
+ getAuditLogEntityTypes: (params?: RequestParams) => Promise<AxiosResponse<AuditEntityType[], any, {}>>;
5809
5661
  /**
5810
5662
  * No description
5811
5663
  *
@@ -5817,7 +5669,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5817
5669
  * @response `200` `AuditLogEntry` Success
5818
5670
  * @response `404` `ProblemDetails` Not Found
5819
5671
  */
5820
- getAuditLogById: (id: string, params?: RequestParams) => Promise<AxiosResponse<AuditLogEntry, any>>;
5672
+ getAuditLogById: (id: string, params?: RequestParams) => Promise<AxiosResponse<AuditLogEntry, any, {}>>;
5821
5673
  /**
5822
5674
  * No description
5823
5675
  *
@@ -5830,7 +5682,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5830
5682
  * @response `401` `ProblemDetails` Unauthorized
5831
5683
  * @response `422` `UnprocessableEntity` Client Error
5832
5684
  */
5833
- getTokenFromRefreshToken: (data: RefreshTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any>>;
5685
+ getTokenFromRefreshToken: (data: RefreshTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any, {}>>;
5834
5686
  /**
5835
5687
  * No description
5836
5688
  *
@@ -5842,7 +5694,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5842
5694
  * @response `200` `ForcePasswordReset` Success
5843
5695
  * @response `422` `UnprocessableEntity` Client Error
5844
5696
  */
5845
- getToken: (data: TokenRequest, params?: RequestParams) => Promise<AxiosResponse<ForcePasswordReset, any>>;
5697
+ getToken: (data: TokenRequest, params?: RequestParams) => Promise<AxiosResponse<ForcePasswordReset, any, {}>>;
5846
5698
  /**
5847
5699
  * No description
5848
5700
  *
@@ -5854,7 +5706,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5854
5706
  * @response `200` `ForcePasswordReset` Success
5855
5707
  * @response `422` `UnprocessableEntity` Client Error
5856
5708
  */
5857
- getTokenFromChallengeCode: (data: TokenChallengeRequest, params?: RequestParams) => Promise<AxiosResponse<ForcePasswordReset, any>>;
5709
+ getTokenFromChallengeCode: (data: TokenChallengeRequest, params?: RequestParams) => Promise<AxiosResponse<ForcePasswordReset, any, {}>>;
5858
5710
  /**
5859
5711
  * No description
5860
5712
  *
@@ -5866,7 +5718,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5866
5718
  * @response `200` `Token` Success
5867
5719
  * @response `422` `UnprocessableEntity` Client Error
5868
5720
  */
5869
- getSystemToken: (data: SystemTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any>>;
5721
+ getSystemToken: (data: SystemTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any, {}>>;
5870
5722
  /**
5871
5723
  * No description
5872
5724
  *
@@ -5878,7 +5730,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5878
5730
  * @response `200` `SSOToken` Success
5879
5731
  * @response `422` `UnprocessableEntity` Client Error
5880
5732
  */
5881
- getSsoToken: (data: SSOTokenRequest, params?: RequestParams) => Promise<AxiosResponse<SSOToken, any>>;
5733
+ getSsoToken: (data: SSOTokenRequest, params?: RequestParams) => Promise<AxiosResponse<SSOToken, any, {}>>;
5882
5734
  /**
5883
5735
  * No description
5884
5736
  *
@@ -5890,7 +5742,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5890
5742
  * @response `204` `NoContentResult` No Content
5891
5743
  * @response `422` `UnprocessableEntity` Client Error
5892
5744
  */
5893
- logOut: (params?: RequestParams) => Promise<AxiosResponse<NoContentResult, any>>;
5745
+ logOut: (params?: RequestParams) => Promise<AxiosResponse<NoContentResult, any, {}>>;
5894
5746
  /**
5895
5747
  * No description
5896
5748
  *
@@ -5909,7 +5761,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5909
5761
  pageNumber?: number;
5910
5762
  sortBy?: string;
5911
5763
  sortDirection?: string;
5912
- }, params?: RequestParams) => Promise<AxiosResponse<GetBranchPaginated, any>>;
5764
+ }, params?: RequestParams) => Promise<AxiosResponse<GetBranchPaginated, any, {}>>;
5913
5765
  /**
5914
5766
  * No description
5915
5767
  *
@@ -5921,7 +5773,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5921
5773
  * @response `200` `GetBranch` Success
5922
5774
  * @response `422` `UnprocessableEntity` Client Error
5923
5775
  */
5924
- createBranch: (data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any>>;
5776
+ createBranch: (data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any, {}>>;
5925
5777
  /**
5926
5778
  * No description
5927
5779
  *
@@ -5939,7 +5791,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5939
5791
  pageNumber?: number;
5940
5792
  sortBy?: string;
5941
5793
  sortDirection?: string;
5942
- }, params?: RequestParams) => Promise<AxiosResponse<GetBranchPaginated, any>>;
5794
+ }, params?: RequestParams) => Promise<AxiosResponse<GetBranchPaginated, any, {}>>;
5943
5795
  /**
5944
5796
  * No description
5945
5797
  *
@@ -5950,7 +5802,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5950
5802
  * @secure
5951
5803
  * @response `200` `GetBranch` Success
5952
5804
  */
5953
- getBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any>>;
5805
+ getBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any, {}>>;
5954
5806
  /**
5955
5807
  * No description
5956
5808
  *
@@ -5962,7 +5814,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5962
5814
  * @response `200` `GetBranch` Success
5963
5815
  * @response `422` `UnprocessableEntity` Client Error
5964
5816
  */
5965
- replaceBranch: (branchId: string, data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any>>;
5817
+ replaceBranch: (branchId: string, data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any, {}>>;
5966
5818
  /**
5967
5819
  * No description
5968
5820
  *
@@ -5973,7 +5825,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5973
5825
  * @secure
5974
5826
  * @response `204` `void` No Content
5975
5827
  */
5976
- deleteBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
5828
+ deleteBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
5977
5829
  /**
5978
5830
  * No description
5979
5831
  *
@@ -5985,7 +5837,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5985
5837
  * @response `204` `void` No Content
5986
5838
  * @response `400` `ProblemDetails` Bad Request
5987
5839
  */
5988
- restoreBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
5840
+ restoreBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
5989
5841
  /**
5990
5842
  * No description
5991
5843
  *
@@ -5997,7 +5849,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5997
5849
  * @response `200` `SiteConfiguration` Success
5998
5850
  * @response `422` `UnprocessableEntity` Client Error
5999
5851
  */
6000
- createBranchSiteConfiguration: (branchId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
5852
+ createBranchSiteConfiguration: (branchId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
6001
5853
  /**
6002
5854
  * No description
6003
5855
  *
@@ -6008,7 +5860,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6008
5860
  * @secure
6009
5861
  * @response `200` `SiteConfigurationWithInherited` Success
6010
5862
  */
6011
- getBranchSiteConfiguration: (branchId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
5863
+ getBranchSiteConfiguration: (branchId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any, {}>>;
6012
5864
  /**
6013
5865
  * No description
6014
5866
  *
@@ -6022,7 +5874,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6022
5874
  */
6023
5875
  replaceBranchSiteConfiguration: (branchId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
6024
5876
  applyToChildren?: boolean;
6025
- }, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
5877
+ }, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
6026
5878
  /**
6027
5879
  * No description
6028
5880
  *
@@ -6033,7 +5885,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6033
5885
  * @secure
6034
5886
  * @response `200` `(LoanOfficerPublic)[]` Success
6035
5887
  */
6036
- getLoanOfficersByBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic[], any>>;
5888
+ getLoanOfficersByBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic[], any, {}>>;
6037
5889
  /**
6038
5890
  * No description
6039
5891
  *
@@ -6046,7 +5898,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6046
5898
  */
6047
5899
  getBusinessRules: (query?: {
6048
5900
  showAll?: boolean;
6049
- }, params?: RequestParams) => Promise<AxiosResponse<BusinessRule[], any>>;
5901
+ }, params?: RequestParams) => Promise<AxiosResponse<BusinessRule[], any, {}>>;
6050
5902
  /**
6051
5903
  * No description
6052
5904
  *
@@ -6058,7 +5910,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6058
5910
  * @response `200` `BusinessRule` Success
6059
5911
  * @response `422` `UnprocessableEntity` Client Error
6060
5912
  */
6061
- createBusinessRule: (data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
5913
+ createBusinessRule: (data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any, {}>>;
6062
5914
  /**
6063
5915
  * No description
6064
5916
  *
@@ -6069,7 +5921,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6069
5921
  * @secure
6070
5922
  * @response `200` `BusinessRule` Success
6071
5923
  */
6072
- getBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
5924
+ getBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any, {}>>;
6073
5925
  /**
6074
5926
  * No description
6075
5927
  *
@@ -6081,7 +5933,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6081
5933
  * @response `200` `BusinessRule` Success
6082
5934
  * @response `422` `UnprocessableEntity` Client Error
6083
5935
  */
6084
- replaceBusinessRule: (id: string, data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
5936
+ replaceBusinessRule: (id: string, data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any, {}>>;
6085
5937
  /**
6086
5938
  * No description
6087
5939
  *
@@ -6092,7 +5944,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6092
5944
  * @secure
6093
5945
  * @response `204` `void` No Content
6094
5946
  */
6095
- deleteBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
5947
+ deleteBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
6096
5948
  /**
6097
5949
  * No description
6098
5950
  *
@@ -6103,7 +5955,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6103
5955
  * @secure
6104
5956
  * @response `200` `BusinessRule` Success
6105
5957
  */
6106
- restoreBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
5958
+ restoreBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any, {}>>;
6107
5959
  /**
6108
5960
  * @description Returns closed loan counts per account within the specified date range, including POS vs non-POS breakdown and utilization ratios.
6109
5961
  *
@@ -6114,7 +5966,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6114
5966
  * @secure
6115
5967
  * @response `200` `ClosedLoansReport` Success
6116
5968
  */
6117
- getClosedLoansReport: (data: ClosedLoansReportRequest, params?: RequestParams) => Promise<AxiosResponse<ClosedLoansReport, any>>;
5969
+ getClosedLoansReport: (data: ClosedLoansReportRequest, params?: RequestParams) => Promise<AxiosResponse<ClosedLoansReport, any, {}>>;
6118
5970
  /**
6119
5971
  * No description
6120
5972
  *
@@ -6125,7 +5977,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6125
5977
  * @secure
6126
5978
  * @response `200` `(ConsumerConnectStatus)[]` Success
6127
5979
  */
6128
- getConsumerConnectStatus: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<ConsumerConnectStatus[], any>>;
5980
+ getConsumerConnectStatus: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<ConsumerConnectStatus[], any, {}>>;
6129
5981
  /**
6130
5982
  * No description
6131
5983
  *
@@ -6136,7 +5988,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6136
5988
  * @secure
6137
5989
  * @response `200` `(ConsumerConnectRetry)[]` Success
6138
5990
  */
6139
- retryConsumerConnectAssociation: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<ConsumerConnectRetry[], any>>;
5991
+ retryConsumerConnectAssociation: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<ConsumerConnectRetry[], any, {}>>;
6140
5992
  /**
6141
5993
  * No description
6142
5994
  *
@@ -6155,7 +6007,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6155
6007
  pageNumber?: number;
6156
6008
  sortBy?: string;
6157
6009
  sortDirection?: string;
6158
- }, params?: RequestParams) => Promise<AxiosResponse<CorporatePaginated, any>>;
6010
+ }, params?: RequestParams) => Promise<AxiosResponse<CorporatePaginated, any, {}>>;
6159
6011
  /**
6160
6012
  * No description
6161
6013
  *
@@ -6167,7 +6019,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6167
6019
  * @response `200` `Corporate` Success
6168
6020
  * @response `422` `UnprocessableEntity` Client Error
6169
6021
  */
6170
- createCorporate: (data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any>>;
6022
+ createCorporate: (data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any, {}>>;
6171
6023
  /**
6172
6024
  * No description
6173
6025
  *
@@ -6185,7 +6037,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6185
6037
  pageNumber?: number;
6186
6038
  sortBy?: string;
6187
6039
  sortDirection?: string;
6188
- }, params?: RequestParams) => Promise<AxiosResponse<CorporatePaginated, any>>;
6040
+ }, params?: RequestParams) => Promise<AxiosResponse<CorporatePaginated, any, {}>>;
6189
6041
  /**
6190
6042
  * No description
6191
6043
  *
@@ -6196,7 +6048,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6196
6048
  * @secure
6197
6049
  * @response `200` `Corporate` Success
6198
6050
  */
6199
- getCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<Corporate, any>>;
6051
+ getCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<Corporate, any, {}>>;
6200
6052
  /**
6201
6053
  * No description
6202
6054
  *
@@ -6208,7 +6060,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6208
6060
  * @response `200` `Corporate` Success
6209
6061
  * @response `422` `UnprocessableEntity` Client Error
6210
6062
  */
6211
- replaceCorporate: (id: string, data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any>>;
6063
+ replaceCorporate: (id: string, data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any, {}>>;
6212
6064
  /**
6213
6065
  * No description
6214
6066
  *
@@ -6219,7 +6071,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6219
6071
  * @secure
6220
6072
  * @response `204` `void` No Content
6221
6073
  */
6222
- deleteCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6074
+ deleteCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
6223
6075
  /**
6224
6076
  * No description
6225
6077
  *
@@ -6230,7 +6082,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6230
6082
  * @secure
6231
6083
  * @response `204` `void` No Content
6232
6084
  */
6233
- restoreCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6085
+ restoreCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
6234
6086
  /**
6235
6087
  * No description
6236
6088
  *
@@ -6242,7 +6094,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6242
6094
  * @response `200` `SiteConfiguration` Success
6243
6095
  * @response `422` `UnprocessableEntity` Client Error
6244
6096
  */
6245
- createCorporateSiteConfiguration: (corporateId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
6097
+ createCorporateSiteConfiguration: (corporateId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
6246
6098
  /**
6247
6099
  * No description
6248
6100
  *
@@ -6253,7 +6105,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6253
6105
  * @secure
6254
6106
  * @response `200` `SiteConfigurationWithInherited` Success
6255
6107
  */
6256
- getCorporateSiteConfiguration: (corporateId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
6108
+ getCorporateSiteConfiguration: (corporateId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any, {}>>;
6257
6109
  /**
6258
6110
  * No description
6259
6111
  *
@@ -6267,7 +6119,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6267
6119
  */
6268
6120
  replaceCorporateSiteConfiguration: (corporateId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
6269
6121
  applyToChildren?: boolean;
6270
- }, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
6122
+ }, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
6271
6123
  /**
6272
6124
  * No description
6273
6125
  *
@@ -6278,7 +6130,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6278
6130
  * @secure
6279
6131
  * @response `200` `(BranchReduced)[]` Success
6280
6132
  */
6281
- getBranchesByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchReduced[], any>>;
6133
+ getBranchesByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchReduced[], any, {}>>;
6282
6134
  /**
6283
6135
  * No description
6284
6136
  *
@@ -6289,97 +6141,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6289
6141
  * @secure
6290
6142
  * @response `200` `(LoanOfficerPublic)[]` Success
6291
6143
  */
6292
- getLoanOfficersByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic[], any>>;
6293
- /**
6294
- * No description
6295
- *
6296
- * @tags CustomFieldDefinitions
6297
- * @name GetCustomFieldDefinitions
6298
- * @summary Get all custom field definitions by entity type
6299
- * @request GET:/api/custom-field-definitions
6300
- * @secure
6301
- * @response `200` `(CustomFieldDefinition)[]` Success
6302
- */
6303
- getCustomFieldDefinitions: (query?: {
6304
- entityType?: "Loan";
6305
- }, params?: RequestParams) => Promise<AxiosResponse<CustomFieldDefinition[], any>>;
6306
- /**
6307
- * No description
6308
- *
6309
- * @tags CustomFieldDefinitions
6310
- * @name CreateCustomFieldDefinition
6311
- * @summary Create a custom field definition
6312
- * @request POST:/api/custom-field-definitions
6313
- * @secure
6314
- * @response `201` `CustomFieldDefinition` Created
6315
- * @response `409` `ProblemDetails` Conflict
6316
- * @response `422` `ProblemDetails` Client Error
6317
- */
6318
- createCustomFieldDefinition: (data: CreateCustomFieldDefinitionRequest, params?: RequestParams) => Promise<AxiosResponse<CustomFieldDefinition, any>>;
6319
- /**
6320
- * No description
6321
- *
6322
- * @tags CustomFieldDefinitions
6323
- * @name GetCustomFieldDefinitionById
6324
- * @summary Get a custom field definition by ID
6325
- * @request GET:/api/custom-field-definitions/{id}
6326
- * @secure
6327
- * @response `200` `CustomFieldDefinition` Success
6328
- * @response `404` `ProblemDetails` Not Found
6329
- */
6330
- getCustomFieldDefinitionById: (id: string, params?: RequestParams) => Promise<AxiosResponse<CustomFieldDefinition, any>>;
6331
- /**
6332
- * No description
6333
- *
6334
- * @tags CustomFieldDefinitions
6335
- * @name UpdateCustomFieldDefinition
6336
- * @summary Update a custom field definition
6337
- * @request PUT:/api/custom-field-definitions/{id}
6338
- * @secure
6339
- * @response `200` `CustomFieldDefinition` Success
6340
- * @response `400` `ProblemDetails` Bad Request
6341
- * @response `404` `ProblemDetails` Not Found
6342
- * @response `409` `ProblemDetails` Conflict
6343
- * @response `422` `ProblemDetails` Client Error
6344
- */
6345
- updateCustomFieldDefinition: (id: string, data: UpdateCustomFieldDefinitionRequest, params?: RequestParams) => Promise<AxiosResponse<CustomFieldDefinition, any>>;
6346
- /**
6347
- * No description
6348
- *
6349
- * @tags CustomFieldDefinitions
6350
- * @name DeleteCustomFieldDefinition
6351
- * @summary Delete a custom field definition
6352
- * @request DELETE:/api/custom-field-definitions/{id}
6353
- * @secure
6354
- * @response `204` `void` No Content
6355
- * @response `404` `ProblemDetails` Not Found
6356
- * @response `409` `ProblemDetails` Conflict
6357
- */
6358
- deleteCustomFieldDefinition: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6359
- /**
6360
- * No description
6361
- *
6362
- * @tags CustomFieldDefinitions
6363
- * @name DisableCustomFieldDefinition
6364
- * @summary Disable a custom field definition
6365
- * @request POST:/api/custom-field-definitions/{id}/disable
6366
- * @secure
6367
- * @response `204` `void` No Content
6368
- * @response `404` `ProblemDetails` Not Found
6369
- */
6370
- disableCustomFieldDefinition: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6371
- /**
6372
- * No description
6373
- *
6374
- * @tags CustomFieldDefinitions
6375
- * @name EnableCustomFieldDefinition
6376
- * @summary Enable a custom field definition
6377
- * @request POST:/api/custom-field-definitions/{id}/enable
6378
- * @secure
6379
- * @response `204` `void` No Content
6380
- * @response `404` `ProblemDetails` Not Found
6381
- */
6382
- enableCustomFieldDefinition: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6144
+ getLoanOfficersByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic[], any, {}>>;
6383
6145
  /**
6384
6146
  * No description
6385
6147
  *
@@ -6399,7 +6161,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6399
6161
  pageNumber?: number;
6400
6162
  sortBy?: string;
6401
6163
  sortDirection?: string;
6402
- }, params?: RequestParams) => Promise<AxiosResponse<DevicePaginated, any>>;
6164
+ }, params?: RequestParams) => Promise<AxiosResponse<DevicePaginated, any, {}>>;
6403
6165
  /**
6404
6166
  * No description
6405
6167
  *
@@ -6410,7 +6172,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6410
6172
  * @secure
6411
6173
  * @response `200` `Device` Success
6412
6174
  */
6413
- getDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<Device, any>>;
6175
+ getDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<Device, any, {}>>;
6414
6176
  /**
6415
6177
  * No description
6416
6178
  *
@@ -6421,7 +6183,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6421
6183
  * @secure
6422
6184
  * @response `200` `Device` Success
6423
6185
  */
6424
- updateDevice: (id: string, data: DeviceRequest, params?: RequestParams) => Promise<AxiosResponse<Device, any>>;
6186
+ updateDevice: (id: string, data: DeviceRequest, params?: RequestParams) => Promise<AxiosResponse<Device, any, {}>>;
6425
6187
  /**
6426
6188
  * No description
6427
6189
  *
@@ -6432,7 +6194,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6432
6194
  * @secure
6433
6195
  * @response `200` `DeviceMDM` Success
6434
6196
  */
6435
- getDeviceBySerialNumber: (sn: string, params?: RequestParams) => Promise<AxiosResponse<DeviceMDM, any>>;
6197
+ getDeviceBySerialNumber: (sn: string, params?: RequestParams) => Promise<AxiosResponse<DeviceMDM, any, {}>>;
6436
6198
  /**
6437
6199
  * No description
6438
6200
  *
@@ -6443,7 +6205,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6443
6205
  * @secure
6444
6206
  * @response `200` `Action` Success
6445
6207
  */
6446
- createDeviceActionBySerialNumber: (sn: string, actionName: string, params?: RequestParams) => Promise<AxiosResponse<Action, any>>;
6208
+ createDeviceActionBySerialNumber: (sn: string, actionName: string, params?: RequestParams) => Promise<AxiosResponse<Action, any, {}>>;
6447
6209
  /**
6448
6210
  * No description
6449
6211
  *
@@ -6457,7 +6219,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6457
6219
  getDocumentBuckets: (query?: {
6458
6220
  /** @default false */
6459
6221
  includeSystemBuckets?: boolean;
6460
- }, params?: RequestParams) => Promise<AxiosResponse<string[], any>>;
6222
+ }, params?: RequestParams) => Promise<AxiosResponse<string[], any, {}>>;
6461
6223
  /**
6462
6224
  * No description
6463
6225
  *
@@ -6470,7 +6232,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6470
6232
  */
6471
6233
  getDocumentTemplates: (query?: {
6472
6234
  showAll?: boolean;
6473
- }, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase[], any>>;
6235
+ }, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase[], any, {}>>;
6474
6236
  /**
6475
6237
  * No description
6476
6238
  *
@@ -6483,7 +6245,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6483
6245
  * @response `404` `ProblemDetails` Not Found
6484
6246
  * @response `422` `UnprocessableEntity` Client Error
6485
6247
  */
6486
- createDocumentTemplate: (data: CreateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any>>;
6248
+ createDocumentTemplate: (data: CreateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any, {}>>;
6487
6249
  /**
6488
6250
  * No description
6489
6251
  *
@@ -6499,7 +6261,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6499
6261
  showAll?: boolean;
6500
6262
  /** @default true */
6501
6263
  publishedOnly?: boolean;
6502
- }, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase[], any>>;
6264
+ }, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase[], any, {}>>;
6503
6265
  /**
6504
6266
  * No description
6505
6267
  *
@@ -6511,7 +6273,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6511
6273
  * @response `200` `DocumentTemplate` Success
6512
6274
  * @response `404` `ProblemDetails` Not Found
6513
6275
  */
6514
- getDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplate, any>>;
6276
+ getDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplate, any, {}>>;
6515
6277
  /**
6516
6278
  * No description
6517
6279
  *
@@ -6525,7 +6287,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6525
6287
  * @response `404` `ProblemDetails` Not Found
6526
6288
  * @response `422` `UnprocessableEntity` Client Error
6527
6289
  */
6528
- replaceDocumentTemplate: (id: string, data: UpdateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any>>;
6290
+ replaceDocumentTemplate: (id: string, data: UpdateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any, {}>>;
6529
6291
  /**
6530
6292
  * No description
6531
6293
  *
@@ -6538,7 +6300,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6538
6300
  * @response `401` `ProblemDetails` Unauthorized
6539
6301
  * @response `404` `ProblemDetails` Not Found
6540
6302
  */
6541
- deleteDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6303
+ deleteDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
6542
6304
  /**
6543
6305
  * No description
6544
6306
  *
@@ -6551,7 +6313,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6551
6313
  * @response `401` `ProblemDetails` Unauthorized
6552
6314
  * @response `404` `ProblemDetails` Not Found
6553
6315
  */
6554
- restoreDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6316
+ restoreDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
6555
6317
  /**
6556
6318
  * No description
6557
6319
  *
@@ -6562,7 +6324,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6562
6324
  * @secure
6563
6325
  * @response `200` `(DocumentTemplateVersion)[]` Success
6564
6326
  */
6565
- getDocumentTemplateVersions: (documentId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion[], any>>;
6327
+ getDocumentTemplateVersions: (documentId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion[], any, {}>>;
6566
6328
  /**
6567
6329
  * No description
6568
6330
  *
@@ -6573,7 +6335,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6573
6335
  * @secure
6574
6336
  * @response `200` `DocumentTemplateVersion` Success
6575
6337
  */
6576
- createDocumentTemplateVersion: (documentId: string, data: DocumentTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
6338
+ createDocumentTemplateVersion: (documentId: string, data: DocumentTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any, {}>>;
6577
6339
  /**
6578
6340
  * No description
6579
6341
  *
@@ -6584,7 +6346,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6584
6346
  * @secure
6585
6347
  * @response `200` `DocumentTemplateVersion` Success
6586
6348
  */
6587
- getDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
6349
+ getDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any, {}>>;
6588
6350
  /**
6589
6351
  * No description
6590
6352
  *
@@ -6595,7 +6357,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6595
6357
  * @secure
6596
6358
  * @response `200` `DocumentTemplateVersion` Success
6597
6359
  */
6598
- replaceDocumentTemplateVersion: (documentId: string, id: string, data: DocumentTemplateVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
6360
+ replaceDocumentTemplateVersion: (documentId: string, id: string, data: DocumentTemplateVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any, {}>>;
6599
6361
  /**
6600
6362
  * No description
6601
6363
  *
@@ -6606,7 +6368,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6606
6368
  * @secure
6607
6369
  * @response `200` `DocumentTemplateVersion` Success
6608
6370
  */
6609
- deleteDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
6371
+ deleteDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any, {}>>;
6610
6372
  /**
6611
6373
  * No description
6612
6374
  *
@@ -6634,7 +6396,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6634
6396
  pageSize?: number;
6635
6397
  /** @format uuid */
6636
6398
  loanId?: string;
6637
- }, params?: RequestParams) => Promise<AxiosResponse<EncompassPackageList, any>>;
6399
+ }, params?: RequestParams) => Promise<AxiosResponse<EncompassPackageList, any, {}>>;
6638
6400
  /**
6639
6401
  * No description
6640
6402
  *
@@ -6646,7 +6408,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6646
6408
  * @response `401` `EncompassError` Unauthorized
6647
6409
  * @response `500` `EncompassError` Server Error
6648
6410
  */
6649
- getUserRecipients: (params?: RequestParams) => Promise<AxiosResponse<EncompassRecipientItem[], any>>;
6411
+ getUserRecipients: (params?: RequestParams) => Promise<AxiosResponse<EncompassRecipientItem[], any, {}>>;
6650
6412
  /**
6651
6413
  * No description
6652
6414
  *
@@ -6661,7 +6423,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6661
6423
  * @response `404` `EncompassError` Not Found
6662
6424
  * @response `500` `EncompassError` Server Error
6663
6425
  */
6664
- createEncompassSession: (data: CreateSessionRequest, params?: RequestParams) => Promise<AxiosResponse<CreateSession, any>>;
6426
+ createEncompassSession: (data: CreateSessionRequest, params?: RequestParams) => Promise<AxiosResponse<CreateSession, any, {}>>;
6665
6427
  /**
6666
6428
  * No description
6667
6429
  *
@@ -6681,7 +6443,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6681
6443
  sortDirection?: string;
6682
6444
  /** @default false */
6683
6445
  includeDeleted?: boolean;
6684
- }, params?: RequestParams) => Promise<AxiosResponse<FilePaginated, any>>;
6446
+ }, params?: RequestParams) => Promise<AxiosResponse<FilePaginated, any, {}>>;
6685
6447
  /**
6686
6448
  * No description
6687
6449
  *
@@ -6699,7 +6461,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6699
6461
  file?: File;
6700
6462
  isPublic?: boolean;
6701
6463
  bucket?: string;
6702
- }, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
6464
+ }, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
6703
6465
  /**
6704
6466
  * No description
6705
6467
  *
@@ -6710,7 +6472,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6710
6472
  * @secure
6711
6473
  * @response `201` `File` Created
6712
6474
  */
6713
- getFileById: (id: string, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
6475
+ getFileById: (id: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
6714
6476
  /**
6715
6477
  * No description
6716
6478
  *
@@ -6722,7 +6484,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6722
6484
  * @response `200` `string` Success
6723
6485
  * @response `422` `UnprocessableEntity` Client Error
6724
6486
  */
6725
- replaceFile: (id: string, data: FileRequest, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
6487
+ replaceFile: (id: string, data: FileRequest, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
6726
6488
  /**
6727
6489
  * No description
6728
6490
  *
@@ -6733,7 +6495,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6733
6495
  * @secure
6734
6496
  * @response `204` `void` No Content
6735
6497
  */
6736
- deleteFile: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6498
+ deleteFile: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
6737
6499
  /**
6738
6500
  * No description
6739
6501
  *
@@ -6751,7 +6513,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6751
6513
  pageNumber?: number;
6752
6514
  sortBy?: string;
6753
6515
  sortDirection?: string;
6754
- }, params?: RequestParams) => Promise<AxiosResponse<FilePaginated, any>>;
6516
+ }, params?: RequestParams) => Promise<AxiosResponse<FilePaginated, any, {}>>;
6755
6517
  /**
6756
6518
  * No description
6757
6519
  *
@@ -6764,7 +6526,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6764
6526
  */
6765
6527
  getForms: (query?: {
6766
6528
  showAll?: boolean;
6767
- }, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms[], any>>;
6529
+ }, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms[], any, {}>>;
6768
6530
  /**
6769
6531
  * No description
6770
6532
  *
@@ -6776,7 +6538,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6776
6538
  * @response `201` `Form` Created
6777
6539
  * @response `422` `UnprocessableEntity` Client Error
6778
6540
  */
6779
- createForm: (data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<Form, any>>;
6541
+ createForm: (data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<Form, any, {}>>;
6780
6542
  /**
6781
6543
  * No description
6782
6544
  *
@@ -6787,7 +6549,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6787
6549
  * @secure
6788
6550
  * @response `200` `Form` Success
6789
6551
  */
6790
- getForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<Form, any>>;
6552
+ getForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<Form, any, {}>>;
6791
6553
  /**
6792
6554
  * No description
6793
6555
  *
@@ -6799,7 +6561,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6799
6561
  * @response `200` `Form` Success
6800
6562
  * @response `422` `UnprocessableEntity` Client Error
6801
6563
  */
6802
- replaceForm: (id: string, data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<Form, any>>;
6564
+ replaceForm: (id: string, data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<Form, any, {}>>;
6803
6565
  /**
6804
6566
  * No description
6805
6567
  *
@@ -6810,7 +6572,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6810
6572
  * @secure
6811
6573
  * @response `204` `void` No Content
6812
6574
  */
6813
- deleteForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6575
+ deleteForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
6814
6576
  /**
6815
6577
  * No description
6816
6578
  *
@@ -6821,7 +6583,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6821
6583
  * @secure
6822
6584
  * @response `200` `Form` Success
6823
6585
  */
6824
- restoreForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<Form, any>>;
6586
+ restoreForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<Form, any, {}>>;
6825
6587
  /**
6826
6588
  * No description
6827
6589
  *
@@ -6836,7 +6598,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6836
6598
  /** @format binary */
6837
6599
  file?: File;
6838
6600
  name?: string;
6839
- }, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionFile, any>>;
6601
+ }, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionFile, any, {}>>;
6840
6602
  /**
6841
6603
  * No description
6842
6604
  *
@@ -6847,7 +6609,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6847
6609
  * @secure
6848
6610
  * @response `204` `void` No Content
6849
6611
  */
6850
- deleteFormSubmissionFile: (formSubmissionFileId: string, formSubmissionId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6612
+ deleteFormSubmissionFile: (formSubmissionFileId: string, formSubmissionId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
6851
6613
  /**
6852
6614
  * No description
6853
6615
  *
@@ -6861,7 +6623,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6861
6623
  downloadFormSubmissionFile: (formSubmissionFileId: string, formSubmissionId: string, query?: {
6862
6624
  /** @format uuid */
6863
6625
  siteConfigurationId?: string;
6864
- }, params?: RequestParams) => Promise<AxiosResponse<FileWithBytes, any>>;
6626
+ }, params?: RequestParams) => Promise<AxiosResponse<FileWithBytes, any, {}>>;
6865
6627
  /**
6866
6628
  * No description
6867
6629
  *
@@ -6879,7 +6641,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6879
6641
  pageNumber?: number;
6880
6642
  sortBy?: string;
6881
6643
  sortDirection?: string;
6882
- }, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionPaginated, any>>;
6644
+ }, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionPaginated, any, {}>>;
6883
6645
  /**
6884
6646
  * No description
6885
6647
  *
@@ -6892,7 +6654,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6892
6654
  */
6893
6655
  createFormSubmission: (data: FormSubmissionRequest, query?: {
6894
6656
  formID?: string;
6895
- }, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any>>;
6657
+ }, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any, {}>>;
6896
6658
  /**
6897
6659
  * No description
6898
6660
  *
@@ -6903,7 +6665,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6903
6665
  * @secure
6904
6666
  * @response `200` `FormSubmission` Success
6905
6667
  */
6906
- getFormSubmission: (id: string, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any>>;
6668
+ getFormSubmission: (id: string, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any, {}>>;
6907
6669
  /**
6908
6670
  * No description
6909
6671
  *
@@ -6914,7 +6676,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6914
6676
  * @secure
6915
6677
  * @response `200` `FormSubmission` Success
6916
6678
  */
6917
- replaceFormSubmission: (id: string, data: FormSubmissionRequest, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any>>;
6679
+ replaceFormSubmission: (id: string, data: FormSubmissionRequest, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any, {}>>;
6918
6680
  /**
6919
6681
  * No description
6920
6682
  *
@@ -6925,7 +6687,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6925
6687
  * @secure
6926
6688
  * @response `204` `void` No Content
6927
6689
  */
6928
- deleteFormSubmission: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6690
+ deleteFormSubmission: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
6929
6691
  /**
6930
6692
  * No description
6931
6693
  *
@@ -6943,7 +6705,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6943
6705
  pageNumber?: number;
6944
6706
  sortBy?: string;
6945
6707
  sortDirection?: string;
6946
- }, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionPaginated, any>>;
6708
+ }, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionPaginated, any, {}>>;
6947
6709
  /**
6948
6710
  * No description
6949
6711
  *
@@ -6954,7 +6716,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6954
6716
  * @secure
6955
6717
  * @response `200` `(FormVersion)[]` Success
6956
6718
  */
6957
- getFormVersions: (formId: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion[], any>>;
6719
+ getFormVersions: (formId: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion[], any, {}>>;
6958
6720
  /**
6959
6721
  * No description
6960
6722
  *
@@ -6965,7 +6727,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6965
6727
  * @secure
6966
6728
  * @response `200` `FormVersion` Success
6967
6729
  */
6968
- createFormVersion: (formId: string, data: FormVersionRequest, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
6730
+ createFormVersion: (formId: string, data: FormVersionRequest, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any, {}>>;
6969
6731
  /**
6970
6732
  * No description
6971
6733
  *
@@ -6976,7 +6738,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6976
6738
  * @secure
6977
6739
  * @response `200` `FormVersion` Success
6978
6740
  */
6979
- getFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
6741
+ getFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any, {}>>;
6980
6742
  /**
6981
6743
  * No description
6982
6744
  *
@@ -6987,7 +6749,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6987
6749
  * @secure
6988
6750
  * @response `200` `FormVersion` Success
6989
6751
  */
6990
- replaceFormVersion: (formId: string, id: string, data: FormVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
6752
+ replaceFormVersion: (formId: string, id: string, data: FormVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any, {}>>;
6991
6753
  /**
6992
6754
  * No description
6993
6755
  *
@@ -6998,7 +6760,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6998
6760
  * @secure
6999
6761
  * @response `200` `FormVersion` Success
7000
6762
  */
7001
- deleteFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
6763
+ deleteFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any, {}>>;
7002
6764
  /**
7003
6765
  * No description
7004
6766
  *
@@ -7009,7 +6771,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7009
6771
  * @secure
7010
6772
  * @response `200` `Record<string,any>` Success
7011
6773
  */
7012
- getLoanData: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Record<string, any>, any>>;
6774
+ getLoanData: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Record<string, any>, any, {}>>;
7013
6775
  /**
7014
6776
  * No description
7015
6777
  *
@@ -7022,7 +6784,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7022
6784
  * @response `200` `string` Success
7023
6785
  * @response `422` `UnprocessableEntity` Client Error
7024
6786
  */
7025
- updateLoanConsentAndCustomFieldsObsolete: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
6787
+ updateLoanConsentAndCustomFieldsObsolete: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
7026
6788
  /**
7027
6789
  * No description
7028
6790
  *
@@ -7033,7 +6795,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7033
6795
  * @secure
7034
6796
  * @response `200` `GetReport` Success
7035
6797
  */
7036
- getLoansReport: (data: GetReportRequest, params?: RequestParams) => Promise<AxiosResponse<GetReport, any>>;
6798
+ getLoansReport: (data: GetReportRequest, params?: RequestParams) => Promise<AxiosResponse<GetReport, any, {}>>;
7037
6799
  /**
7038
6800
  * No description
7039
6801
  *
@@ -7050,7 +6812,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7050
6812
  createLoan: (data: any, query?: {
7051
6813
  /** @default false */
7052
6814
  isPatch?: boolean;
7053
- }, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
6815
+ }, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
7054
6816
  /**
7055
6817
  * No description
7056
6818
  *
@@ -7066,7 +6828,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7066
6828
  createLoanInternal: (data: any, query?: {
7067
6829
  /** @default false */
7068
6830
  isPatch?: boolean;
7069
- }, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
6831
+ }, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
7070
6832
  /**
7071
6833
  * No description
7072
6834
  *
@@ -7078,7 +6840,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7078
6840
  * @response `200` `string` Success
7079
6841
  * @response `422` `UnprocessableEntity` Client Error
7080
6842
  */
7081
- updateLoanCustomFields: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
6843
+ updateLoanCustomFields: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
7082
6844
  /**
7083
6845
  * No description
7084
6846
  *
@@ -7091,7 +6853,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7091
6853
  * @response `202` `string` Accepted
7092
6854
  * @response `422` `UnprocessableEntity` Client Error
7093
6855
  */
7094
- updateLoanConsent: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
6856
+ updateLoanConsent: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
7095
6857
  /**
7096
6858
  * No description
7097
6859
  *
@@ -7102,7 +6864,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7102
6864
  * @secure
7103
6865
  * @response `200` `(DocumentData)[]` Success
7104
6866
  */
7105
- getTaskDocumentsByLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentData[], any>>;
6867
+ getTaskDocumentsByLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentData[], any, {}>>;
7106
6868
  /**
7107
6869
  * No description
7108
6870
  *
@@ -7116,7 +6878,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7116
6878
  getLoanDocumentContent: (loanId: string, documentId: string, query?: {
7117
6879
  /** @default "base64" */
7118
6880
  contentType?: string;
7119
- }, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6881
+ }, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
7120
6882
  /**
7121
6883
  * No description
7122
6884
  *
@@ -7127,7 +6889,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7127
6889
  * @secure
7128
6890
  * @response `204` `void` No Content
7129
6891
  */
7130
- getLoanRecipients: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6892
+ getLoanRecipients: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
7131
6893
  /**
7132
6894
  * No description
7133
6895
  *
@@ -7138,7 +6900,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7138
6900
  * @secure
7139
6901
  * @response `200` `(PreliminaryCondition)[]` Success
7140
6902
  */
7141
- getPreliminaryConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<PreliminaryCondition[], any>>;
6903
+ getPreliminaryConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<PreliminaryCondition[], any, {}>>;
7142
6904
  /**
7143
6905
  * No description
7144
6906
  *
@@ -7149,7 +6911,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7149
6911
  * @secure
7150
6912
  * @response `200` `(UnderwritingCondition)[]` Success
7151
6913
  */
7152
- getUnderwritingConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UnderwritingCondition[], any>>;
6914
+ getUnderwritingConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UnderwritingCondition[], any, {}>>;
7153
6915
  /**
7154
6916
  * No description
7155
6917
  *
@@ -7160,7 +6922,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7160
6922
  * @secure
7161
6923
  * @response `200` `string` Success
7162
6924
  */
7163
- getLoanEmbeddedSigningLink: (envelopeId: string, userName: string, email: string, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
6925
+ getLoanEmbeddedSigningLink: (envelopeId: string, userName: string, email: string, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
7164
6926
  /**
7165
6927
  * No description
7166
6928
  *
@@ -7172,7 +6934,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7172
6934
  * @secure
7173
6935
  * @response `200` `DocumentDataRequest` Success
7174
6936
  */
7175
- createLegacyLoanDocument: (data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any>>;
6937
+ createLegacyLoanDocument: (data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any, {}>>;
7176
6938
  /**
7177
6939
  * No description
7178
6940
  *
@@ -7189,7 +6951,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7189
6951
  createEditDraftForLoan: (loanId: string, query?: {
7190
6952
  /** @default false */
7191
6953
  isCoBorrower?: boolean;
7192
- }, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
6954
+ }, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
7193
6955
  /**
7194
6956
  * No description
7195
6957
  *
@@ -7205,7 +6967,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7205
6967
  file?: File;
7206
6968
  /** @format int32 */
7207
6969
  weight?: number;
7208
- }, params?: RequestParams) => Promise<AxiosResponse<ListingFile, any>>;
6970
+ }, params?: RequestParams) => Promise<AxiosResponse<ListingFile, any, {}>>;
7209
6971
  /**
7210
6972
  * No description
7211
6973
  *
@@ -7216,7 +6978,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7216
6978
  * @secure
7217
6979
  * @response `200` `ListingFile` Success
7218
6980
  */
7219
- updateListingFiles: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingFile, any>>;
6981
+ updateListingFiles: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingFile, any, {}>>;
7220
6982
  /**
7221
6983
  * No description
7222
6984
  *
@@ -7227,7 +6989,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7227
6989
  * @secure
7228
6990
  * @response `204` `Listing` No Content
7229
6991
  */
7230
- removeListingFile: (listingId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
6992
+ removeListingFile: (listingId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
7231
6993
  /**
7232
6994
  * No description
7233
6995
  *
@@ -7245,7 +7007,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7245
7007
  file?: File;
7246
7008
  /** @format int32 */
7247
7009
  weight?: number;
7248
- }, params?: RequestParams) => Promise<AxiosResponse<ListingPhoto, any>>;
7010
+ }, params?: RequestParams) => Promise<AxiosResponse<ListingPhoto, any, {}>>;
7249
7011
  /**
7250
7012
  * No description
7251
7013
  *
@@ -7256,7 +7018,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7256
7018
  * @secure
7257
7019
  * @response `200` `(ListingPhoto)[]` Success
7258
7020
  */
7259
- updateListingPhotos: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingPhoto[], any>>;
7021
+ updateListingPhotos: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingPhoto[], any, {}>>;
7260
7022
  /**
7261
7023
  * No description
7262
7024
  *
@@ -7267,7 +7029,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7267
7029
  * @secure
7268
7030
  * @response `204` `Listing` No Content
7269
7031
  */
7270
- removeListingPhoto: (listingId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
7032
+ removeListingPhoto: (listingId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
7271
7033
  /**
7272
7034
  * No description
7273
7035
  *
@@ -7285,7 +7047,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7285
7047
  pageNumber?: number;
7286
7048
  sortBy?: string;
7287
7049
  sortDirection?: string;
7288
- }, params?: RequestParams) => Promise<AxiosResponse<ListingPaginated, any>>;
7050
+ }, params?: RequestParams) => Promise<AxiosResponse<ListingPaginated, any, {}>>;
7289
7051
  /**
7290
7052
  * No description
7291
7053
  *
@@ -7296,7 +7058,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7296
7058
  * @secure
7297
7059
  * @response `201` `Listing` Created
7298
7060
  */
7299
- createListing: (data: ListingRequest, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
7061
+ createListing: (data: ListingRequest, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
7300
7062
  /**
7301
7063
  * No description
7302
7064
  *
@@ -7307,7 +7069,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7307
7069
  * @secure
7308
7070
  * @response `200` `Listing` Success
7309
7071
  */
7310
- getListingBySlug: (slug: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
7072
+ getListingBySlug: (slug: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
7311
7073
  /**
7312
7074
  * No description
7313
7075
  *
@@ -7318,7 +7080,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7318
7080
  * @secure
7319
7081
  * @response `200` `Listing` Success
7320
7082
  */
7321
- getListing: (id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
7083
+ getListing: (id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
7322
7084
  /**
7323
7085
  * No description
7324
7086
  *
@@ -7329,7 +7091,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7329
7091
  * @secure
7330
7092
  * @response `200` `Listing` Success
7331
7093
  */
7332
- replaceListing: (id: string, data: ListingRequest, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
7094
+ replaceListing: (id: string, data: ListingRequest, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
7333
7095
  /**
7334
7096
  * No description
7335
7097
  *
@@ -7340,7 +7102,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7340
7102
  * @secure
7341
7103
  * @response `204` `void` No Content
7342
7104
  */
7343
- deleteListing: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7105
+ deleteListing: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
7344
7106
  /**
7345
7107
  * No description
7346
7108
  *
@@ -7358,7 +7120,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7358
7120
  pageNumber?: number;
7359
7121
  sortBy?: string;
7360
7122
  sortDirection?: string;
7361
- }, params?: RequestParams) => Promise<AxiosResponse<ListingPaginated, any>>;
7123
+ }, params?: RequestParams) => Promise<AxiosResponse<ListingPaginated, any, {}>>;
7362
7124
  /**
7363
7125
  * No description
7364
7126
  *
@@ -7372,7 +7134,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7372
7134
  updateListingBackgroundImage: (id: string, data: {
7373
7135
  /** @format binary */
7374
7136
  file?: File;
7375
- }, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
7137
+ }, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
7376
7138
  /**
7377
7139
  * No description
7378
7140
  *
@@ -7383,7 +7145,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7383
7145
  * @secure
7384
7146
  * @response `204` `void` No Content
7385
7147
  */
7386
- deleteListingBackgroundImage: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7148
+ deleteListingBackgroundImage: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
7387
7149
  /**
7388
7150
  * No description
7389
7151
  *
@@ -7394,7 +7156,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7394
7156
  * @secure
7395
7157
  * @response `200` `File` Success
7396
7158
  */
7397
- getListingOpenHouseFlyer: (id: string, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
7159
+ getListingOpenHouseFlyer: (id: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
7398
7160
  /**
7399
7161
  * No description
7400
7162
  *
@@ -7405,7 +7167,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7405
7167
  * @secure
7406
7168
  * @response `200` `RunLOCalculation` Success
7407
7169
  */
7408
- getLoanCalculator: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any>>;
7170
+ getLoanCalculator: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any, {}>>;
7409
7171
  /**
7410
7172
  * No description
7411
7173
  *
@@ -7418,7 +7180,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7418
7180
  * @response `422` `UnprocessableEntity` Client Error
7419
7181
  * @response `423` `UnprocessableEntity` Client Error
7420
7182
  */
7421
- runLoanCalculator: (loanId: string, data: RunLOCalculationRequest, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any>>;
7183
+ runLoanCalculator: (loanId: string, data: RunLOCalculationRequest, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any, {}>>;
7422
7184
  /**
7423
7185
  * No description
7424
7186
  *
@@ -7429,7 +7191,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7429
7191
  * @secure
7430
7192
  * @response `200` `LoanComparison` Success
7431
7193
  */
7432
- getLoanComparisons: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<LoanComparison, any>>;
7194
+ getLoanComparisons: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<LoanComparison, any, {}>>;
7433
7195
  /**
7434
7196
  * No description
7435
7197
  *
@@ -7442,7 +7204,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7442
7204
  * @response `422` `UnprocessableEntity` Client Error
7443
7205
  * @response `423` `UnprocessableEntity` Client Error
7444
7206
  */
7445
- createLoanComparison: (loanId: string, index: number, data: LoanComparisonScenario, params?: RequestParams) => Promise<AxiosResponse<LoanComparisonScenario, any>>;
7207
+ createLoanComparison: (loanId: string, index: number, data: LoanComparisonScenario, params?: RequestParams) => Promise<AxiosResponse<LoanComparisonScenario, any, {}>>;
7446
7208
  /**
7447
7209
  * No description
7448
7210
  *
@@ -7453,7 +7215,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7453
7215
  * @secure
7454
7216
  * @response `204` `void` No Content
7455
7217
  */
7456
- deleteLoanComparison: (loanId: string, index: number, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7218
+ deleteLoanComparison: (loanId: string, index: number, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
7457
7219
  /**
7458
7220
  * No description
7459
7221
  *
@@ -7465,57 +7227,20 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7465
7227
  * @response `204` `void` No Content
7466
7228
  * @response `422` `UnprocessableEntity` Client Error
7467
7229
  */
7468
- createLoanComparisonPdf: (loanId: string, data: PostLoanComparisonPdfRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7469
- /**
7470
- * No description
7471
- *
7472
- * @tags LoanCustomFieldValues
7473
- * @name GetLoanCustomFieldValues
7474
- * @summary Get all custom field values for a loan
7475
- * @request GET:/api/loans/{loanId}/custom-fields
7476
- * @secure
7477
- * @response `200` `(CustomFieldValue)[]` Success
7478
- */
7479
- getLoanCustomFieldValues: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<CustomFieldValue[], any>>;
7230
+ createLoanComparisonPdf: (loanId: string, data: PostLoanComparisonPdfRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
7480
7231
  /**
7481
7232
  * No description
7482
7233
  *
7483
- * @tags LoanCustomFieldValues
7484
- * @name BulkSetLoanCustomFieldValues
7485
- * @summary Bulk set custom field values for a loan
7486
- * @request PUT:/api/loans/{loanId}/custom-fields
7234
+ * @tags LoanConsents
7235
+ * @name ResyncLoanConsents
7236
+ * @summary Resync loan consents to LOS
7237
+ * @request POST:/api/loans/{loanId}/consents/resync
7487
7238
  * @secure
7488
7239
  * @response `204` `void` No Content
7489
- * @response `400` `ProblemDetails` Bad Request
7490
- * @response `422` `ProblemDetails` Client Error
7491
- */
7492
- bulkSetLoanCustomFieldValues: (loanId: string, data: SetCustomFieldValueRequest[], params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7493
- /**
7494
- * No description
7495
- *
7496
- * @tags LoanCustomFieldValues
7497
- * @name SetLoanCustomFieldValue
7498
- * @summary Set a single custom field value
7499
- * @request PUT:/api/loans/{loanId}/custom-fields/{definitionId}
7500
- * @secure
7501
- * @response `204` `void` No Content
7502
- * @response `400` `ProblemDetails` Bad Request
7503
7240
  * @response `404` `ProblemDetails` Not Found
7504
7241
  * @response `422` `ProblemDetails` Client Error
7505
7242
  */
7506
- setLoanCustomFieldValue: (loanId: string, definitionId: string, data: SetSingleCustomFieldValueRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7507
- /**
7508
- * No description
7509
- *
7510
- * @tags LoanCustomFieldValues
7511
- * @name DeleteLoanCustomFieldValue
7512
- * @summary Remove a custom field value
7513
- * @request DELETE:/api/loans/{loanId}/custom-fields/{definitionId}
7514
- * @secure
7515
- * @response `204` `void` No Content
7516
- * @response `404` `ProblemDetails` Not Found
7517
- */
7518
- deleteLoanCustomFieldValue: (loanId: string, definitionId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7243
+ resyncLoanConsents: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
7519
7244
  /**
7520
7245
  * No description
7521
7246
  *
@@ -7526,7 +7251,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7526
7251
  * @secure
7527
7252
  * @response `200` `(string)[]` Success
7528
7253
  */
7529
- getLoanDocumentBuckets: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<string[], any>>;
7254
+ getLoanDocumentBuckets: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<string[], any, {}>>;
7530
7255
  /**
7531
7256
  * No description
7532
7257
  *
@@ -7537,7 +7262,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7537
7262
  * @secure
7538
7263
  * @response `201` `(string)[]` Created
7539
7264
  */
7540
- createLoanDocumentBuckets: (loanId: string, data: string[], params?: RequestParams) => Promise<AxiosResponse<string[], any>>;
7265
+ createLoanDocumentBuckets: (loanId: string, data: string[], params?: RequestParams) => Promise<AxiosResponse<string[], any, {}>>;
7541
7266
  /**
7542
7267
  * No description
7543
7268
  *
@@ -7552,19 +7277,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7552
7277
  getLoanDocument: (loanId: string, documentId: string, query?: {
7553
7278
  /** @default false */
7554
7279
  preview?: boolean;
7555
- }, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any>>;
7556
- /**
7557
- * No description
7558
- *
7559
- * @tags LoanDocuments
7560
- * @name GetLoanDocumentPreviews
7561
- * @summary Get document previews in batch
7562
- * @request POST:/api/loans/{loanId}/documents/previews
7563
- * @secure
7564
- * @response `200` `Record<string,string>` Success
7565
- * @response `400` `ProblemDetails` Bad Request
7566
- */
7567
- getLoanDocumentPreviews: (loanId: string, data: LoanDocumentPreviewsRequest, params?: RequestParams) => Promise<AxiosResponse<Record<string, string>, any>>;
7280
+ }, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any, {}>>;
7568
7281
  /**
7569
7282
  * No description
7570
7283
  *
@@ -7582,7 +7295,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7582
7295
  pageNumber?: number;
7583
7296
  sortBy?: string;
7584
7297
  sortDirection?: string;
7585
- }, params?: RequestParams) => Promise<AxiosResponse<LoanDocumentSearchPaginated, any>>;
7298
+ }, params?: RequestParams) => Promise<AxiosResponse<LoanDocumentSearchPaginated, any, {}>>;
7586
7299
  /**
7587
7300
  * @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).
7588
7301
  *
@@ -7596,7 +7309,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7596
7309
  getLoanDocumentFolders: (loanId: string, data: DocumentFoldersRequest, query?: {
7597
7310
  /** @default false */
7598
7311
  folderNamesOnly?: boolean;
7599
- }, params?: RequestParams) => Promise<AxiosResponse<DocumentFolder[], any>>;
7312
+ }, params?: RequestParams) => Promise<AxiosResponse<DocumentFolder[], any, {}>>;
7600
7313
  /**
7601
7314
  * No description
7602
7315
  *
@@ -7608,7 +7321,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7608
7321
  * @response `200` `string` Success
7609
7322
  * @response `404` `ProblemDetails` Not Found
7610
7323
  */
7611
- downloadLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
7324
+ downloadLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
7612
7325
  /**
7613
7326
  * No description
7614
7327
  *
@@ -7626,7 +7339,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7626
7339
  /** @format binary */
7627
7340
  file?: File;
7628
7341
  bucket?: string;
7629
- }, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any>>;
7342
+ }, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any, {}>>;
7630
7343
  /**
7631
7344
  * No description
7632
7345
  *
@@ -7639,7 +7352,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7639
7352
  * @response `404` `ProblemDetails` Not Found
7640
7353
  * @response `422` `UnprocessableEntity` Client Error
7641
7354
  */
7642
- retryFailedLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any>>;
7355
+ retryFailedLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any, {}>>;
7643
7356
  /**
7644
7357
  * No description
7645
7358
  *
@@ -7650,7 +7363,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7650
7363
  * @secure
7651
7364
  * @response `200` `DocumentDataRequest` Success
7652
7365
  */
7653
- generateLoanDocument: (loanId: string, data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any>>;
7366
+ generateLoanDocument: (loanId: string, data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any, {}>>;
7654
7367
  /**
7655
7368
  * No description
7656
7369
  *
@@ -7663,7 +7376,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7663
7376
  * @response `400` `ProblemDetails` Bad Request
7664
7377
  * @response `404` `ProblemDetails` Not Found
7665
7378
  */
7666
- sendLoanDocuments: (loanId: string, data: SendLoanDocumentsRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7379
+ sendLoanDocuments: (loanId: string, data: SendLoanDocumentsRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
7667
7380
  /**
7668
7381
  * @description Fetches all documents from Encompass that don't exist locally and stores them in S3
7669
7382
  *
@@ -7675,7 +7388,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7675
7388
  * @response `200` `DocumentSync` Success
7676
7389
  * @response `404` `ProblemDetails` Not Found
7677
7390
  */
7678
- syncLoanDocumentsFromLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentSync, any>>;
7391
+ syncLoanDocumentsFromLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentSync, any, {}>>;
7679
7392
  /**
7680
7393
  * @description Re-attempts to push a failed document to LOS
7681
7394
  *
@@ -7688,7 +7401,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7688
7401
  * @response `404` `ProblemDetails` Not Found
7689
7402
  * @response `423` `ProblemDetails` Client Error
7690
7403
  */
7691
- retrySyncLoanDocumentToLos: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7404
+ retrySyncLoanDocumentToLos: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
7692
7405
  /**
7693
7406
  * No description
7694
7407
  *
@@ -7699,7 +7412,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7699
7412
  * @secure
7700
7413
  * @response `201` `Draft` Created
7701
7414
  */
7702
- createLoanDraft: (data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
7415
+ createLoanDraft: (data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
7703
7416
  /**
7704
7417
  * No description
7705
7418
  *
@@ -7710,7 +7423,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7710
7423
  * @secure
7711
7424
  * @response `200` `(DraftContent)[]` Success
7712
7425
  */
7713
- getLoanDrafts: (params?: RequestParams) => Promise<AxiosResponse<DraftContent[], any>>;
7426
+ getLoanDrafts: (params?: RequestParams) => Promise<AxiosResponse<DraftContent[], any, {}>>;
7714
7427
  /**
7715
7428
  * No description
7716
7429
  *
@@ -7721,7 +7434,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7721
7434
  * @secure
7722
7435
  * @response `200` `DraftContent` Success
7723
7436
  */
7724
- getLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<DraftContent, any>>;
7437
+ getLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<DraftContent, any, {}>>;
7725
7438
  /**
7726
7439
  * No description
7727
7440
  *
@@ -7732,7 +7445,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7732
7445
  * @secure
7733
7446
  * @response `200` `Draft` Success
7734
7447
  */
7735
- replaceLoanDraft: (draftId: string, data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
7448
+ replaceLoanDraft: (draftId: string, data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
7736
7449
  /**
7737
7450
  * No description
7738
7451
  *
@@ -7743,7 +7456,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7743
7456
  * @secure
7744
7457
  * @response `204` `void` No Content
7745
7458
  */
7746
- deleteLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7459
+ deleteLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
7747
7460
  /**
7748
7461
  * No description
7749
7462
  *
@@ -7761,7 +7474,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7761
7474
  pageNumber?: number;
7762
7475
  sortBy?: string;
7763
7476
  sortDirection?: string;
7764
- }, params?: RequestParams) => Promise<AxiosResponse<DraftContentPaginated, any>>;
7477
+ }, params?: RequestParams) => Promise<AxiosResponse<DraftContentPaginated, any, {}>>;
7765
7478
  /**
7766
7479
  * No description
7767
7480
  *
@@ -7772,7 +7485,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7772
7485
  * @secure
7773
7486
  * @response `200` `Draft` Success
7774
7487
  */
7775
- reassignLoanOfficer: (draftId: string, data: DraftLoanOfficerReassignRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
7488
+ reassignLoanOfficer: (draftId: string, data: DraftLoanOfficerReassignRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
7776
7489
  /**
7777
7490
  * No description
7778
7491
  *
@@ -7783,7 +7496,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7783
7496
  * @secure
7784
7497
  * @response `200` `Draft` Success
7785
7498
  */
7786
- restoreLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
7499
+ restoreLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
7787
7500
  /**
7788
7501
  * No description
7789
7502
  *
@@ -7803,7 +7516,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7803
7516
  pageNumber?: number;
7804
7517
  sortBy?: string;
7805
7518
  sortDirection?: string;
7806
- }, params?: RequestParams) => Promise<AxiosResponse<LoanImportPaginated, any>>;
7519
+ }, params?: RequestParams) => Promise<AxiosResponse<LoanImportPaginated, any, {}>>;
7807
7520
  /**
7808
7521
  * No description
7809
7522
  *
@@ -7814,7 +7527,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7814
7527
  * @secure
7815
7528
  * @response `201` `LoanImport` Created
7816
7529
  */
7817
- createLoanImport: (data: CreateLoanImportRequest, params?: RequestParams) => Promise<AxiosResponse<LoanImport, any>>;
7530
+ createLoanImport: (data: CreateLoanImportRequest, params?: RequestParams) => Promise<AxiosResponse<LoanImport, any, {}>>;
7818
7531
  /**
7819
7532
  * No description
7820
7533
  *
@@ -7825,7 +7538,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7825
7538
  * @secure
7826
7539
  * @response `200` `LoanImport` Success
7827
7540
  */
7828
- getLoanImport: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanImport, any>>;
7541
+ getLoanImport: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanImport, any, {}>>;
7829
7542
  /**
7830
7543
  * No description
7831
7544
  *
@@ -7843,7 +7556,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7843
7556
  pageNumber?: number;
7844
7557
  sortBy?: string;
7845
7558
  sortDirection?: string;
7846
- }, params?: RequestParams) => Promise<AxiosResponse<LoanImportLogPaginated, any>>;
7559
+ }, params?: RequestParams) => Promise<AxiosResponse<LoanImportLogPaginated, any, {}>>;
7847
7560
  /**
7848
7561
  * No description
7849
7562
  *
@@ -7855,7 +7568,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7855
7568
  * @response `200` `(Invite)[]` Success
7856
7569
  * @response `404` `ProblemDetails` Not Found
7857
7570
  */
7858
- getLoanInvites: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Invite[], any>>;
7571
+ getLoanInvites: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Invite[], any, {}>>;
7859
7572
  /**
7860
7573
  * No description
7861
7574
  *
@@ -7867,7 +7580,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7867
7580
  * @response `200` `(Invite)[]` Success
7868
7581
  * @response `404` `ProblemDetails` Not Found
7869
7582
  */
7870
- inviteLoanContacts: (loanId: string, data: string[], params?: RequestParams) => Promise<AxiosResponse<Invite[], any>>;
7583
+ inviteLoanContacts: (loanId: string, data: string[], params?: RequestParams) => Promise<AxiosResponse<Invite[], any, {}>>;
7871
7584
  /**
7872
7585
  * No description
7873
7586
  *
@@ -7885,7 +7598,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7885
7598
  pageNumber?: number;
7886
7599
  sortBy?: string;
7887
7600
  sortDirection?: string;
7888
- }, params?: RequestParams) => Promise<AxiosResponse<LoanLogPaginated, any>>;
7601
+ }, params?: RequestParams) => Promise<AxiosResponse<LoanLogPaginated, any, {}>>;
7889
7602
  /**
7890
7603
  * No description
7891
7604
  *
@@ -7897,7 +7610,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7897
7610
  * @response `200` `LoanLogDetail` Success
7898
7611
  * @response `404` `ProblemDetails` Not Found
7899
7612
  */
7900
- getLoanLogById: (loanId: string, loanLogId: string, params?: RequestParams) => Promise<AxiosResponse<LoanLogDetail, any>>;
7613
+ getLoanLogById: (loanId: string, loanLogId: string, params?: RequestParams) => Promise<AxiosResponse<LoanLogDetail, any, {}>>;
7901
7614
  /**
7902
7615
  * No description
7903
7616
  *
@@ -7916,7 +7629,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7916
7629
  pageNumber?: number;
7917
7630
  sortBy?: string;
7918
7631
  sortDirection?: string;
7919
- }, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any>>;
7632
+ }, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any, {}>>;
7920
7633
  /**
7921
7634
  * No description
7922
7635
  *
@@ -7934,7 +7647,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7934
7647
  pageNumber?: number;
7935
7648
  sortBy?: string;
7936
7649
  sortDirection?: string;
7937
- }, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any>>;
7650
+ }, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any, {}>>;
7938
7651
  /**
7939
7652
  * No description
7940
7653
  *
@@ -7945,7 +7658,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7945
7658
  * @secure
7946
7659
  * @response `200` `BranchUser` Success
7947
7660
  */
7948
- getLoanOfficer: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any>>;
7661
+ getLoanOfficer: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any, {}>>;
7949
7662
  /**
7950
7663
  * No description
7951
7664
  *
@@ -7957,7 +7670,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7957
7670
  * @response `200` `SiteConfiguration` Success
7958
7671
  * @response `422` `UnprocessableEntity` Client Error
7959
7672
  */
7960
- createLoanOfficerSiteConfiguration: (loanOfficerId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
7673
+ createLoanOfficerSiteConfiguration: (loanOfficerId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
7961
7674
  /**
7962
7675
  * No description
7963
7676
  *
@@ -7968,7 +7681,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7968
7681
  * @secure
7969
7682
  * @response `200` `SiteConfigurationWithInherited` Success
7970
7683
  */
7971
- getLoanOfficerSiteConfiguration: (loanOfficerId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
7684
+ getLoanOfficerSiteConfiguration: (loanOfficerId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any, {}>>;
7972
7685
  /**
7973
7686
  * No description
7974
7687
  *
@@ -7982,7 +7695,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7982
7695
  */
7983
7696
  replaceLoanOfficerSiteConfiguration: (loanOfficerId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
7984
7697
  applyToChildren?: boolean;
7985
- }, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
7698
+ }, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
7986
7699
  /**
7987
7700
  * No description
7988
7701
  *
@@ -8000,7 +7713,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8000
7713
  pageNumber?: number;
8001
7714
  sortBy?: string;
8002
7715
  sortDirection?: string;
8003
- }, params?: RequestParams) => Promise<AxiosResponse<LoanQueuePaginated, any>>;
7716
+ }, params?: RequestParams) => Promise<AxiosResponse<LoanQueuePaginated, any, {}>>;
8004
7717
  /**
8005
7718
  * No description
8006
7719
  *
@@ -8012,7 +7725,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8012
7725
  * @response `200` `any` Success
8013
7726
  * @response `404` `ProblemDetails` Not Found
8014
7727
  */
8015
- getLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<any, any>>;
7728
+ getLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
8016
7729
  /**
8017
7730
  * No description
8018
7731
  *
@@ -8024,7 +7737,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8024
7737
  * @response `200` `LoanQueueWithData` Success
8025
7738
  * @response `404` `ProblemDetails` Not Found
8026
7739
  */
8027
- replaceLoanQueue: (loanQueueId: string, data: UpdateLoanQueueRequest, params?: RequestParams) => Promise<AxiosResponse<LoanQueueWithData, any>>;
7740
+ replaceLoanQueue: (loanQueueId: string, data: UpdateLoanQueueRequest, params?: RequestParams) => Promise<AxiosResponse<LoanQueueWithData, any, {}>>;
8028
7741
  /**
8029
7742
  * No description
8030
7743
  *
@@ -8036,7 +7749,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8036
7749
  * @response `204` `void` No Content
8037
7750
  * @response `404` `ProblemDetails` Not Found
8038
7751
  */
8039
- deleteLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7752
+ deleteLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8040
7753
  /**
8041
7754
  * No description
8042
7755
  *
@@ -8048,7 +7761,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8048
7761
  * @response `204` `void` No Content
8049
7762
  * @response `404` `ProblemDetails` Not Found
8050
7763
  */
8051
- retryLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7764
+ retryLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8052
7765
  /**
8053
7766
  * No description
8054
7767
  *
@@ -8060,7 +7773,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8060
7773
  * @response `200` `Loan` Success
8061
7774
  * @response `404` `ProblemDetails` Not Found
8062
7775
  */
8063
- getLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any>>;
7776
+ getLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any, {}>>;
8064
7777
  /**
8065
7778
  * No description
8066
7779
  *
@@ -8071,7 +7784,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8071
7784
  * @secure
8072
7785
  * @response `200` `GetApplications` Success
8073
7786
  */
8074
- getLoans: (params?: RequestParams) => Promise<AxiosResponse<GetApplications, any>>;
7787
+ getLoans: (params?: RequestParams) => Promise<AxiosResponse<GetApplications, any, {}>>;
8075
7788
  /**
8076
7789
  * No description
8077
7790
  *
@@ -8085,7 +7798,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8085
7798
  * @response `401` `ProblemDetails` Unauthorized
8086
7799
  * @response `403` `ProblemDetails` Forbidden
8087
7800
  */
8088
- createLoanv3: (data: LoanApplicationRequest, params?: RequestParams) => Promise<AxiosResponse<LoanApplication, any>>;
7801
+ createLoanv3: (data: LoanApplicationRequest, params?: RequestParams) => Promise<AxiosResponse<LoanApplication, any, {}>>;
8089
7802
  /**
8090
7803
  * No description
8091
7804
  *
@@ -8103,7 +7816,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8103
7816
  pageNumber?: number;
8104
7817
  sortBy?: string;
8105
7818
  sortDirection?: string;
8106
- }, params?: RequestParams) => Promise<AxiosResponse<LoanListPaginated, any>>;
7819
+ }, params?: RequestParams) => Promise<AxiosResponse<LoanListPaginated, any, {}>>;
8107
7820
  /**
8108
7821
  * No description
8109
7822
  *
@@ -8119,7 +7832,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8119
7832
  * @response `404` `ProblemDetails` Not Found
8120
7833
  * @response `409` `any` Conflict
8121
7834
  */
8122
- updateLoan: (loanId: string, data: any, params?: RequestParams) => Promise<AxiosResponse<Loan, any>>;
7835
+ updateLoan: (loanId: string, data: any, params?: RequestParams) => Promise<AxiosResponse<Loan, any, {}>>;
8123
7836
  /**
8124
7837
  * No description
8125
7838
  *
@@ -8132,7 +7845,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8132
7845
  * @response `400` `ProblemDetails` Bad Request
8133
7846
  * @response `404` `ProblemDetails` Not Found
8134
7847
  */
8135
- completeBorrowerApplication: (loanId: string, borrowerId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7848
+ completeBorrowerApplication: (loanId: string, borrowerId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8136
7849
  /**
8137
7850
  * No description
8138
7851
  *
@@ -8143,7 +7856,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8143
7856
  * @secure
8144
7857
  * @response `200` `Loan` Success
8145
7858
  */
8146
- importLoanFromLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any>>;
7859
+ importLoanFromLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any, {}>>;
8147
7860
  /**
8148
7861
  * No description
8149
7862
  *
@@ -8155,20 +7868,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8155
7868
  * @response `202` `void` Accepted
8156
7869
  * @response `404` `ProblemDetails` Not Found
8157
7870
  */
8158
- syncLoanToLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8159
- /**
8160
- * No description
8161
- *
8162
- * @tags Loans
8163
- * @name TriggerAso
8164
- * @summary Trigger ASO services
8165
- * @request POST:/api/loans/{loanId}/aso
8166
- * @secure
8167
- * @response `200` `AutomatedService` Success
8168
- * @response `400` `ProblemDetails` Bad Request
8169
- * @response `404` `ProblemDetails` Not Found
8170
- */
8171
- triggerAso: (loanId: string, data: TriggerAsoRequest, params?: RequestParams) => Promise<AxiosResponse<AutomatedService, any>>;
7871
+ syncLoanToLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8172
7872
  /**
8173
7873
  * No description
8174
7874
  *
@@ -8187,7 +7887,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8187
7887
  pageNumber?: number;
8188
7888
  sortBy?: string;
8189
7889
  sortDirection?: string;
8190
- }, params?: RequestParams) => Promise<AxiosResponse<TaskCommentPaginated, any>>;
7890
+ }, params?: RequestParams) => Promise<AxiosResponse<TaskCommentPaginated, any, {}>>;
8191
7891
  /**
8192
7892
  * No description
8193
7893
  *
@@ -8199,7 +7899,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8199
7899
  * @response `200` `TaskComment` Success
8200
7900
  * @response `404` `ProblemDetails` Not Found
8201
7901
  */
8202
- getLoanTaskComment: (id: string, loanId: string, userLoanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any>>;
7902
+ getLoanTaskComment: (id: string, loanId: string, userLoanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any, {}>>;
8203
7903
  /**
8204
7904
  * No description
8205
7905
  *
@@ -8211,7 +7911,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8211
7911
  * @response `201` `TaskComment` Created
8212
7912
  * @response `404` `ProblemDetails` Not Found
8213
7913
  */
8214
- createLoanTaskComment: (loanId: string, userLoanTaskId: string, data: TaskCommentRequest, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any>>;
7914
+ createLoanTaskComment: (loanId: string, userLoanTaskId: string, data: TaskCommentRequest, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any, {}>>;
8215
7915
  /**
8216
7916
  * No description
8217
7917
  *
@@ -8223,7 +7923,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8223
7923
  * @response `200` `TaskComment` Success
8224
7924
  * @response `404` `ProblemDetails` Not Found
8225
7925
  */
8226
- replaceLoanTaskComment: (loanId: string, userLoanTaskId: string, commentId: string, data: TaskCommentRequest, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any>>;
7926
+ replaceLoanTaskComment: (loanId: string, userLoanTaskId: string, commentId: string, data: TaskCommentRequest, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any, {}>>;
8227
7927
  /**
8228
7928
  * No description
8229
7929
  *
@@ -8235,7 +7935,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8235
7935
  * @response `204` `void` No Content
8236
7936
  * @response `404` `ProblemDetails` Not Found
8237
7937
  */
8238
- deleteLoanTaskComment: (loanId: string, userLoanTaskId: string, commentId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7938
+ deleteLoanTaskComment: (loanId: string, userLoanTaskId: string, commentId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8239
7939
  /**
8240
7940
  * No description
8241
7941
  *
@@ -8253,7 +7953,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8253
7953
  /** @format binary */
8254
7954
  file?: File;
8255
7955
  bucket?: string;
8256
- }, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
7956
+ }, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
8257
7957
  /**
8258
7958
  * No description
8259
7959
  *
@@ -8265,7 +7965,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8265
7965
  * @response `204` `UserLoanTask` No Content
8266
7966
  * @response `422` `UnprocessableEntity` Client Error
8267
7967
  */
8268
- createLoanTaskDocumentBucket: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
7968
+ createLoanTaskDocumentBucket: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
8269
7969
  /**
8270
7970
  * No description
8271
7971
  *
@@ -8277,7 +7977,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8277
7977
  * @response `204` `void` No Content
8278
7978
  * @response `404` `ProblemDetails` Not Found
8279
7979
  */
8280
- sendOutstandingLoanTaskNotification: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7980
+ sendOutstandingLoanTaskNotification: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8281
7981
  /**
8282
7982
  * No description
8283
7983
  *
@@ -8290,7 +7990,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8290
7990
  * @response `400` `ProblemDetails` Bad Request
8291
7991
  * @response `404` `ProblemDetails` Not Found
8292
7992
  */
8293
- sendLoanTaskReminder: (loanId: string, data: SendLoanTaskReminderRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7993
+ sendLoanTaskReminder: (loanId: string, data: SendLoanTaskReminderRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8294
7994
  /**
8295
7995
  * @description Search tasks across all loans
8296
7996
  *
@@ -8308,7 +8008,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8308
8008
  pageNumber?: number;
8309
8009
  sortBy?: string;
8310
8010
  sortDirection?: string;
8311
- }, params?: RequestParams) => Promise<AxiosResponse<UserLoanTaskPaginated, any>>;
8011
+ }, params?: RequestParams) => Promise<AxiosResponse<UserLoanTaskPaginated, any, {}>>;
8312
8012
  /**
8313
8013
  * @description Returns task counts grouped by status for loans accessible to the current user based on their role
8314
8014
  *
@@ -8320,7 +8020,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8320
8020
  * @response `200` `(LoanTaskStatusSummary)[]` Success
8321
8021
  * @response `422` `UnprocessableEntity` Client Error
8322
8022
  */
8323
- searchLoanTasksSummary: (data: LoanTaskSearchRequest, params?: RequestParams) => Promise<AxiosResponse<LoanTaskStatusSummary[], any>>;
8023
+ searchLoanTasksSummary: (data: LoanTaskSearchRequest, params?: RequestParams) => Promise<AxiosResponse<LoanTaskStatusSummary[], any, {}>>;
8324
8024
  /**
8325
8025
  * No description
8326
8026
  *
@@ -8332,7 +8032,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8332
8032
  * @response `200` `(UserLoanTask)[]` Success
8333
8033
  * @response `404` `ProblemDetails` Not Found
8334
8034
  */
8335
- getLoanTasks: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any>>;
8035
+ getLoanTasks: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any, {}>>;
8336
8036
  /**
8337
8037
  * No description
8338
8038
  *
@@ -8344,7 +8044,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8344
8044
  * @response `200` `UserLoanTask` Success
8345
8045
  * @response `404` `ProblemDetails` Not Found
8346
8046
  */
8347
- getLoanTask: (id: string, loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
8047
+ getLoanTask: (id: string, loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
8348
8048
  /**
8349
8049
  * @description Get the difference between the current loan tasks and the tasks generated by business rules
8350
8050
  *
@@ -8356,7 +8056,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8356
8056
  * @response `200` `(UserLoanTask)[]` Success
8357
8057
  * @response `404` `ProblemDetails` Not Found
8358
8058
  */
8359
- getLoanTaskDifference: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any>>;
8059
+ getLoanTaskDifference: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any, {}>>;
8360
8060
  /**
8361
8061
  * No description
8362
8062
  *
@@ -8368,7 +8068,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8368
8068
  * @response `201` `UserLoanTask` Created
8369
8069
  * @response `404` `ProblemDetails` Not Found
8370
8070
  */
8371
- createLoanTask: (loanId: string, taskId: string, data: UserLoanTaskRequest, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
8071
+ createLoanTask: (loanId: string, taskId: string, data: UserLoanTaskRequest, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
8372
8072
  /**
8373
8073
  * No description
8374
8074
  *
@@ -8380,7 +8080,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8380
8080
  * @response `201` `(UserLoanTask)[]` Created
8381
8081
  * @response `404` `ProblemDetails` Not Found
8382
8082
  */
8383
- importLoanTask: (loanId: string, data: ImportUserLoanTaskRequest[], params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any>>;
8083
+ importLoanTask: (loanId: string, data: ImportUserLoanTaskRequest[], params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any, {}>>;
8384
8084
  /**
8385
8085
  * No description
8386
8086
  *
@@ -8392,7 +8092,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8392
8092
  * @response `200` `UserLoanTask` Success
8393
8093
  * @response `404` `ProblemDetails` Not Found
8394
8094
  */
8395
- replaceLoanTask: (loanId: string, userLoanTaskId: string, data: UserLoanTaskUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
8095
+ replaceLoanTask: (loanId: string, userLoanTaskId: string, data: UserLoanTaskUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
8396
8096
  /**
8397
8097
  * No description
8398
8098
  *
@@ -8404,7 +8104,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8404
8104
  * @response `204` `void` No Content
8405
8105
  * @response `404` `ProblemDetails` Not Found
8406
8106
  */
8407
- deleteLoanTask: (loanId: string, userLoanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8107
+ deleteLoanTask: (loanId: string, userLoanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8408
8108
  /**
8409
8109
  * No description
8410
8110
  *
@@ -8417,7 +8117,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8417
8117
  * @response `404` `ProblemDetails` Not Found
8418
8118
  * @response `422` `UnprocessableEntity` Client Error
8419
8119
  */
8420
- createLoanTaskVerification: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
8120
+ createLoanTaskVerification: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
8421
8121
  /**
8422
8122
  * No description
8423
8123
  *
@@ -8429,7 +8129,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8429
8129
  * @response `200` `(UserLoanConsent)[]` Success
8430
8130
  * @response `403` `ProblemDetails` Forbidden
8431
8131
  */
8432
- getLoanUserConsents: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanConsent[], any>>;
8132
+ getLoanUserConsents: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanConsent[], any, {}>>;
8433
8133
  /**
8434
8134
  * No description
8435
8135
  *
@@ -8440,7 +8140,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8440
8140
  * @secure
8441
8141
  * @response `200` `LoanUser` Success
8442
8142
  */
8443
- getLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any>>;
8143
+ getLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any, {}>>;
8444
8144
  /**
8445
8145
  * No description
8446
8146
  *
@@ -8451,7 +8151,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8451
8151
  * @secure
8452
8152
  * @response `201` `LoanUser` Created
8453
8153
  */
8454
- addLoanUser: (loanId: string, userId: string, data: CreateUserLoan, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any>>;
8154
+ addLoanUser: (loanId: string, userId: string, data: CreateUserLoan, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any, {}>>;
8455
8155
  /**
8456
8156
  * No description
8457
8157
  *
@@ -8462,7 +8162,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8462
8162
  * @secure
8463
8163
  * @response `204` `LoanUser` No Content
8464
8164
  */
8465
- removeLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any>>;
8165
+ removeLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any, {}>>;
8466
8166
  /**
8467
8167
  * No description
8468
8168
  *
@@ -8473,7 +8173,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8473
8173
  * @secure
8474
8174
  * @response `204` `void` No Content
8475
8175
  */
8476
- sendLoanUserInviteReminderNotification: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8176
+ sendLoanUserInviteReminderNotification: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8477
8177
  /**
8478
8178
  * No description
8479
8179
  *
@@ -8491,7 +8191,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8491
8191
  pageNumber?: number;
8492
8192
  sortBy?: string;
8493
8193
  sortDirection?: string;
8494
- }, params?: RequestParams) => Promise<AxiosResponse<LosOperationTrackingPaginated, any>>;
8194
+ }, params?: RequestParams) => Promise<AxiosResponse<LosOperationTrackingPaginated, any, {}>>;
8495
8195
  /**
8496
8196
  * No description
8497
8197
  *
@@ -8502,7 +8202,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8502
8202
  * @secure
8503
8203
  * @response `200` `(MilestoneConfiguration)[]` Success
8504
8204
  */
8505
- getMilestones: (params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration[], any>>;
8205
+ getMilestones: (params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration[], any, {}>>;
8506
8206
  /**
8507
8207
  * No description
8508
8208
  *
@@ -8514,7 +8214,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8514
8214
  * @response `201` `MilestoneConfiguration` Created
8515
8215
  * @response `422` `UnprocessableEntity` Client Error
8516
8216
  */
8517
- createMilestone: (data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any>>;
8217
+ createMilestone: (data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any, {}>>;
8518
8218
  /**
8519
8219
  * No description
8520
8220
  *
@@ -8526,7 +8226,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8526
8226
  * @response `200` `MilestoneConfiguration` Success
8527
8227
  * @response `404` `Error` Not Found
8528
8228
  */
8529
- getMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any>>;
8229
+ getMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any, {}>>;
8530
8230
  /**
8531
8231
  * No description
8532
8232
  *
@@ -8539,7 +8239,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8539
8239
  * @response `404` `Error` Not Found
8540
8240
  * @response `422` `UnprocessableEntity` Client Error
8541
8241
  */
8542
- replaceMilestone: (id: string, data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any>>;
8242
+ replaceMilestone: (id: string, data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any, {}>>;
8543
8243
  /**
8544
8244
  * No description
8545
8245
  *
@@ -8551,7 +8251,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8551
8251
  * @response `204` `void` No Content
8552
8252
  * @response `404` `Error` Not Found
8553
8253
  */
8554
- deleteMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8254
+ deleteMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8555
8255
  /**
8556
8256
  * No description
8557
8257
  *
@@ -8563,7 +8263,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8563
8263
  * @response `200` `MonthlyPaymentCalculator` Success
8564
8264
  * @response `422` `ProblemDetails` Client Error
8565
8265
  */
8566
- calculateMortgageMonthlyPayment: (data: MonthlyPaymentCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<MonthlyPaymentCalculator, any>>;
8266
+ calculateMortgageMonthlyPayment: (data: MonthlyPaymentCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<MonthlyPaymentCalculator, any, {}>>;
8567
8267
  /**
8568
8268
  * No description
8569
8269
  *
@@ -8575,7 +8275,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8575
8275
  * @response `200` `AffordabilityCalculator` Success
8576
8276
  * @response `422` `ProblemDetails` Client Error
8577
8277
  */
8578
- calculateMortgageAffordability: (data: AffordabilityCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<AffordabilityCalculator, any>>;
8278
+ calculateMortgageAffordability: (data: AffordabilityCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<AffordabilityCalculator, any, {}>>;
8579
8279
  /**
8580
8280
  * No description
8581
8281
  *
@@ -8587,7 +8287,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8587
8287
  * @response `200` `LoanComparisonCalculator` Success
8588
8288
  * @response `422` `ProblemDetails` Client Error
8589
8289
  */
8590
- calculateMortgageLoanComparison: (data: LoanComparisonCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<LoanComparisonCalculator, any>>;
8290
+ calculateMortgageLoanComparison: (data: LoanComparisonCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<LoanComparisonCalculator, any, {}>>;
8591
8291
  /**
8592
8292
  * No description
8593
8293
  *
@@ -8599,7 +8299,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8599
8299
  * @response `200` `RefinanceCalculator` Success
8600
8300
  * @response `422` `ProblemDetails` Client Error
8601
8301
  */
8602
- calculateMortgageRefinance: (data: RefinanceCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<RefinanceCalculator, any>>;
8302
+ calculateMortgageRefinance: (data: RefinanceCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<RefinanceCalculator, any, {}>>;
8603
8303
  /**
8604
8304
  * No description
8605
8305
  *
@@ -8611,7 +8311,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8611
8311
  * @response `200` `void` Success
8612
8312
  * @response `422` `UnprocessableEntity` Client Error
8613
8313
  */
8614
- sendNotificationForLoan: (data: SendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8314
+ sendNotificationForLoan: (data: SendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8615
8315
  /**
8616
8316
  * No description
8617
8317
  *
@@ -8623,7 +8323,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8623
8323
  * @response `200` `void` Success
8624
8324
  * @response `422` `UnprocessableEntity` Client Error
8625
8325
  */
8626
- sendTestNotificationForLoan: (data: TestSendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8326
+ sendTestNotificationForLoan: (data: TestSendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8627
8327
  /**
8628
8328
  * No description
8629
8329
  *
@@ -8636,7 +8336,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8636
8336
  */
8637
8337
  getNotificationTemplates: (query?: {
8638
8338
  showAll?: boolean;
8639
- }, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateBase[], any>>;
8339
+ }, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateBase[], any, {}>>;
8640
8340
  /**
8641
8341
  * No description
8642
8342
  *
@@ -8648,7 +8348,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8648
8348
  * @response `201` `NotificationTemplate` Created
8649
8349
  * @response `422` `UnprocessableEntity` Client Error
8650
8350
  */
8651
- createNotificationTemplate: (data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
8351
+ createNotificationTemplate: (data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any, {}>>;
8652
8352
  /**
8653
8353
  * No description
8654
8354
  *
@@ -8666,7 +8366,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8666
8366
  pageNumber?: number;
8667
8367
  sortBy?: string;
8668
8368
  sortDirection?: string;
8669
- }, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateBasePaginated, any>>;
8369
+ }, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateBasePaginated, any, {}>>;
8670
8370
  /**
8671
8371
  * No description
8672
8372
  *
@@ -8677,7 +8377,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8677
8377
  * @secure
8678
8378
  * @response `200` `NotificationTemplate` Success
8679
8379
  */
8680
- getNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
8380
+ getNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any, {}>>;
8681
8381
  /**
8682
8382
  * No description
8683
8383
  *
@@ -8689,7 +8389,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8689
8389
  * @response `200` `NotificationTemplate` Success
8690
8390
  * @response `422` `UnprocessableEntity` Client Error
8691
8391
  */
8692
- replaceNotificationTemplate: (id: string, data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
8392
+ replaceNotificationTemplate: (id: string, data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any, {}>>;
8693
8393
  /**
8694
8394
  * No description
8695
8395
  *
@@ -8700,7 +8400,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8700
8400
  * @secure
8701
8401
  * @response `204` `void` No Content
8702
8402
  */
8703
- deleteNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8403
+ deleteNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8704
8404
  /**
8705
8405
  * No description
8706
8406
  *
@@ -8711,7 +8411,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8711
8411
  * @secure
8712
8412
  * @response `200` `NotificationTemplate` Success
8713
8413
  */
8714
- restoreNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
8414
+ restoreNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any, {}>>;
8715
8415
  /**
8716
8416
  * No description
8717
8417
  *
@@ -8722,7 +8422,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8722
8422
  * @secure
8723
8423
  * @response `200` `(NotificationTemplateVersion)[]` Success
8724
8424
  */
8725
- getNotificationTemplateVersions: (notificationId: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion[], any>>;
8425
+ getNotificationTemplateVersions: (notificationId: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion[], any, {}>>;
8726
8426
  /**
8727
8427
  * No description
8728
8428
  *
@@ -8733,7 +8433,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8733
8433
  * @secure
8734
8434
  * @response `200` `NotificationTemplateVersion` Success
8735
8435
  */
8736
- createNotificationTemplateVersion: (notificationId: string, data: NotificationTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
8436
+ createNotificationTemplateVersion: (notificationId: string, data: NotificationTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any, {}>>;
8737
8437
  /**
8738
8438
  * No description
8739
8439
  *
@@ -8744,7 +8444,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8744
8444
  * @secure
8745
8445
  * @response `200` `NotificationTemplateVersion` Success
8746
8446
  */
8747
- getNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
8447
+ getNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any, {}>>;
8748
8448
  /**
8749
8449
  * No description
8750
8450
  *
@@ -8755,7 +8455,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8755
8455
  * @secure
8756
8456
  * @response `200` `NotificationTemplateVersion` Success
8757
8457
  */
8758
- replaceNotificationTemplateVersion: (notificationId: string, id: string, data: NotificationTemplateVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
8458
+ replaceNotificationTemplateVersion: (notificationId: string, id: string, data: NotificationTemplateVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any, {}>>;
8759
8459
  /**
8760
8460
  * No description
8761
8461
  *
@@ -8766,7 +8466,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8766
8466
  * @secure
8767
8467
  * @response `200` `NotificationTemplateVersion` Success
8768
8468
  */
8769
- deleteNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
8469
+ deleteNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any, {}>>;
8770
8470
  /**
8771
8471
  * No description
8772
8472
  *
@@ -8780,14 +8480,14 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8780
8480
  getPartners: (query?: {
8781
8481
  showAll?: boolean;
8782
8482
  /** @default "Realtor" */
8783
- role?: "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
8483
+ role?: GetPartnersParamsRoleEnum;
8784
8484
  /** @format int32 */
8785
8485
  pageSize?: number;
8786
8486
  /** @format int32 */
8787
8487
  pageNumber?: number;
8788
8488
  sortBy?: string;
8789
8489
  sortDirection?: string;
8790
- }, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any>>;
8490
+ }, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any, {}>>;
8791
8491
  /**
8792
8492
  * No description
8793
8493
  *
@@ -8805,7 +8505,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8805
8505
  pageNumber?: number;
8806
8506
  sortBy?: string;
8807
8507
  sortDirection?: string;
8808
- }, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any>>;
8508
+ }, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any, {}>>;
8809
8509
  /**
8810
8510
  * No description
8811
8511
  *
@@ -8816,7 +8516,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8816
8516
  * @secure
8817
8517
  * @response `200` `BranchUser` Success
8818
8518
  */
8819
- getPartner: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any>>;
8519
+ getPartner: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any, {}>>;
8820
8520
  /**
8821
8521
  * No description
8822
8522
  *
@@ -8828,7 +8528,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8828
8528
  * @response `200` `SiteConfiguration` Success
8829
8529
  * @response `422` `UnprocessableEntity` Client Error
8830
8530
  */
8831
- createPartnerSiteConfiguration: (realtorId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
8531
+ createPartnerSiteConfiguration: (realtorId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
8832
8532
  /**
8833
8533
  * No description
8834
8534
  *
@@ -8839,7 +8539,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8839
8539
  * @secure
8840
8540
  * @response `200` `SiteConfigurationWithInherited` Success
8841
8541
  */
8842
- getPartnerSiteConfiguration: (realtorId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
8542
+ getPartnerSiteConfiguration: (realtorId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any, {}>>;
8843
8543
  /**
8844
8544
  * No description
8845
8545
  *
@@ -8853,7 +8553,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8853
8553
  */
8854
8554
  replacePartnerSiteConfiguration: (realtorId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
8855
8555
  applyToChildren?: boolean;
8856
- }, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
8556
+ }, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
8857
8557
  /**
8858
8558
  * No description
8859
8559
  *
@@ -8864,7 +8564,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8864
8564
  * @secure
8865
8565
  * @response `200` `SiteConfiguration` Success
8866
8566
  */
8867
- getSiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
8567
+ getSiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
8868
8568
  /**
8869
8569
  * No description
8870
8570
  *
@@ -8877,7 +8577,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8877
8577
  * @response `200` `SiteConfigurationByUrl` Success
8878
8578
  * @response `422` `UnprocessableEntity` Client Error
8879
8579
  */
8880
- searchSiteConfigurationByUrl: (data: GetSiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationByUrl, any>>;
8580
+ searchSiteConfigurationByUrl: (data: GetSiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationByUrl, any, {}>>;
8881
8581
  /**
8882
8582
  * No description
8883
8583
  *
@@ -8891,7 +8591,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8891
8591
  */
8892
8592
  getSiteConfigurationByUrl: (query?: {
8893
8593
  url?: string;
8894
- }, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationByUrl, any>>;
8594
+ }, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationByUrl, any, {}>>;
8895
8595
  /**
8896
8596
  * No description
8897
8597
  *
@@ -8904,7 +8604,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8904
8604
  * @response `200` `SiteConfiguration` Success
8905
8605
  * @response `422` `UnprocessableEntity` Client Error
8906
8606
  */
8907
- searchSiteConfigurationByLoanOfficerUser: (data: GetSiteConfigurationByLOUserIDRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
8607
+ searchSiteConfigurationByLoanOfficerUser: (data: GetSiteConfigurationByLOUserIDRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
8908
8608
  /**
8909
8609
  * No description
8910
8610
  *
@@ -8916,7 +8616,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8916
8616
  * @response `200` `SiteConfiguration` Success
8917
8617
  * @response `422` `UnprocessableEntity` Client Error
8918
8618
  */
8919
- getSiteConfigurationByLoanOfficerUser: (loUserId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
8619
+ getSiteConfigurationByLoanOfficerUser: (loUserId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
8920
8620
  /**
8921
8621
  * No description
8922
8622
  *
@@ -8935,7 +8635,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8935
8635
  pageNumber?: number;
8936
8636
  sortBy?: string;
8937
8637
  sortDirection?: string;
8938
- }, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationSummaryPaginated, any>>;
8638
+ }, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationSummaryPaginated, any, {}>>;
8939
8639
  /**
8940
8640
  * No description
8941
8641
  *
@@ -8946,7 +8646,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8946
8646
  * @secure
8947
8647
  * @response `200` `(AdminAccessGetForms)[]` Success
8948
8648
  */
8949
- getFormsBySiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms[], any>>;
8649
+ getFormsBySiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms[], any, {}>>;
8950
8650
  /**
8951
8651
  * No description
8952
8652
  *
@@ -8958,7 +8658,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8958
8658
  * @response `200` `File` Success
8959
8659
  * @response `404` `ProblemDetails` Not Found
8960
8660
  */
8961
- getSamlMetadata: (sSoIntegration: "ConsumerConnect" | "TheBigPOS" | "POSF", ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
8661
+ getSamlMetadata: (sSoIntegration: GetSamlMetadataParamsEnum, ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
8962
8662
  /**
8963
8663
  * No description
8964
8664
  *
@@ -8969,7 +8669,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8969
8669
  * @secure
8970
8670
  * @response `200` `File` Success
8971
8671
  */
8972
- createOrReplaceSamlMetadata: (sSoIntegration: "ConsumerConnect" | "TheBigPOS" | "POSF", ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
8672
+ createOrReplaceSamlMetadata: (sSoIntegration: CreateOrReplaceSamlMetadataParamsEnum, ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
8973
8673
  /**
8974
8674
  * No description
8975
8675
  *
@@ -8980,7 +8680,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8980
8680
  * @secure
8981
8681
  * @response `200` `(SiteConfigurationForm)[]` Success
8982
8682
  */
8983
- getWorkflowSiteConfigurations: (workflowId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm[], any>>;
8683
+ getWorkflowSiteConfigurations: (workflowId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm[], any, {}>>;
8984
8684
  /**
8985
8685
  * No description
8986
8686
  *
@@ -8992,7 +8692,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8992
8692
  * @response `200` `SiteConfigurationForm` Success
8993
8693
  * @response `404` `ProblemDetails` Not Found
8994
8694
  */
8995
- getWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any>>;
8695
+ getWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any, {}>>;
8996
8696
  /**
8997
8697
  * No description
8998
8698
  *
@@ -9005,7 +8705,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9005
8705
  * @response `409` `ProblemDetails` Conflict
9006
8706
  * @response `422` `UnprocessableEntity` Client Error
9007
8707
  */
9008
- createWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any>>;
8708
+ createWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any, {}>>;
9009
8709
  /**
9010
8710
  * No description
9011
8711
  *
@@ -9016,7 +8716,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9016
8716
  * @secure
9017
8717
  * @response `204` `void` No Content
9018
8718
  */
9019
- deleteWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8719
+ deleteWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9020
8720
  /**
9021
8721
  * No description
9022
8722
  *
@@ -9027,7 +8727,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9027
8727
  * @secure
9028
8728
  * @response `200` `GetForm` Success
9029
8729
  */
9030
- getFormBySiteConfigurationSlug: (data: GetSiteFormRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any>>;
8730
+ getFormBySiteConfigurationSlug: (data: GetSiteFormRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any, {}>>;
9031
8731
  /**
9032
8732
  * No description
9033
8733
  *
@@ -9041,7 +8741,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9041
8741
  getSurveysByUsers: (query?: {
9042
8742
  /** @format int32 */
9043
8743
  limit?: number;
9044
- }, params?: RequestParams) => Promise<AxiosResponse<SocialSurveyRecord[], any>>;
8744
+ }, params?: RequestParams) => Promise<AxiosResponse<SocialSurveyRecord[], any, {}>>;
9045
8745
  /**
9046
8746
  * No description
9047
8747
  *
@@ -9053,7 +8753,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9053
8753
  * @response `200` `(SocialSurveyRecord)[]` Success
9054
8754
  * @response `422` `UnprocessableEntity` Client Error
9055
8755
  */
9056
- getSurveysByUser: (data: SurveyEmailRequest, params?: RequestParams) => Promise<AxiosResponse<SocialSurveyRecord[], any>>;
8756
+ getSurveysByUser: (data: SurveyEmailRequest, params?: RequestParams) => Promise<AxiosResponse<SocialSurveyRecord[], any, {}>>;
9057
8757
  /**
9058
8758
  * No description
9059
8759
  *
@@ -9072,7 +8772,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9072
8772
  pageNumber?: number;
9073
8773
  sortBy?: string;
9074
8774
  sortDirection?: string;
9075
- }, params?: RequestParams) => Promise<AxiosResponse<Task, any>>;
8775
+ }, params?: RequestParams) => Promise<AxiosResponse<Task, any, {}>>;
9076
8776
  /**
9077
8777
  * No description
9078
8778
  *
@@ -9083,7 +8783,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9083
8783
  * @secure
9084
8784
  * @response `201` `Task` Created
9085
8785
  */
9086
- createTask: (data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<Task, any>>;
8786
+ createTask: (data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<Task, any, {}>>;
9087
8787
  /**
9088
8788
  * No description
9089
8789
  *
@@ -9095,7 +8795,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9095
8795
  * @response `200` `Task` Success
9096
8796
  * @response `404` `ProblemDetails` Not Found
9097
8797
  */
9098
- getTask: (id: string, params?: RequestParams) => Promise<AxiosResponse<Task, any>>;
8798
+ getTask: (id: string, params?: RequestParams) => Promise<AxiosResponse<Task, any, {}>>;
9099
8799
  /**
9100
8800
  * No description
9101
8801
  *
@@ -9107,7 +8807,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9107
8807
  * @response `200` `void` Success
9108
8808
  * @response `404` `ProblemDetails` Not Found
9109
8809
  */
9110
- replaceTask: (id: string, data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8810
+ replaceTask: (id: string, data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9111
8811
  /**
9112
8812
  * No description
9113
8813
  *
@@ -9119,7 +8819,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9119
8819
  * @response `204` `void` No Content
9120
8820
  * @response `404` `ProblemDetails` Not Found
9121
8821
  */
9122
- deleteTask: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8822
+ deleteTask: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9123
8823
  /**
9124
8824
  * No description
9125
8825
  *
@@ -9137,7 +8837,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9137
8837
  pageNumber?: number;
9138
8838
  sortBy?: string;
9139
8839
  sortDirection?: string;
9140
- }, params?: RequestParams) => Promise<AxiosResponse<TaskPaginated, any>>;
8840
+ }, params?: RequestParams) => Promise<AxiosResponse<TaskPaginated, any, {}>>;
9141
8841
  /**
9142
8842
  * No description
9143
8843
  *
@@ -9147,7 +8847,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9147
8847
  * @secure
9148
8848
  * @response `200` `void` Success
9149
8849
  */
9150
- integrationsLosLoansCreate: (data: LosLoanCreationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8850
+ integrationsLosLoansCreate: (data: LosLoanCreationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9151
8851
  /**
9152
8852
  * No description
9153
8853
  *
@@ -9164,7 +8864,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9164
8864
  pageNumber: number;
9165
8865
  sortBy?: string;
9166
8866
  sortDirection?: string;
9167
- }, data: EncompassLogSearchCriteria, params?: RequestParams) => Promise<AxiosResponse<EncompassRequestLogPaginated, any>>;
8867
+ }, data: EncompassLogSearchCriteria, params?: RequestParams) => Promise<AxiosResponse<EncompassRequestLogPaginated, any, {}>>;
9168
8868
  /**
9169
8869
  * No description
9170
8870
  *
@@ -9175,7 +8875,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9175
8875
  * @response `200` `EncompassCredentialsDetail` Success
9176
8876
  * @response `204` `void` No Content
9177
8877
  */
9178
- getEncompassCredentials: (params?: RequestParams) => Promise<AxiosResponse<EncompassCredentialsDetail, any>>;
8878
+ getEncompassCredentials: (params?: RequestParams) => Promise<AxiosResponse<EncompassCredentialsDetail, any, {}>>;
9179
8879
  /**
9180
8880
  * No description
9181
8881
  *
@@ -9185,7 +8885,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9185
8885
  * @secure
9186
8886
  * @response `201` `LosCredentials` Created
9187
8887
  */
9188
- createEncompassCredentials: (data: EncompassCredentialsRequest, params?: RequestParams) => Promise<AxiosResponse<LosCredentials, any>>;
8888
+ createEncompassCredentials: (data: EncompassCredentialsRequest, params?: RequestParams) => Promise<AxiosResponse<LosCredentials, any, {}>>;
9189
8889
  /**
9190
8890
  * No description
9191
8891
  *
@@ -9195,7 +8895,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9195
8895
  * @secure
9196
8896
  * @response `200` `EncompassCredentialsDetail` Success
9197
8897
  */
9198
- updateEncompassCredentials: (data: EncompassCredentialsRequest, params?: RequestParams) => Promise<AxiosResponse<EncompassCredentialsDetail, any>>;
8898
+ updateEncompassCredentials: (data: EncompassCredentialsRequest, params?: RequestParams) => Promise<AxiosResponse<EncompassCredentialsDetail, any, {}>>;
9199
8899
  /**
9200
8900
  * No description
9201
8901
  *
@@ -9205,7 +8905,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9205
8905
  * @secure
9206
8906
  * @response `200` `(LosWebhook)[]` Success
9207
8907
  */
9208
- getEncompassWebhooks: (params?: RequestParams) => Promise<AxiosResponse<LosWebhook[], any>>;
8908
+ getEncompassWebhooks: (params?: RequestParams) => Promise<AxiosResponse<LosWebhook[], any, {}>>;
9209
8909
  /**
9210
8910
  * No description
9211
8911
  *
@@ -9215,7 +8915,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9215
8915
  * @secure
9216
8916
  * @response `201` `LosWebhook` Created
9217
8917
  */
9218
- createEncompassWebhook: (data: CreateWebhookRequest, params?: RequestParams) => Promise<AxiosResponse<LosWebhook, any>>;
8918
+ createEncompassWebhook: (data: CreateWebhookRequest, params?: RequestParams) => Promise<AxiosResponse<LosWebhook, any, {}>>;
9219
8919
  /**
9220
8920
  * No description
9221
8921
  *
@@ -9225,24 +8925,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9225
8925
  * @secure
9226
8926
  * @response `204` `void` No Content
9227
8927
  */
9228
- deleteEncompassWebhook: (webhookId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9229
- /**
9230
- * No description
9231
- *
9232
- * @tags TheBigPOS
9233
- * @name SearchLosSyncs
9234
- * @request POST:/api/los/encompass/syncs/{loanId}/search
9235
- * @secure
9236
- * @response `200` `LosSyncPaginated` Success
9237
- */
9238
- searchLosSyncs: (loanId: string, query: {
9239
- /** @format int32 */
9240
- pageSize: number;
9241
- /** @format int32 */
9242
- pageNumber: number;
9243
- sortBy?: string;
9244
- sortDirection?: string;
9245
- }, data: LosSyncSearchCriteria, params?: RequestParams) => Promise<AxiosResponse<LosSyncPaginated, any>>;
8928
+ deleteEncompassWebhook: (webhookId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9246
8929
  /**
9247
8930
  * No description
9248
8931
  *
@@ -9254,7 +8937,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9254
8937
  * @response `200` `UsageReport` Success
9255
8938
  * @response `404` `ProblemDetails` Not Found
9256
8939
  */
9257
- getUsageReportById: (id: string, params?: RequestParams) => Promise<AxiosResponse<UsageReport, any>>;
8940
+ getUsageReportById: (id: string, params?: RequestParams) => Promise<AxiosResponse<UsageReport, any, {}>>;
9258
8941
  /**
9259
8942
  * No description
9260
8943
  *
@@ -9271,7 +8954,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9271
8954
  month?: number;
9272
8955
  /** @format int32 */
9273
8956
  year?: number;
9274
- }, params?: RequestParams) => Promise<AxiosResponse<UsageReport[], any>>;
8957
+ }, params?: RequestParams) => Promise<AxiosResponse<UsageReport[], any, {}>>;
9275
8958
  /**
9276
8959
  * No description
9277
8960
  *
@@ -9288,7 +8971,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9288
8971
  month?: number;
9289
8972
  /** @format int32 */
9290
8973
  year?: number;
9291
- }, params?: RequestParams) => Promise<AxiosResponse<any, any>>;
8974
+ }, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
9292
8975
  /**
9293
8976
  * No description
9294
8977
  *
@@ -9299,7 +8982,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9299
8982
  * @secure
9300
8983
  * @response `200` `UsageReportDashboard` Success
9301
8984
  */
9302
- getUsageReportDashboard: (params?: RequestParams) => Promise<AxiosResponse<UsageReportDashboard, any>>;
8985
+ getUsageReportDashboard: (params?: RequestParams) => Promise<AxiosResponse<UsageReportDashboard, any, {}>>;
9303
8986
  /**
9304
8987
  * No description
9305
8988
  *
@@ -9311,7 +8994,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9311
8994
  * @response `200` `UsageReportExecution` Success
9312
8995
  * @response `404` `ProblemDetails` Not Found
9313
8996
  */
9314
- getUsageReportExecution: (correlationId: string, params?: RequestParams) => Promise<AxiosResponse<UsageReportExecution, any>>;
8997
+ getUsageReportExecution: (correlationId: string, params?: RequestParams) => Promise<AxiosResponse<UsageReportExecution, any, {}>>;
9315
8998
  /**
9316
8999
  * No description
9317
9000
  *
@@ -9328,7 +9011,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9328
9011
  month?: number;
9329
9012
  /** @format int32 */
9330
9013
  year?: number;
9331
- }, params?: RequestParams) => Promise<AxiosResponse<UsageReportExecution[], any>>;
9014
+ }, params?: RequestParams) => Promise<AxiosResponse<UsageReportExecution[], any, {}>>;
9332
9015
  /**
9333
9016
  * No description
9334
9017
  *
@@ -9340,7 +9023,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9340
9023
  * @response `201` `UserDevice` Created
9341
9024
  * @response `400` `ProblemDetails` Bad Request
9342
9025
  */
9343
- createUserDevice: (data: CreateUserDeviceRequest, params?: RequestParams) => Promise<AxiosResponse<UserDevice, any>>;
9026
+ createUserDevice: (data: CreateUserDeviceRequest, params?: RequestParams) => Promise<AxiosResponse<UserDevice, any, {}>>;
9344
9027
  /**
9345
9028
  * No description
9346
9029
  *
@@ -9352,7 +9035,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9352
9035
  * @response `204` `void` No Content
9353
9036
  * @response `404` `ProblemDetails` Not Found
9354
9037
  */
9355
- deleteUserDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9038
+ deleteUserDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9356
9039
  /**
9357
9040
  * No description
9358
9041
  *
@@ -9370,7 +9053,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9370
9053
  pageNumber?: number;
9371
9054
  sortBy?: string;
9372
9055
  sortDirection?: string;
9373
- }, params?: RequestParams) => Promise<AxiosResponse<UserDraftPaginated, any>>;
9056
+ }, params?: RequestParams) => Promise<AxiosResponse<UserDraftPaginated, any, {}>>;
9374
9057
  /**
9375
9058
  * No description
9376
9059
  *
@@ -9381,7 +9064,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9381
9064
  * @secure
9382
9065
  * @response `200` `UserDraft` Success
9383
9066
  */
9384
- getDraftUser: (draftId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<UserDraft, any>>;
9067
+ getDraftUser: (draftId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<UserDraft, any, {}>>;
9385
9068
  /**
9386
9069
  * No description
9387
9070
  *
@@ -9392,7 +9075,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9392
9075
  * @secure
9393
9076
  * @response `200` `UserDraft` Success
9394
9077
  */
9395
- addDraftUsers: (draftId: string, userId: string, data: CreateUserDraft, params?: RequestParams) => Promise<AxiosResponse<UserDraft, any>>;
9078
+ addDraftUsers: (draftId: string, userId: string, data: CreateUserDraft, params?: RequestParams) => Promise<AxiosResponse<UserDraft, any, {}>>;
9396
9079
  /**
9397
9080
  * No description
9398
9081
  *
@@ -9403,7 +9086,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9403
9086
  * @secure
9404
9087
  * @response `204` `void` No Content
9405
9088
  */
9406
- deleteDraftUser: (draftId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9089
+ deleteDraftUser: (draftId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9407
9090
  /**
9408
9091
  * No description
9409
9092
  *
@@ -9414,7 +9097,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9414
9097
  * @secure
9415
9098
  * @response `200` `(UserGroupAccessScope)[]` Success
9416
9099
  */
9417
- getUserGroupAccessScopes: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope[], any>>;
9100
+ getUserGroupAccessScopes: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope[], any, {}>>;
9418
9101
  /**
9419
9102
  * No description
9420
9103
  *
@@ -9425,7 +9108,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9425
9108
  * @secure
9426
9109
  * @response `200` `UserGroupAccessScope` Success
9427
9110
  */
9428
- createUserGroupAccessScope: (groupId: string, data: CreateAccessScopeRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope, any>>;
9111
+ createUserGroupAccessScope: (groupId: string, data: CreateAccessScopeRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope, any, {}>>;
9429
9112
  /**
9430
9113
  * No description
9431
9114
  *
@@ -9436,7 +9119,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9436
9119
  * @secure
9437
9120
  * @response `204` `void` No Content
9438
9121
  */
9439
- deleteUserGroupAccessScope: (groupId: string, scopeId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9122
+ deleteUserGroupAccessScope: (groupId: string, scopeId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9440
9123
  /**
9441
9124
  * No description
9442
9125
  *
@@ -9447,7 +9130,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9447
9130
  * @secure
9448
9131
  * @response `200` `(UserGroupMember)[]` Success
9449
9132
  */
9450
- getUserGroupMembers: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupMember[], any>>;
9133
+ getUserGroupMembers: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupMember[], any, {}>>;
9451
9134
  /**
9452
9135
  * No description
9453
9136
  *
@@ -9461,7 +9144,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9461
9144
  createUserGroupMember: (groupId: string, data: CreateGroupMemberRequest, query?: {
9462
9145
  /** @format uuid */
9463
9146
  userId?: string;
9464
- }, params?: RequestParams) => Promise<AxiosResponse<UserGroupMember, any>>;
9147
+ }, params?: RequestParams) => Promise<AxiosResponse<UserGroupMember, any, {}>>;
9465
9148
  /**
9466
9149
  * No description
9467
9150
  *
@@ -9472,7 +9155,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9472
9155
  * @secure
9473
9156
  * @response `204` `void` No Content
9474
9157
  */
9475
- deleteUserGroupMember: (groupId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9158
+ deleteUserGroupMember: (groupId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9476
9159
  /**
9477
9160
  * No description
9478
9161
  *
@@ -9491,7 +9174,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9491
9174
  pageNumber?: number;
9492
9175
  sortBy?: string;
9493
9176
  sortDirection?: string;
9494
- }, params?: RequestParams) => Promise<AxiosResponse<UserGroupPaginated, any>>;
9177
+ }, params?: RequestParams) => Promise<AxiosResponse<UserGroupPaginated, any, {}>>;
9495
9178
  /**
9496
9179
  * No description
9497
9180
  *
@@ -9502,7 +9185,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9502
9185
  * @secure
9503
9186
  * @response `200` `UserGroup` Success
9504
9187
  */
9505
- getUserGroup: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any>>;
9188
+ getUserGroup: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any, {}>>;
9506
9189
  /**
9507
9190
  * No description
9508
9191
  *
@@ -9513,7 +9196,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9513
9196
  * @secure
9514
9197
  * @response `200` `UserGroup` Success
9515
9198
  */
9516
- updateUserGroup: (groupId: string, data: UpdateUserGroupRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any>>;
9199
+ updateUserGroup: (groupId: string, data: UpdateUserGroupRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any, {}>>;
9517
9200
  /**
9518
9201
  * No description
9519
9202
  *
@@ -9524,7 +9207,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9524
9207
  * @secure
9525
9208
  * @response `204` `void` No Content
9526
9209
  */
9527
- deleteUserGroup: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9210
+ deleteUserGroup: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9528
9211
  /**
9529
9212
  * No description
9530
9213
  *
@@ -9535,7 +9218,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9535
9218
  * @secure
9536
9219
  * @response `201` `UserGroup` Created
9537
9220
  */
9538
- createUserGroup: (data: CreateUserGroupRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any>>;
9221
+ createUserGroup: (data: CreateUserGroupRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any, {}>>;
9539
9222
  /**
9540
9223
  * No description
9541
9224
  *
@@ -9548,7 +9231,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9548
9231
  * @response `404` `Error` Not Found
9549
9232
  * @response `422` `UnprocessableEntity` Client Error
9550
9233
  */
9551
- requestImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9234
+ requestImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9552
9235
  /**
9553
9236
  * No description
9554
9237
  *
@@ -9561,7 +9244,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9561
9244
  * @response `404` `Error` Not Found
9562
9245
  * @response `422` `UnprocessableEntity` Client Error
9563
9246
  */
9564
- allowImpersonation: (data: AllowImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9247
+ allowImpersonation: (data: AllowImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9565
9248
  /**
9566
9249
  * No description
9567
9250
  *
@@ -9574,7 +9257,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9574
9257
  * @response `404` `Error` Not Found
9575
9258
  * @response `422` `UnprocessableEntity` Client Error
9576
9259
  */
9577
- allowImpersonationWithGuid: (allowToken: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9260
+ allowImpersonationWithGuid: (allowToken: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9578
9261
  /**
9579
9262
  * No description
9580
9263
  *
@@ -9586,7 +9269,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9586
9269
  * @response `204` `void` No Content
9587
9270
  * @response `422` `UnprocessableEntity` Client Error
9588
9271
  */
9589
- beginImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9272
+ beginImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9590
9273
  /**
9591
9274
  * No description
9592
9275
  *
@@ -9598,7 +9281,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9598
9281
  * @response `204` `void` No Content
9599
9282
  * @response `422` `UnprocessableEntity` Client Error
9600
9283
  */
9601
- stopImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9284
+ stopImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9602
9285
  /**
9603
9286
  * No description
9604
9287
  *
@@ -9611,7 +9294,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9611
9294
  * @response `404` `Error` Not Found
9612
9295
  * @response `422` `UnprocessableEntity` Client Error
9613
9296
  */
9614
- forceImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9297
+ forceImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9615
9298
  /**
9616
9299
  * No description
9617
9300
  *
@@ -9623,7 +9306,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9623
9306
  * @response `204` `void` No Content
9624
9307
  * @response `422` `UnprocessableEntity` Client Error
9625
9308
  */
9626
- extendImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9309
+ extendImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9627
9310
  /**
9628
9311
  * No description
9629
9312
  *
@@ -9635,7 +9318,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9635
9318
  * @response `204` `void` No Content
9636
9319
  * @response `422` `UnprocessableEntity` Client Error
9637
9320
  */
9638
- inviteUser: (data: CreateInviteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9321
+ inviteUser: (data: CreateInviteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9639
9322
  /**
9640
9323
  * No description
9641
9324
  *
@@ -9648,7 +9331,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9648
9331
  * @response `401` `UnprocessableEntity` Unauthorized
9649
9332
  * @response `404` `UnprocessableEntity` Not Found
9650
9333
  */
9651
- resendInviteNotification: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9334
+ resendInviteNotification: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9652
9335
  /**
9653
9336
  * No description
9654
9337
  *
@@ -9660,7 +9343,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9660
9343
  * @response `200` `Invite` Success
9661
9344
  * @response `422` `UnprocessableEntity` Client Error
9662
9345
  */
9663
- verifyUserInvite: (token: string, params?: RequestParams) => Promise<AxiosResponse<Invite, any>>;
9346
+ verifyUserInvite: (token: string, params?: RequestParams) => Promise<AxiosResponse<Invite, any, {}>>;
9664
9347
  /**
9665
9348
  * No description
9666
9349
  *
@@ -9671,7 +9354,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9671
9354
  * @secure
9672
9355
  * @response `200` `(UserRelation)[]` Success
9673
9356
  */
9674
- getUserRelations: (userId: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation[], any>>;
9357
+ getUserRelations: (userId: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation[], any, {}>>;
9675
9358
  /**
9676
9359
  * No description
9677
9360
  *
@@ -9682,7 +9365,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9682
9365
  * @secure
9683
9366
  * @response `204` `void` No Content
9684
9367
  */
9685
- createUserRelation: (userId: string, data: CreateUserRelationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9368
+ createUserRelation: (userId: string, data: CreateUserRelationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9686
9369
  /**
9687
9370
  * No description
9688
9371
  *
@@ -9693,7 +9376,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9693
9376
  * @secure
9694
9377
  * @response `200` `UserRelation` Success
9695
9378
  */
9696
- getUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation, any>>;
9379
+ getUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation, any, {}>>;
9697
9380
  /**
9698
9381
  * No description
9699
9382
  *
@@ -9704,7 +9387,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9704
9387
  * @secure
9705
9388
  * @response `204` `void` No Content
9706
9389
  */
9707
- deleteUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9390
+ deleteUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9708
9391
  /**
9709
9392
  * No description
9710
9393
  *
@@ -9722,7 +9405,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9722
9405
  pageNumber?: number;
9723
9406
  sortBy?: string;
9724
9407
  sortDirection?: string;
9725
- }, params?: RequestParams) => Promise<AxiosResponse<User[], any>>;
9408
+ }, params?: RequestParams) => Promise<AxiosResponse<User[], any, {}>>;
9726
9409
  /**
9727
9410
  * No description
9728
9411
  *
@@ -9734,7 +9417,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9734
9417
  * @response `200` `DetailedUser` Success
9735
9418
  * @response `422` `UnprocessableEntity` Client Error
9736
9419
  */
9737
- createUser: (data: CreateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
9420
+ createUser: (data: CreateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any, {}>>;
9738
9421
  /**
9739
9422
  * No description
9740
9423
  *
@@ -9752,7 +9435,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9752
9435
  pageNumber?: number;
9753
9436
  sortBy?: string;
9754
9437
  sortDirection?: string;
9755
- }, params?: RequestParams) => Promise<AxiosResponse<UserPaginated, any>>;
9438
+ }, params?: RequestParams) => Promise<AxiosResponse<UserPaginated, any, {}>>;
9756
9439
  /**
9757
9440
  * No description
9758
9441
  *
@@ -9763,7 +9446,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9763
9446
  * @secure
9764
9447
  * @response `200` `AdminAccessUser` Success
9765
9448
  */
9766
- getUserByEmail: (data: GetUserByEmailRequest, params?: RequestParams) => Promise<AxiosResponse<AdminAccessUser, any>>;
9449
+ getUserByEmail: (data: GetUserByEmailRequest, params?: RequestParams) => Promise<AxiosResponse<AdminAccessUser, any, {}>>;
9767
9450
  /**
9768
9451
  * No description
9769
9452
  *
@@ -9775,7 +9458,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9775
9458
  * @response `200` `User` Success
9776
9459
  * @response `422` `UnprocessableEntity` Client Error
9777
9460
  */
9778
- signUp: (data: RegisterUserRequest, params?: RequestParams) => Promise<AxiosResponse<User, any>>;
9461
+ signUp: (data: RegisterUserRequest, params?: RequestParams) => Promise<AxiosResponse<User, any, {}>>;
9779
9462
  /**
9780
9463
  * No description
9781
9464
  *
@@ -9787,7 +9470,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9787
9470
  * @response `200` `DetailedUser` Success
9788
9471
  * @response `422` `UnprocessableEntity` Client Error
9789
9472
  */
9790
- replaceUser: (id: string, data: UpdateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
9473
+ replaceUser: (id: string, data: UpdateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any, {}>>;
9791
9474
  /**
9792
9475
  * No description
9793
9476
  *
@@ -9801,7 +9484,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9801
9484
  deleteUser: (id: string, query?: {
9802
9485
  /** @default false */
9803
9486
  permanent?: boolean;
9804
- }, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9487
+ }, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9805
9488
  /**
9806
9489
  * No description
9807
9490
  *
@@ -9812,7 +9495,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9812
9495
  * @secure
9813
9496
  * @response `204` `void` No Content
9814
9497
  */
9815
- restoreUser: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9498
+ restoreUser: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9816
9499
  /**
9817
9500
  * No description
9818
9501
  *
@@ -9824,7 +9507,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9824
9507
  * @response `204` `void` No Content
9825
9508
  * @response `422` `UnprocessableEntity` Client Error
9826
9509
  */
9827
- changePassword: (data: ChangePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9510
+ changePassword: (data: ChangePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9828
9511
  /**
9829
9512
  * No description
9830
9513
  *
@@ -9836,7 +9519,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9836
9519
  * @response `204` `void` No Content
9837
9520
  * @response `422` `UnprocessableEntity` Client Error
9838
9521
  */
9839
- verifyPassword: (data: VerifyPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9522
+ verifyPassword: (data: VerifyPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9840
9523
  /**
9841
9524
  * No description
9842
9525
  *
@@ -9848,7 +9531,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9848
9531
  * @response `204` `void` No Content
9849
9532
  * @response `422` `UnprocessableEntity` Client Error
9850
9533
  */
9851
- overridePassword: (id: string, data: OverridePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9534
+ overridePassword: (id: string, data: OverridePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9852
9535
  /**
9853
9536
  * No description
9854
9537
  *
@@ -9860,7 +9543,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9860
9543
  * @response `204` `void` No Content
9861
9544
  * @response `422` `UnprocessableEntity` Client Error
9862
9545
  */
9863
- forgotPassword: (data: SendForgotPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9546
+ forgotPassword: (data: SendForgotPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9864
9547
  /**
9865
9548
  * No description
9866
9549
  *
@@ -9872,7 +9555,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9872
9555
  * @response `204` `void` No Content
9873
9556
  * @response `422` `UnprocessableEntity` Client Error
9874
9557
  */
9875
- sendMobilePhoneVerificationCode: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9558
+ sendMobilePhoneVerificationCode: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9876
9559
  /**
9877
9560
  * No description
9878
9561
  *
@@ -9884,7 +9567,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9884
9567
  * @response `204` `void` No Content
9885
9568
  * @response `422` `UnprocessableEntity` Client Error
9886
9569
  */
9887
- verifyUserMobilePhone: (data: UserMobilePhoneVerificationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9570
+ verifyUserMobilePhone: (data: UserMobilePhoneVerificationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9888
9571
  /**
9889
9572
  * No description
9890
9573
  *
@@ -9896,7 +9579,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9896
9579
  * @response `200` `ImpersonatedDetailedUser` Success
9897
9580
  * @response `401` `ProblemDetails` Unauthorized
9898
9581
  */
9899
- getMe: (params?: RequestParams) => Promise<AxiosResponse<ImpersonatedDetailedUser, any>>;
9582
+ getMe: (params?: RequestParams) => Promise<AxiosResponse<ImpersonatedDetailedUser, any, {}>>;
9900
9583
  /**
9901
9584
  * No description
9902
9585
  *
@@ -9907,7 +9590,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9907
9590
  * @secure
9908
9591
  * @response `200` `DetailedUser` Success
9909
9592
  */
9910
- replaceMe: (data: UpdateMeRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
9593
+ replaceMe: (data: UpdateMeRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any, {}>>;
9911
9594
  /**
9912
9595
  * @description Update the phone number If changed will send a verification code to the new number
9913
9596
  *
@@ -9918,7 +9601,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9918
9601
  * @secure
9919
9602
  * @response `204` `DetailedUser` No Content
9920
9603
  */
9921
- updateMyPhone: (data: UpdateMobilePhoneRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
9604
+ updateMyPhone: (data: UpdateMobilePhoneRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any, {}>>;
9922
9605
  /**
9923
9606
  * No description
9924
9607
  *
@@ -9929,7 +9612,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9929
9612
  * @secure
9930
9613
  * @response `200` `(UserRelationship)[]` Success
9931
9614
  */
9932
- getMyRelationships: (params?: RequestParams) => Promise<AxiosResponse<UserRelationship[], any>>;
9615
+ getMyRelationships: (params?: RequestParams) => Promise<AxiosResponse<UserRelationship[], any, {}>>;
9933
9616
  /**
9934
9617
  * No description
9935
9618
  *
@@ -9940,7 +9623,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9940
9623
  * @secure
9941
9624
  * @response `200` `(UserRelationshipProspect)[]` Success
9942
9625
  */
9943
- getMyRelationshipProspects: (params?: RequestParams) => Promise<AxiosResponse<UserRelationshipProspect[], any>>;
9626
+ getMyRelationshipProspects: (params?: RequestParams) => Promise<AxiosResponse<UserRelationshipProspect[], any, {}>>;
9944
9627
  /**
9945
9628
  * No description
9946
9629
  *
@@ -9951,7 +9634,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9951
9634
  * @secure
9952
9635
  * @response `204` `void` No Content
9953
9636
  */
9954
- deleteRelationshipProspect: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9637
+ deleteRelationshipProspect: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9955
9638
  /**
9956
9639
  * No description
9957
9640
  *
@@ -9962,7 +9645,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9962
9645
  * @secure
9963
9646
  * @response `204` `void` No Content
9964
9647
  */
9965
- deleteMe: (data: UserAccountDeletionRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9648
+ deleteMe: (data: UserAccountDeletionRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9966
9649
  /**
9967
9650
  * No description
9968
9651
  *
@@ -9973,7 +9656,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9973
9656
  * @secure
9974
9657
  * @response `200` `GetForm` Success
9975
9658
  */
9976
- getWorkflow: (data: GetWorkflowRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any>>;
9659
+ getWorkflow: (data: GetWorkflowRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any, {}>>;
9977
9660
  };
9978
9661
  sso: {
9979
9662
  /**
@@ -9985,6 +9668,6 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9985
9668
  * @secure
9986
9669
  * @response `200` `void` Success
9987
9670
  */
9988
- logoutList: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9671
+ logoutList: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9989
9672
  };
9990
9673
  }