@matech/thebigpos-sdk 2.37.6-aibi-11 → 2.37.8

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
@@ -55,14 +55,6 @@ export type BorrowerRelationship = "NotApplicable" | "Spouse" | "NonSpouse";
55
55
  export type BorrowerApplicationStatus = "Draft" | "Complete";
56
56
  export type BillingType = "ClosedLoan" | "LoanOfficer";
57
57
  export type AuditChangeType = "Created" | "Modified" | "SoftDeleted" | "HardDeleted" | "Restored";
58
- export type AiStructuredDataType = "Table" | "DocumentAnalysis" | "DocumentList" | "GeneratedDocument";
59
- export type AiQueryTemplateName = "PipelineSummary" | "LoanDetail" | "LoansClosing" | "StaleLoans" | "LoansByType" | "LoansByOfficer" | "AverageLoanAmount" | "LockedVsUnlocked" | "LoansByPurpose" | "LoansByPropertyState" | "LoansByRate" | "DtiLtvRisk" | "DisclosureTracking" | "NewLoans" | "ExpiringLocks" | "ClosedLoans";
60
- export type AiPromptCategory = "DocumentAnalysis" | "DataQuery" | "General" | "Action";
61
- export type AiOutputType = "Text" | "Document";
62
- export type AiIntent = "Greeting" | "Invalid" | "Relevant" | "LoanSpecific" | "DocumentList" | "GeneralKnowledge" | "Blocked" | "Action";
63
- export type AiGuardrailCategory = "ContentSafety" | "PromptInjection" | "Privacy" | "Legal";
64
- export type AiDisplayHint = "Table" | "SummaryCards" | "RankedList" | "Comparison" | "ExecutiveBrief";
65
- export type AiAuditEventType = "Error" | "GuardrailBlockedPre" | "GuardrailPassedPre" | "IntentClassified" | "LoanResolvedFromMessage" | "DocumentNotFound" | "GuardrailBlockedPost" | "GuardrailPassedPost" | "DocumentAnalyzed" | "DocumentList" | "DocumentResolutionAmbiguous" | "ResponseGenerated" | "ParametersExtracted" | "QueryExecuted" | "LoanContextNotFound" | "LoanContextLoaded" | "GuardrailBlockedBedrock" | "PromptMatched";
66
58
  export type AddressFamily = "Unspecified" | "Unix" | "InterNetwork" | "ImpLink" | "Pup" | "Chaos" | "NS" | "Ipx" | "Iso" | "Osi" | "Ecma" | "DataKit" | "Ccitt" | "Sna" | "DecNet" | "DataLink" | "Lat" | "HyperChannel" | "AppleTalk" | "NetBios" | "VoiceView" | "FireFox" | "Banyan" | "Atm" | "InterNetworkV6" | "Cluster" | "Ieee12844" | "Irda" | "NetworkDesigners" | "Max" | "Packet" | "ControllerAreaNetwork" | "Unknown";
67
59
  export interface ASOSettings {
68
60
  enabled: boolean;
@@ -113,7 +105,7 @@ export interface AccountBilling {
113
105
  contractedRate: number;
114
106
  }
115
107
  export interface AccountBillingRequest {
116
- billingType: "ClosedLoan" | "LoanOfficer";
108
+ billingType: AccountBillingRequestBillingTypeEnum;
117
109
  /**
118
110
  * @format double
119
111
  * @min 0
@@ -127,7 +119,6 @@ export interface AccountSettings {
127
119
  smsNumber?: string | null;
128
120
  ssoHostOverride?: string | null;
129
121
  isEarlyAdopter: boolean;
130
- isAIEnabled: boolean;
131
122
  }
132
123
  export interface AccountSettingsRequest {
133
124
  isSmsEnabled: boolean;
@@ -327,206 +318,6 @@ export interface AffordabilityCalculatorRequest {
327
318
  */
328
319
  annualInsurance: number;
329
320
  }
330
- export interface AiAdminStats {
331
- /** @format int32 */
332
- totalRequests: number;
333
- /** @format int32 */
334
- blockedRequests: number;
335
- /** @format double */
336
- averageResponseTimeMs: number;
337
- intentDistribution: Record<string, number>;
338
- topQueryTemplates: Record<string, number>;
339
- period: string;
340
- }
341
- export interface AiAuditLog {
342
- /** @format uuid */
343
- id: string;
344
- /** @format uuid */
345
- requestId: string;
346
- /** @format uuid */
347
- userId: string;
348
- eventType: "Error" | "GuardrailBlockedPre" | "GuardrailPassedPre" | "IntentClassified" | "LoanResolvedFromMessage" | "DocumentNotFound" | "GuardrailBlockedPost" | "GuardrailPassedPost" | "DocumentAnalyzed" | "DocumentList" | "DocumentResolutionAmbiguous" | "ResponseGenerated" | "ParametersExtracted" | "QueryExecuted" | "LoanContextNotFound" | "LoanContextLoaded" | "GuardrailBlockedBedrock" | "PromptMatched";
349
- details?: any;
350
- /** @format date-time */
351
- createdAt: string;
352
- }
353
- export interface AiAuditLogPaginated {
354
- rows: AiAuditLog[];
355
- pagination: Pagination;
356
- /** @format int64 */
357
- count: number;
358
- }
359
- export interface AiCanonicalField {
360
- /** @format uuid */
361
- id: string;
362
- canonicalName: string;
363
- displayName: string;
364
- description: string;
365
- allowedRoles: string[];
366
- efPath?: string | null;
367
- isPii: boolean;
368
- isActive: boolean;
369
- dataSource: string;
370
- isDefault: boolean;
371
- category?: string | null;
372
- jsonPropertyName?: string | null;
373
- textractKey?: string | null;
374
- textractKeyAliases?: string | null;
375
- hasAccountOverride: boolean;
376
- /** @format date-time */
377
- createdAt: string;
378
- /** @format date-time */
379
- updatedAt?: string | null;
380
- }
381
- export interface AiChat {
382
- /** @format uuid */
383
- conversationId: string;
384
- /** @format uuid */
385
- messageId: string;
386
- response: AiChatBody;
387
- metadata: AiChatMetadata;
388
- }
389
- export interface AiChatBody {
390
- text: string;
391
- data?: AiChatStructuredData | null;
392
- suggestedFollowUps: string[];
393
- }
394
- export interface AiChatMessage {
395
- /** @format uuid */
396
- id: string;
397
- userMessage: string;
398
- assistantResponse: string;
399
- intent?: AiIntent | null;
400
- fieldsAccessed?: string[] | null;
401
- /** @format date-time */
402
- createdAt: string;
403
- }
404
- export interface AiChatMetadata {
405
- intent: "Greeting" | "Invalid" | "Relevant" | "LoanSpecific" | "DocumentList" | "GeneralKnowledge" | "Blocked" | "Action";
406
- fieldsAccessed: string[];
407
- /** @format int64 */
408
- queryTimeMs: number;
409
- /** @format int64 */
410
- llmTimeMs: number;
411
- wasBlocked: boolean;
412
- blockedReason?: string | null;
413
- }
414
- export interface AiChatRequest {
415
- /**
416
- * @minLength 1
417
- * @maxLength 2000
418
- */
419
- message: string;
420
- /** @format uuid */
421
- conversationId?: string | null;
422
- /** @format uuid */
423
- loanId?: string | null;
424
- documentIds?: string[] | null;
425
- /** @format uuid */
426
- promptId?: string | null;
427
- }
428
- export interface AiChatStructuredData {
429
- type: "Table" | "DocumentAnalysis" | "DocumentList" | "GeneratedDocument";
430
- displayHint?: AiDisplayHint | null;
431
- detectedDocumentType?: string | null;
432
- columns: string[];
433
- rows: string[][];
434
- /** @format uuid */
435
- generatedDocumentId?: string | null;
436
- generatedFileName?: string | null;
437
- }
438
- export interface AiConversationDetail {
439
- /** @format uuid */
440
- id: string;
441
- /** @format date-time */
442
- createdAt: string;
443
- /** @format date-time */
444
- updatedAt?: string | null;
445
- messages: AiChatMessage[];
446
- }
447
- export interface AiConversationListItem {
448
- /** @format uuid */
449
- id: string;
450
- preview: string;
451
- /** @format int32 */
452
- messageCount: number;
453
- /** @format date-time */
454
- createdAt: string;
455
- /** @format date-time */
456
- updatedAt?: string | null;
457
- }
458
- export interface AiConversationListItemPaginated {
459
- rows: AiConversationListItem[];
460
- pagination: Pagination;
461
- /** @format int64 */
462
- count: number;
463
- }
464
- export interface AiGuardrail {
465
- /** @format uuid */
466
- id: string;
467
- name: string;
468
- category: "ContentSafety" | "PromptInjection" | "Privacy" | "Legal";
469
- description?: string | null;
470
- keywords: string[];
471
- responseTemplate: string;
472
- isDefault: boolean;
473
- isEnabled: boolean;
474
- hasAccountOverride: boolean;
475
- /** @format date-time */
476
- createdAt: string;
477
- /** @format date-time */
478
- updatedAt?: string | null;
479
- }
480
- export interface AiPrompt {
481
- /** @format uuid */
482
- id: string;
483
- title: string;
484
- icon: string;
485
- slug: string;
486
- description: string;
487
- documentTypes: string[];
488
- applicableGuidelines: string[];
489
- allowedRoles: string[];
490
- systemPrompt: string;
491
- userPromptTemplate: string;
492
- followUpPrompts: string[];
493
- /** @format int32 */
494
- sortOrder: number;
495
- isDefault: boolean;
496
- /** @format uuid */
497
- accountId?: string | null;
498
- isActive: boolean;
499
- category?: AiPromptCategory | null;
500
- queryTemplateName?: AiQueryTemplateName | null;
501
- displayHint?: AiDisplayHint | null;
502
- bedrockModelId?: string | null;
503
- requiredDataSources?: string[] | null;
504
- outputType?: AiOutputType | null;
505
- hasAccountOverride: boolean;
506
- /** @format date-time */
507
- createdAt: string;
508
- /** @format date-time */
509
- updatedAt?: string | null;
510
- }
511
- export interface AiPromptSummary {
512
- /** @format uuid */
513
- id: string;
514
- title: string;
515
- icon: string;
516
- slug: string;
517
- description: string;
518
- documentTypes: string[];
519
- applicableGuidelines: string[];
520
- followUpPrompts: string[];
521
- /** @format int32 */
522
- sortOrder: number;
523
- category?: AiPromptCategory | null;
524
- queryTemplateName?: AiQueryTemplateName | null;
525
- displayHint?: AiDisplayHint | null;
526
- bedrockModelId?: string | null;
527
- requiredDataSources?: string[] | null;
528
- outputType?: AiOutputType | null;
529
- }
530
321
  export interface AllowImpersonationRequest {
531
322
  /**
532
323
  * @format email
@@ -629,10 +420,13 @@ export interface AuditLogEntry {
629
420
  /** @format uuid */
630
421
  id: string;
631
422
  entityType: string;
632
- changeType: "Created" | "Modified" | "SoftDeleted" | "HardDeleted" | "Restored";
423
+ changeType: AuditLogEntryChangeTypeEnum;
633
424
  /** @format uuid */
634
425
  entityId: string;
635
426
  performedBy?: AuditLogUser | null;
427
+ rootEntityType?: string | null;
428
+ /** @format uuid */
429
+ rootEntityId?: string | null;
636
430
  changes?: any;
637
431
  /** @format date-time */
638
432
  createdAt: string;
@@ -654,6 +448,9 @@ export interface AuditLogSearchCriteria {
654
448
  startDate?: string | null;
655
449
  /** @format date-time */
656
450
  endDate?: string | null;
451
+ rootEntityType?: string | null;
452
+ /** @format uuid */
453
+ rootEntityId?: string | null;
657
454
  }
658
455
  export interface AuditLogUser {
659
456
  /** @format uuid */
@@ -886,7 +683,7 @@ export interface CorporateSearchCriteria {
886
683
  isActive?: boolean | null;
887
684
  }
888
685
  export interface CreateAccessScopeRequest {
889
- scopeType: "User" | "Branch";
686
+ scopeType: CreateAccessScopeRequestScopeTypeEnum;
890
687
  /** @format uuid */
891
688
  userId?: string | null;
892
689
  /** @format uuid */
@@ -909,72 +706,10 @@ export interface CreateAccountRequest {
909
706
  */
910
707
  nlmsid: number;
911
708
  settings: AccountSettingsRequest;
912
- environment: "Development" | "Staging" | "UAT" | "Production";
709
+ environment: CreateAccountRequestEnvironmentEnum;
913
710
  losIntegration: LOSIntegration;
914
711
  billingSettings: AccountBillingRequest;
915
712
  }
916
- export interface CreateAiCanonicalFieldRequest {
917
- /**
918
- * @minLength 1
919
- * @maxLength 200
920
- */
921
- displayName: string;
922
- /** @minLength 1 */
923
- description: string;
924
- /** @minItems 1 */
925
- allowedRoles: string[];
926
- isPii: boolean;
927
- /** @minLength 1 */
928
- dataSource: string;
929
- category?: string | null;
930
- }
931
- export interface CreateAiGuardrailRequest {
932
- /**
933
- * @minLength 1
934
- * @maxLength 200
935
- */
936
- name: string;
937
- category: "ContentSafety" | "PromptInjection" | "Privacy" | "Legal";
938
- description?: string | null;
939
- /** @minItems 1 */
940
- keywords: string[];
941
- /** @minLength 1 */
942
- responseTemplate: string;
943
- }
944
- export interface CreateAiPromptRequest {
945
- /**
946
- * @minLength 1
947
- * @maxLength 200
948
- */
949
- title: string;
950
- icon: string;
951
- /**
952
- * @minLength 1
953
- * @maxLength 100
954
- */
955
- slug: string;
956
- /**
957
- * @minLength 1
958
- * @maxLength 500
959
- */
960
- description: string;
961
- documentTypes: string[];
962
- applicableGuidelines: string[];
963
- allowedRoles: string[];
964
- /** @minLength 1 */
965
- systemPrompt: string;
966
- /** @minLength 1 */
967
- userPromptTemplate: string;
968
- followUpPrompts: string[];
969
- /** @format int32 */
970
- sortOrder: number;
971
- category?: AiPromptCategory | null;
972
- queryTemplateName?: AiQueryTemplateName | null;
973
- displayHint?: AiDisplayHint | null;
974
- bedrockModelId?: string | null;
975
- requiredDataSources?: string[] | null;
976
- outputType?: AiOutputType | null;
977
- }
978
713
  export interface CreateBranchRequest {
979
714
  /**
980
715
  * @minLength 1
@@ -1001,7 +736,7 @@ export interface CreateDocumentTemplateRequest {
1001
736
  export interface CreateGroupMemberRequest {
1002
737
  /** @format uuid */
1003
738
  userId: string;
1004
- loanRole: "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
739
+ loanRole: CreateGroupMemberRequestLoanRoleEnum;
1005
740
  }
1006
741
  export interface CreateInviteRequest {
1007
742
  /** @minLength 1 */
@@ -1012,7 +747,7 @@ export interface CreateInviteRequest {
1012
747
  emailAddress: string;
1013
748
  phoneNumber?: string | null;
1014
749
  /** @deprecated */
1015
- relationship: "NotApplicable" | "Spouse" | "NonSpouse";
750
+ relationship: CreateInviteRequestRelationshipEnum;
1016
751
  loanID: string;
1017
752
  route?: string | null;
1018
753
  /** @format uuid */
@@ -1034,7 +769,7 @@ export interface CreateLoanImportRequest {
1034
769
  * @minLength 1
1035
770
  */
1036
771
  startDate: string;
1037
- importMode: "All" | "NewOnly" | "UpdateOnly";
772
+ importMode: CreateLoanImportRequestImportModeEnum;
1038
773
  }
1039
774
  export interface CreateSession {
1040
775
  sessionId: string;
@@ -1052,7 +787,7 @@ export interface CreateUserDeviceRequest {
1052
787
  token: string;
1053
788
  }
1054
789
  export interface CreateUserDraft {
1055
- loanRole: "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
790
+ loanRole: CreateUserDraftLoanRoleEnum;
1056
791
  }
1057
792
  export interface CreateUserGroupRequest {
1058
793
  /**
@@ -1344,7 +1079,7 @@ export interface Draft {
1344
1079
  siteConfiguration: SiteConfigurationReduced;
1345
1080
  /** @format uuid */
1346
1081
  loanID?: string | null;
1347
- type: "NewLoan" | "EditLoan";
1082
+ type: DraftTypeEnum;
1348
1083
  isCoBorrower: boolean;
1349
1084
  }
1350
1085
  export interface DraftContent {
@@ -1362,7 +1097,7 @@ export interface DraftContent {
1362
1097
  siteConfiguration: SiteConfigurationReduced;
1363
1098
  /** @format uuid */
1364
1099
  loanID?: string | null;
1365
- type: "NewLoan" | "EditLoan";
1100
+ type: DraftContentTypeEnum;
1366
1101
  isCoBorrower: boolean;
1367
1102
  applicationPayload: any;
1368
1103
  }
@@ -1379,6 +1114,7 @@ export interface DraftLoanOfficerReassignRequest {
1379
1114
  export interface DraftRequest {
1380
1115
  applicationPayload: any;
1381
1116
  customData?: any;
1117
+ isCoBorrower: boolean;
1382
1118
  }
1383
1119
  export interface EConsentInformation {
1384
1120
  status: string;
@@ -1475,14 +1211,24 @@ export interface EncompassPackageList {
1475
1211
  /** @format int32 */
1476
1212
  totalPages: number;
1477
1213
  }
1214
+ export interface EncompassRecipientItem {
1215
+ /** @format uuid */
1216
+ id: string;
1217
+ /** @format uuid */
1218
+ packageId: string;
1219
+ recipientId: string;
1220
+ status: string;
1221
+ /** @format date-time */
1222
+ createdAt: string;
1223
+ }
1478
1224
  export interface EncompassRequestLog {
1479
1225
  /** @format uuid */
1480
1226
  id: string;
1481
1227
  losId?: string | null;
1482
1228
  /** @format uuid */
1483
1229
  accountId: string;
1484
- operationType: "FieldUpdate" | "EConsentUpdate" | "DocumentSync" | "MilestoneUpdate" | "DocumentAttachment" | "General" | "FieldReader";
1485
- outcome: "Success" | "Failure" | "PartialSuccess";
1230
+ operationType: EncompassRequestLogOperationTypeEnum;
1231
+ outcome: EncompassRequestLogOutcomeEnum;
1486
1232
  message: string;
1487
1233
  endpoint?: string | null;
1488
1234
  httpMethod?: string | null;
@@ -1533,7 +1279,7 @@ export interface FileSearchCriteria {
1533
1279
  export interface FileWithBytes {
1534
1280
  name: string;
1535
1281
  /** @format byte */
1536
- data: string;
1282
+ data: Blob;
1537
1283
  fileName: string;
1538
1284
  mimeType?: string | null;
1539
1285
  extension?: string | null;
@@ -1699,7 +1445,7 @@ export interface FusionFieldDisplay {
1699
1445
  fieldValue: string;
1700
1446
  }
1701
1447
  export interface FusionReportFilter {
1702
- filterType: "DateGreaterThanOrEqualTo" | "DateGreaterThan" | "DateLessThan" | "DateLessThanOrEqualTo" | "DateEquals" | "DateDoesntEqual" | "DateNonEmpty" | "DateEmpty" | "StringContains" | "StringEquals" | "StringNotEmpty" | "StringNotEquals" | "StringNotContains";
1448
+ filterType: FusionReportFilterFilterTypeEnum;
1703
1449
  targetField: string;
1704
1450
  targetValue: string;
1705
1451
  }
@@ -1719,17 +1465,6 @@ export interface GenerateDocumentRequest {
1719
1465
  preview: boolean;
1720
1466
  recipients: string[];
1721
1467
  }
1722
- export interface GenerateSystemPrompt {
1723
- systemPrompt: string;
1724
- }
1725
- export interface GenerateSystemPromptRequest {
1726
- /**
1727
- * @minLength 1
1728
- * @maxLength 2000
1729
- */
1730
- description: string;
1731
- category: "DocumentAnalysis" | "DataQuery" | "General" | "Action";
1732
- }
1733
1468
  export interface GetApplications {
1734
1469
  applications: ApplicationRowData[];
1735
1470
  }
@@ -1824,7 +1559,7 @@ export interface GuidPatchOperation {
1824
1559
  from?: string | null;
1825
1560
  }
1826
1561
  export interface IPAddress {
1827
- 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";
1562
+ addressFamily: IpAddressAddressFamilyEnum;
1828
1563
  /** @format int64 */
1829
1564
  scopeId: number;
1830
1565
  isIPv6Multicast: boolean;
@@ -2130,7 +1865,7 @@ export interface LoanBorrower {
2130
1865
  citizenship?: LoanCitizenship | null;
2131
1866
  maritalStatus?: LoanMaritalStatus | null;
2132
1867
  languagePreference?: LoanLanguagePreference | null;
2133
- applicationStatus: "Draft" | "Complete";
1868
+ applicationStatus: LoanBorrowerApplicationStatusEnum;
2134
1869
  /** @format int32 */
2135
1870
  numberOfDependents?: number | null;
2136
1871
  isPrimaryBorrower: boolean;
@@ -2987,7 +2722,7 @@ export interface LoanContact {
2987
2722
  email?: string | null;
2988
2723
  phone?: string | null;
2989
2724
  companyName?: string | null;
2990
- role: "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
2725
+ role: LoanContactRoleEnum;
2991
2726
  }
2992
2727
  export interface LoanContactList {
2993
2728
  email: string;
@@ -3112,13 +2847,13 @@ export interface LoanImport {
3112
2847
  /** @format int32 */
3113
2848
  importedCount: number;
3114
2849
  statusMessage?: string | null;
3115
- status: "WaitingProcess" | "InProgress" | "Completed" | "Failed" | "Cancelled";
3116
- importMode: "All" | "NewOnly" | "UpdateOnly";
2850
+ status: LoanImportStatusEnum;
2851
+ importMode: LoanImportImportModeEnum;
3117
2852
  /** @format date-time */
3118
2853
  createdAt?: string | null;
3119
2854
  }
3120
2855
  export interface LoanImportLog {
3121
- level: "None" | "Info" | "Warning" | "Error";
2856
+ level: LoanImportLogLevelEnum;
3122
2857
  message: string;
3123
2858
  /** @format date-time */
3124
2859
  createdAt: string;
@@ -3173,8 +2908,8 @@ export interface LoanListPaginated {
3173
2908
  export interface LoanLog {
3174
2909
  /** @format uuid */
3175
2910
  id: string;
3176
- level: "None" | "Info" | "Warning" | "Error";
3177
- type: "Loan" | "Queue" | "POSFlagChanged" | "Verification" | "DocumentUploaded" | "LoanCreated" | "WorkflowSubmitted" | "UserInvitationSent" | "CoBorrowerAdded" | "TaskCompleted" | "LoanStatusChanged" | "EConsent" | "SensitiveDataPurge" | "ClosingDateUpdated";
2911
+ level: LoanLogLevelEnum;
2912
+ type: LoanLogTypeEnum;
3178
2913
  message: string;
3179
2914
  /** @format date-time */
3180
2915
  createdAt: string;
@@ -3182,8 +2917,8 @@ export interface LoanLog {
3182
2917
  export interface LoanLogDetail {
3183
2918
  /** @format uuid */
3184
2919
  id: string;
3185
- level: "None" | "Info" | "Warning" | "Error";
3186
- type: "Loan" | "Queue" | "POSFlagChanged" | "Verification" | "DocumentUploaded" | "LoanCreated" | "WorkflowSubmitted" | "UserInvitationSent" | "CoBorrowerAdded" | "TaskCompleted" | "LoanStatusChanged" | "EConsent" | "SensitiveDataPurge" | "ClosingDateUpdated";
2920
+ level: LoanLogDetailLevelEnum;
2921
+ type: LoanLogDetailTypeEnum;
3187
2922
  message: string;
3188
2923
  /** @format date-time */
3189
2924
  createdAt: string;
@@ -3446,7 +3181,7 @@ export interface LoanUser {
3446
3181
  email: string;
3447
3182
  phone?: string | null;
3448
3183
  role: string;
3449
- loanRole: "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
3184
+ loanRole: LoanUserLoanRoleEnum;
3450
3185
  isUser: boolean;
3451
3186
  /** @format date-time */
3452
3187
  createdAt: string;
@@ -4053,7 +3788,7 @@ export interface SSOTokenRequest {
4053
3788
  redirectUri: string;
4054
3789
  }
4055
3790
  export interface SamlMetadataRequest {
4056
- ssoIntegration: "ConsumerConnect" | "TheBigPOS" | "POSF";
3791
+ ssoIntegration: SamlMetadataRequestSsoIntegrationEnum;
4057
3792
  }
4058
3793
  export interface SendForgotPasswordRequest {
4059
3794
  /**
@@ -4088,7 +3823,7 @@ export interface SiteConfiguration {
4088
3823
  deletedAt?: string | null;
4089
3824
  /** @format uuid */
4090
3825
  id: string;
4091
- type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
3826
+ type: SiteConfigurationTypeEnum;
4092
3827
  /** @format uuid */
4093
3828
  entityID: string;
4094
3829
  /** @format int32 */
@@ -4282,7 +4017,7 @@ export interface SiteConfigurationByUrl {
4282
4017
  deletedAt?: string | null;
4283
4018
  /** @format uuid */
4284
4019
  id: string;
4285
- type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
4020
+ type: SiteConfigurationByUrlTypeEnum;
4286
4021
  /** @format uuid */
4287
4022
  entityID: string;
4288
4023
  /** @format int32 */
@@ -4493,7 +4228,7 @@ export interface SiteConfigurationForm {
4493
4228
  export interface SiteConfigurationReduced {
4494
4229
  /** @format uuid */
4495
4230
  id: string;
4496
- type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
4231
+ type: SiteConfigurationReducedTypeEnum;
4497
4232
  url?: string | null;
4498
4233
  name: string;
4499
4234
  /** @format int64 */
@@ -4510,7 +4245,7 @@ export interface SiteConfigurationRequest {
4510
4245
  entityID: string;
4511
4246
  /** @format int32 */
4512
4247
  entityType: number;
4513
- type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
4248
+ type: SiteConfigurationRequestTypeEnum;
4514
4249
  url: string;
4515
4250
  name: string;
4516
4251
  introduction?: string | null;
@@ -4685,7 +4420,7 @@ export interface SiteConfigurationSearchCriteria {
4685
4420
  export interface SiteConfigurationSummary {
4686
4421
  /** @format uuid */
4687
4422
  id: string;
4688
- type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
4423
+ type: SiteConfigurationSummaryTypeEnum;
4689
4424
  url?: string | null;
4690
4425
  name: string;
4691
4426
  /** @format int64 */
@@ -4729,13 +4464,6 @@ export interface SocialSurveyRecord {
4729
4464
  /** @format date-time */
4730
4465
  reviewCompletedTimeStamp?: string | null;
4731
4466
  }
4732
- export interface SupportedModel {
4733
- modelId: string;
4734
- displayName: string;
4735
- provider: string;
4736
- description?: string | null;
4737
- isDefault: boolean;
4738
- }
4739
4467
  export interface SurveyEmailRequest {
4740
4468
  /** @minLength 1 */
4741
4469
  loanOfficerEmailAddress: string;
@@ -4973,60 +4701,6 @@ export interface UpdateAccountRequest {
4973
4701
  asoSettings?: ASOSettings | null;
4974
4702
  settings: AccountSettingsRequest;
4975
4703
  }
4976
- export interface UpdateAiCanonicalFieldRequest {
4977
- /**
4978
- * @minLength 1
4979
- * @maxLength 200
4980
- */
4981
- displayName: string;
4982
- /** @minLength 1 */
4983
- description: string;
4984
- /** @minItems 1 */
4985
- allowedRoles: string[];
4986
- isPii: boolean;
4987
- }
4988
- export interface UpdateAiGuardrailRequest {
4989
- /**
4990
- * @minLength 1
4991
- * @maxLength 200
4992
- */
4993
- name: string;
4994
- category: "ContentSafety" | "PromptInjection" | "Privacy" | "Legal";
4995
- description?: string | null;
4996
- /** @minItems 1 */
4997
- keywords: string[];
4998
- /** @minLength 1 */
4999
- responseTemplate: string;
5000
- }
5001
- export interface UpdateAiPromptRequest {
5002
- /**
5003
- * @minLength 1
5004
- * @maxLength 200
5005
- */
5006
- title: string;
5007
- icon: string;
5008
- /**
5009
- * @minLength 1
5010
- * @maxLength 500
5011
- */
5012
- description: string;
5013
- documentTypes: string[];
5014
- applicableGuidelines: string[];
5015
- allowedRoles: string[];
5016
- /** @minLength 1 */
5017
- systemPrompt: string;
5018
- /** @minLength 1 */
5019
- userPromptTemplate: string;
5020
- followUpPrompts: string[];
5021
- /** @format int32 */
5022
- sortOrder: number;
5023
- category?: AiPromptCategory | null;
5024
- queryTemplateName?: AiQueryTemplateName | null;
5025
- displayHint?: AiDisplayHint | null;
5026
- bedrockModelId?: string | null;
5027
- requiredDataSources?: string[] | null;
5028
- outputType?: AiOutputType | null;
5029
- }
5030
4704
  export interface UpdateDocumentTemplateRequest {
5031
4705
  /** @minLength 1 */
5032
4706
  htmlBody: string;
@@ -5323,7 +4997,7 @@ export interface UserDevice {
5323
4997
  export interface UserDraft {
5324
4998
  /** @format uuid */
5325
4999
  draftID: string;
5326
- role: "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
5000
+ role: UserDraftRoleEnum;
5327
5001
  user: User;
5328
5002
  }
5329
5003
  export interface UserDraftPaginated {
@@ -5347,7 +5021,7 @@ export interface UserGroupAccessScope {
5347
5021
  id: string;
5348
5022
  /** @format uuid */
5349
5023
  groupId: string;
5350
- scopeType: "User" | "Branch";
5024
+ scopeType: UserGroupAccessScopeScopeTypeEnum;
5351
5025
  /** @format uuid */
5352
5026
  userId?: string | null;
5353
5027
  /** @format uuid */
@@ -5380,7 +5054,7 @@ export interface UserLoan {
5380
5054
  deletedAt?: string | null;
5381
5055
  loanID: string;
5382
5056
  user: User;
5383
- role: "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
5057
+ role: UserLoanRoleEnum;
5384
5058
  /** @format int32 */
5385
5059
  borrowerPair?: number | null;
5386
5060
  /** @format int32 */
@@ -5392,10 +5066,10 @@ export interface UserLoanConsent {
5392
5066
  id: string;
5393
5067
  /** @format uuid */
5394
5068
  userLoanID: string;
5395
- type: "Econsent" | "CreditAuthorization" | "Tcpa";
5069
+ type: UserLoanConsentTypeEnum;
5396
5070
  providedConsent: boolean;
5397
5071
  ipAddress?: string | null;
5398
- losSyncStatus: "NotStarted" | "Failed" | "Success";
5072
+ losSyncStatus: UserLoanConsentLosSyncStatusEnum;
5399
5073
  /** @format date-time */
5400
5074
  createdAt: string;
5401
5075
  }
@@ -5527,7 +5201,7 @@ export interface UserSummary {
5527
5201
  id: string;
5528
5202
  name?: string | null;
5529
5203
  email?: string | null;
5530
- role: "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
5204
+ role: UserSummaryRoleEnum;
5531
5205
  }
5532
5206
  export interface VerifyPasswordRequest {
5533
5207
  /**
@@ -5560,6 +5234,49 @@ export interface Workflow {
5560
5234
  tileSubtitle: string;
5561
5235
  icon: string;
5562
5236
  }
5237
+ export type AccountBillingRequestBillingTypeEnum = "ClosedLoan" | "LoanOfficer";
5238
+ export type AuditLogEntryChangeTypeEnum = "Created" | "Modified" | "SoftDeleted" | "HardDeleted" | "Restored";
5239
+ export type CreateAccessScopeRequestScopeTypeEnum = "User" | "Branch";
5240
+ export type CreateAccountRequestEnvironmentEnum = "Development" | "Staging" | "UAT" | "Production";
5241
+ export type CreateGroupMemberRequestLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
5242
+ /** @deprecated */
5243
+ export type CreateInviteRequestRelationshipEnum = "NotApplicable" | "Spouse" | "NonSpouse";
5244
+ export type CreateLoanImportRequestImportModeEnum = "All" | "NewOnly" | "UpdateOnly";
5245
+ export type CreateUserDraftLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
5246
+ export type DraftTypeEnum = "NewLoan" | "EditLoan";
5247
+ export type DraftContentTypeEnum = "NewLoan" | "EditLoan";
5248
+ export type EncompassRequestLogOperationTypeEnum = "FieldUpdate" | "EConsentUpdate" | "DocumentSync" | "MilestoneUpdate" | "DocumentAttachment" | "General" | "FieldReader";
5249
+ export type EncompassRequestLogOutcomeEnum = "Success" | "Failure" | "PartialSuccess";
5250
+ export type FusionReportFilterFilterTypeEnum = "DateGreaterThanOrEqualTo" | "DateGreaterThan" | "DateLessThan" | "DateLessThanOrEqualTo" | "DateEquals" | "DateDoesntEqual" | "DateNonEmpty" | "DateEmpty" | "StringContains" | "StringEquals" | "StringNotEmpty" | "StringNotEquals" | "StringNotContains";
5251
+ 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";
5252
+ export type LoanBorrowerApplicationStatusEnum = "Draft" | "Complete";
5253
+ export type LoanContactRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
5254
+ export type LoanImportStatusEnum = "WaitingProcess" | "InProgress" | "Completed" | "Failed" | "Cancelled";
5255
+ export type LoanImportImportModeEnum = "All" | "NewOnly" | "UpdateOnly";
5256
+ export type LoanImportLogLevelEnum = "None" | "Info" | "Warning" | "Error";
5257
+ export type LoanLogLevelEnum = "None" | "Info" | "Warning" | "Error";
5258
+ export type LoanLogTypeEnum = "Loan" | "Queue" | "POSFlagChanged" | "Verification" | "DocumentUploaded" | "LoanCreated" | "WorkflowSubmitted" | "UserInvitationSent" | "CoBorrowerAdded" | "TaskCompleted" | "LoanStatusChanged" | "EConsent" | "SensitiveDataPurge" | "ClosingDateUpdated";
5259
+ export type LoanLogDetailLevelEnum = "None" | "Info" | "Warning" | "Error";
5260
+ export type LoanLogDetailTypeEnum = "Loan" | "Queue" | "POSFlagChanged" | "Verification" | "DocumentUploaded" | "LoanCreated" | "WorkflowSubmitted" | "UserInvitationSent" | "CoBorrowerAdded" | "TaskCompleted" | "LoanStatusChanged" | "EConsent" | "SensitiveDataPurge" | "ClosingDateUpdated";
5261
+ export type LoanUserLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
5262
+ export type SamlMetadataRequestSsoIntegrationEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
5263
+ export type SiteConfigurationTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
5264
+ export type SiteConfigurationByUrlTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
5265
+ export type SiteConfigurationReducedTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
5266
+ export type SiteConfigurationRequestTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
5267
+ export type SiteConfigurationSummaryTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
5268
+ export type UserDraftRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
5269
+ export type UserGroupAccessScopeScopeTypeEnum = "User" | "Branch";
5270
+ export type UserLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
5271
+ export type UserLoanConsentTypeEnum = "Econsent" | "CreditAuthorization" | "Tcpa";
5272
+ export type UserLoanConsentLosSyncStatusEnum = "NotStarted" | "Failed" | "Success";
5273
+ export type UserSummaryRoleEnum = "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
5274
+ /** @default "Realtor" */
5275
+ export type GetPartnersParamsRoleEnum = "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
5276
+ export type GetSamlMetadataParamsSSoIntegrationEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
5277
+ export type GetSamlMetadataParamsEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
5278
+ export type CreateOrReplaceSamlMetadataParamsSSoIntegrationEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
5279
+ export type CreateOrReplaceSamlMetadataParamsEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
5563
5280
  import type { AxiosInstance, AxiosRequestConfig, AxiosResponse, ResponseType } from "axios";
5564
5281
  export type QueryParamsType = Record<string | number, any>;
5565
5282
  export interface FullRequestParams extends Omit<AxiosRequestConfig, "data" | "params" | "url" | "responseType"> {
@@ -5605,7 +5322,7 @@ export declare class HttpClient<SecurityDataType = unknown> {
5605
5322
  }
5606
5323
  /**
5607
5324
  * @title The Big POS API
5608
- * @version v2.37.6
5325
+ * @version v2.37.8
5609
5326
  * @termsOfService https://www.thebigpos.com/terms-of-use/
5610
5327
  * @contact Mortgage Automation Technologies <support@thebigpos.com> (https://www.thebigpos.com/terms-of-use/)
5611
5328
  */
@@ -5619,7 +5336,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5619
5336
  * @secure
5620
5337
  * @response `200` `void` Success
5621
5338
  */
5622
- postRoot: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
5339
+ postRoot: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
5623
5340
  /**
5624
5341
  * No description
5625
5342
  *
@@ -5629,7 +5346,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5629
5346
  * @secure
5630
5347
  * @response `200` `string` Success
5631
5348
  */
5632
- getRoot: (params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
5349
+ getRoot: (params?: RequestParams) => Promise<AxiosResponse<string, any>>;
5633
5350
  api: {
5634
5351
  /**
5635
5352
  * No description
@@ -5642,7 +5359,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5642
5359
  * @response `200` `Account` Success
5643
5360
  * @response `404` `ProblemDetails` Not Found
5644
5361
  */
5645
- getMyAccount: (params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
5362
+ getMyAccount: (params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
5646
5363
  /**
5647
5364
  * No description
5648
5365
  *
@@ -5655,7 +5372,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5655
5372
  * @response `404` `ProblemDetails` Not Found
5656
5373
  * @response `422` `ProblemDetails` Client Error
5657
5374
  */
5658
- replaceMyAccount: (data: UpdateAccountRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
5375
+ replaceMyAccount: (data: UpdateAccountRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
5659
5376
  /**
5660
5377
  * No description
5661
5378
  *
@@ -5666,7 +5383,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5666
5383
  * @secure
5667
5384
  * @response `200` `SiteConfiguration` Success
5668
5385
  */
5669
- getSiteConfigurationByAccount: (params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
5386
+ getSiteConfigurationByAccount: (params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
5670
5387
  /**
5671
5388
  * No description
5672
5389
  *
@@ -5678,7 +5395,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5678
5395
  * @response `200` `SiteConfiguration` Success
5679
5396
  * @response `422` `UnprocessableEntity` Client Error
5680
5397
  */
5681
- updateSiteConfigurationForAccount: (data: SiteConfiguration, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
5398
+ updateSiteConfigurationForAccount: (data: SiteConfiguration, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
5682
5399
  /**
5683
5400
  * No description
5684
5401
  *
@@ -5689,7 +5406,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5689
5406
  * @secure
5690
5407
  * @response `200` `(Account)[]` Success
5691
5408
  */
5692
- getAccounts: (params?: RequestParams) => Promise<AxiosResponse<Account[], any, {}>>;
5409
+ getAccounts: (params?: RequestParams) => Promise<AxiosResponse<Account[], any>>;
5693
5410
  /**
5694
5411
  * No description
5695
5412
  *
@@ -5701,7 +5418,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5701
5418
  * @response `201` `Account` Created
5702
5419
  * @response `422` `ProblemDetails` Client Error
5703
5420
  */
5704
- createAccount: (data: CreateAccountRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
5421
+ createAccount: (data: CreateAccountRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
5705
5422
  /**
5706
5423
  * No description
5707
5424
  *
@@ -5713,7 +5430,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5713
5430
  * @response `201` `Account` Created
5714
5431
  * @response `422` `ProblemDetails` Client Error
5715
5432
  */
5716
- getAccount: (id: string, params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
5433
+ getAccount: (id: string, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
5717
5434
  /**
5718
5435
  * No description
5719
5436
  *
@@ -5729,7 +5446,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5729
5446
  deleteAccount: (id: string, query?: {
5730
5447
  /** @default false */
5731
5448
  hardDelete?: boolean;
5732
- }, params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
5449
+ }, params?: RequestParams) => Promise<AxiosResponse<Account, any>>;
5733
5450
  /**
5734
5451
  * No description
5735
5452
  *
@@ -5742,357 +5459,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5742
5459
  * @response `404` `ProblemDetails` Not Found
5743
5460
  * @response `422` `ProblemDetails` Client Error
5744
5461
  */
5745
- updateAccountBilling: (id: string, data: AccountBillingRequest, params?: RequestParams) => Promise<AxiosResponse<AccountBilling, any, {}>>;
5746
- /**
5747
- * No description
5748
- *
5749
- * @tags AiAdmin
5750
- * @name GetAiAuditLogs
5751
- * @summary Get paginated audit logs
5752
- * @request GET:/api/ai/admin/audit-logs
5753
- * @secure
5754
- * @response `200` `AiAuditLogPaginated` Success
5755
- */
5756
- getAiAuditLogs: (query?: {
5757
- eventType?: AiAuditEventType;
5758
- /** @format date-time */
5759
- startDate?: string;
5760
- /** @format date-time */
5761
- endDate?: string;
5762
- /** @format int32 */
5763
- pageSize?: number;
5764
- /** @format int32 */
5765
- pageNumber?: number;
5766
- sortBy?: string;
5767
- sortDirection?: string;
5768
- }, params?: RequestParams) => Promise<AxiosResponse<AiAuditLogPaginated, any, {}>>;
5769
- /**
5770
- * No description
5771
- *
5772
- * @tags AiAdmin
5773
- * @name GetAiAdminStats
5774
- * @summary Get AI admin dashboard stats
5775
- * @request GET:/api/ai/admin/stats
5776
- * @secure
5777
- * @response `200` `AiAdminStats` Success
5778
- */
5779
- getAiAdminStats: (query?: {
5780
- /** @format date-time */
5781
- startDate?: string;
5782
- /** @format date-time */
5783
- endDate?: string;
5784
- }, params?: RequestParams) => Promise<AxiosResponse<AiAdminStats, any, {}>>;
5785
- /**
5786
- * No description
5787
- *
5788
- * @tags AiAdminPrompt
5789
- * @name GetAiPrompts
5790
- * @summary Get all prompts
5791
- * @request GET:/api/ai/admin/prompts
5792
- * @secure
5793
- * @response `200` `(AiPrompt)[]` Success
5794
- */
5795
- getAiPrompts: (params?: RequestParams) => Promise<AxiosResponse<AiPrompt[], any, {}>>;
5796
- /**
5797
- * No description
5798
- *
5799
- * @tags AiAdminPrompt
5800
- * @name CreateAiPrompt
5801
- * @summary Create custom prompt
5802
- * @request POST:/api/ai/admin/prompts
5803
- * @secure
5804
- * @response `201` `AiPrompt` Created
5805
- * @response `400` `ProblemDetails` Bad Request
5806
- */
5807
- createAiPrompt: (data: CreateAiPromptRequest, params?: RequestParams) => Promise<AxiosResponse<AiPrompt, any, {}>>;
5808
- /**
5809
- * No description
5810
- *
5811
- * @tags AiAdminPrompt
5812
- * @name GetAiPrompt
5813
- * @summary Get prompt by ID
5814
- * @request GET:/api/ai/admin/prompts/{id}
5815
- * @secure
5816
- * @response `200` `AiPrompt` Success
5817
- * @response `404` `ProblemDetails` Not Found
5818
- */
5819
- getAiPrompt: (id: string, params?: RequestParams) => Promise<AxiosResponse<AiPrompt, any, {}>>;
5820
- /**
5821
- * No description
5822
- *
5823
- * @tags AiAdminPrompt
5824
- * @name UpdateAiPrompt
5825
- * @summary Update prompt
5826
- * @request PUT:/api/ai/admin/prompts/{id}
5827
- * @secure
5828
- * @response `200` `AiPrompt` Success
5829
- * @response `400` `ProblemDetails` Bad Request
5830
- * @response `404` `ProblemDetails` Not Found
5831
- */
5832
- updateAiPrompt: (id: string, data: UpdateAiPromptRequest, params?: RequestParams) => Promise<AxiosResponse<AiPrompt, any, {}>>;
5833
- /**
5834
- * No description
5835
- *
5836
- * @tags AiAdminPrompt
5837
- * @name DeleteAiPrompt
5838
- * @summary Delete prompt
5839
- * @request DELETE:/api/ai/admin/prompts/{id}
5840
- * @secure
5841
- * @response `204` `void` No Content
5842
- * @response `400` `ProblemDetails` Bad Request
5843
- * @response `404` `ProblemDetails` Not Found
5844
- */
5845
- deleteAiPrompt: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
5846
- /**
5847
- * No description
5848
- *
5849
- * @tags AiAdminPrompt
5850
- * @name ToggleAiPrompt
5851
- * @summary Toggle prompt active/inactive
5852
- * @request PATCH:/api/ai/admin/prompts/{id}/toggle
5853
- * @secure
5854
- * @response `200` `AiPrompt` Success
5855
- * @response `404` `ProblemDetails` Not Found
5856
- */
5857
- toggleAiPrompt: (id: string, params?: RequestParams) => Promise<AxiosResponse<AiPrompt, any, {}>>;
5858
- /**
5859
- * No description
5860
- *
5861
- * @tags AiAdminPrompt
5862
- * @name GenerateAiSystemPrompt
5863
- * @summary Generate a system prompt from description
5864
- * @request POST:/api/ai/admin/prompts/generate
5865
- * @secure
5866
- * @response `200` `GenerateSystemPrompt` Success
5867
- * @response `400` `ProblemDetails` Bad Request
5868
- */
5869
- generateAiSystemPrompt: (data: GenerateSystemPromptRequest, params?: RequestParams) => Promise<AxiosResponse<GenerateSystemPrompt, any, {}>>;
5870
- /**
5871
- * No description
5872
- *
5873
- * @tags AiAdminPrompt
5874
- * @name GetSupportedModels
5875
- * @summary Get supported LLM models
5876
- * @request GET:/api/ai/admin/prompts/supported-models
5877
- * @secure
5878
- * @response `200` `(SupportedModel)[]` Success
5879
- */
5880
- getSupportedModels: (params?: RequestParams) => Promise<AxiosResponse<SupportedModel[], any, {}>>;
5881
- /**
5882
- * No description
5883
- *
5884
- * @tags AiCanonicalField
5885
- * @name GetAiCanonicalFields
5886
- * @summary Get all canonical fields
5887
- * @request GET:/api/ai/admin/fields
5888
- * @secure
5889
- * @response `200` `(AiCanonicalField)[]` Success
5890
- */
5891
- getAiCanonicalFields: (params?: RequestParams) => Promise<AxiosResponse<AiCanonicalField[], any, {}>>;
5892
- /**
5893
- * No description
5894
- *
5895
- * @tags AiCanonicalField
5896
- * @name CreateAiCanonicalField
5897
- * @summary Create canonical field
5898
- * @request POST:/api/ai/admin/fields
5899
- * @secure
5900
- * @response `201` `AiCanonicalField` Created
5901
- * @response `400` `ProblemDetails` Bad Request
5902
- */
5903
- createAiCanonicalField: (data: CreateAiCanonicalFieldRequest, params?: RequestParams) => Promise<AxiosResponse<AiCanonicalField, any, {}>>;
5904
- /**
5905
- * No description
5906
- *
5907
- * @tags AiCanonicalField
5908
- * @name GetAiCanonicalField
5909
- * @summary Get canonical field by ID
5910
- * @request GET:/api/ai/admin/fields/{id}
5911
- * @secure
5912
- * @response `200` `AiCanonicalField` Success
5913
- * @response `404` `ProblemDetails` Not Found
5914
- */
5915
- getAiCanonicalField: (id: string, params?: RequestParams) => Promise<AxiosResponse<AiCanonicalField, any, {}>>;
5916
- /**
5917
- * No description
5918
- *
5919
- * @tags AiCanonicalField
5920
- * @name UpdateAiCanonicalField
5921
- * @summary Update canonical field
5922
- * @request PUT:/api/ai/admin/fields/{id}
5923
- * @secure
5924
- * @response `200` `AiCanonicalField` Success
5925
- * @response `400` `ProblemDetails` Bad Request
5926
- * @response `404` `ProblemDetails` Not Found
5927
- */
5928
- updateAiCanonicalField: (id: string, data: UpdateAiCanonicalFieldRequest, params?: RequestParams) => Promise<AxiosResponse<AiCanonicalField, any, {}>>;
5929
- /**
5930
- * No description
5931
- *
5932
- * @tags AiCanonicalField
5933
- * @name DeleteAiCanonicalField
5934
- * @summary Delete canonical field
5935
- * @request DELETE:/api/ai/admin/fields/{id}
5936
- * @secure
5937
- * @response `204` `void` No Content
5938
- * @response `404` `ProblemDetails` Not Found
5939
- */
5940
- deleteAiCanonicalField: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
5941
- /**
5942
- * No description
5943
- *
5944
- * @tags AiCanonicalField
5945
- * @name ToggleAiCanonicalField
5946
- * @summary Toggle canonical field active/inactive
5947
- * @request PATCH:/api/ai/admin/fields/{id}/toggle
5948
- * @secure
5949
- * @response `200` `AiCanonicalField` Success
5950
- * @response `404` `ProblemDetails` Not Found
5951
- */
5952
- toggleAiCanonicalField: (id: string, params?: RequestParams) => Promise<AxiosResponse<AiCanonicalField, any, {}>>;
5953
- /**
5954
- * No description
5955
- *
5956
- * @tags AiChat
5957
- * @name AiChat
5958
- * @summary Send AI chat message
5959
- * @request POST:/api/ai/chat
5960
- * @secure
5961
- * @response `200` `AiChat` Success
5962
- * @response `400` `ProblemDetails` Bad Request
5963
- * @response `401` `ProblemDetails` Unauthorized
5964
- */
5965
- aiChat: (data: AiChatRequest, params?: RequestParams) => Promise<AxiosResponse<AiChat, any, {}>>;
5966
- /**
5967
- * No description
5968
- *
5969
- * @tags AiConversation
5970
- * @name GetAiConversations
5971
- * @summary Get user conversations
5972
- * @request GET:/api/ai/conversations
5973
- * @secure
5974
- * @response `200` `AiConversationListItemPaginated` Success
5975
- */
5976
- getAiConversations: (query?: {
5977
- /** @format int32 */
5978
- pageSize?: number;
5979
- /** @format int32 */
5980
- pageNumber?: number;
5981
- sortBy?: string;
5982
- sortDirection?: string;
5983
- }, params?: RequestParams) => Promise<AxiosResponse<AiConversationListItemPaginated, any, {}>>;
5984
- /**
5985
- * No description
5986
- *
5987
- * @tags AiConversation
5988
- * @name GetAiConversation
5989
- * @summary Get conversation with messages
5990
- * @request GET:/api/ai/conversations/{id}
5991
- * @secure
5992
- * @response `200` `AiConversationDetail` Success
5993
- * @response `403` `ProblemDetails` Forbidden
5994
- * @response `404` `ProblemDetails` Not Found
5995
- */
5996
- getAiConversation: (id: string, params?: RequestParams) => Promise<AxiosResponse<AiConversationDetail, any, {}>>;
5997
- /**
5998
- * No description
5999
- *
6000
- * @tags AiConversation
6001
- * @name DeleteAiConversation
6002
- * @summary Delete conversation
6003
- * @request DELETE:/api/ai/conversations/{id}
6004
- * @secure
6005
- * @response `204` `void` No Content
6006
- * @response `403` `ProblemDetails` Forbidden
6007
- * @response `404` `ProblemDetails` Not Found
6008
- */
6009
- deleteAiConversation: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
6010
- /**
6011
- * No description
6012
- *
6013
- * @tags AiGuardrail
6014
- * @name GetAiGuardrails
6015
- * @summary Get all guardrails
6016
- * @request GET:/api/ai/admin/guardrails
6017
- * @secure
6018
- * @response `200` `(AiGuardrail)[]` Success
6019
- */
6020
- getAiGuardrails: (params?: RequestParams) => Promise<AxiosResponse<AiGuardrail[], any, {}>>;
6021
- /**
6022
- * No description
6023
- *
6024
- * @tags AiGuardrail
6025
- * @name CreateAiGuardrail
6026
- * @summary Create custom guardrail
6027
- * @request POST:/api/ai/admin/guardrails
6028
- * @secure
6029
- * @response `201` `AiGuardrail` Created
6030
- * @response `400` `ProblemDetails` Bad Request
6031
- */
6032
- createAiGuardrail: (data: CreateAiGuardrailRequest, params?: RequestParams) => Promise<AxiosResponse<AiGuardrail, any, {}>>;
6033
- /**
6034
- * No description
6035
- *
6036
- * @tags AiGuardrail
6037
- * @name GetAiGuardrail
6038
- * @summary Get guardrail by ID
6039
- * @request GET:/api/ai/admin/guardrails/{id}
6040
- * @secure
6041
- * @response `200` `AiGuardrail` Success
6042
- * @response `404` `ProblemDetails` Not Found
6043
- */
6044
- getAiGuardrail: (id: string, params?: RequestParams) => Promise<AxiosResponse<AiGuardrail, any, {}>>;
6045
- /**
6046
- * No description
6047
- *
6048
- * @tags AiGuardrail
6049
- * @name UpdateAiGuardrail
6050
- * @summary Update guardrail
6051
- * @request PUT:/api/ai/admin/guardrails/{id}
6052
- * @secure
6053
- * @response `200` `AiGuardrail` Success
6054
- * @response `400` `ProblemDetails` Bad Request
6055
- * @response `404` `ProblemDetails` Not Found
6056
- */
6057
- updateAiGuardrail: (id: string, data: UpdateAiGuardrailRequest, params?: RequestParams) => Promise<AxiosResponse<AiGuardrail, any, {}>>;
6058
- /**
6059
- * No description
6060
- *
6061
- * @tags AiGuardrail
6062
- * @name DeleteAiGuardrail
6063
- * @summary Delete guardrail
6064
- * @request DELETE:/api/ai/admin/guardrails/{id}
6065
- * @secure
6066
- * @response `204` `void` No Content
6067
- * @response `400` `ProblemDetails` Bad Request
6068
- * @response `404` `ProblemDetails` Not Found
6069
- */
6070
- deleteAiGuardrail: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
6071
- /**
6072
- * No description
6073
- *
6074
- * @tags AiGuardrail
6075
- * @name ToggleAiGuardrail
6076
- * @summary Toggle guardrail enabled/disabled
6077
- * @request PATCH:/api/ai/admin/guardrails/{id}/toggle
6078
- * @secure
6079
- * @response `200` `AiGuardrail` Success
6080
- * @response `404` `ProblemDetails` Not Found
6081
- */
6082
- toggleAiGuardrail: (id: string, params?: RequestParams) => Promise<AxiosResponse<AiGuardrail, any, {}>>;
6083
- /**
6084
- * No description
6085
- *
6086
- * @tags AiPrompt
6087
- * @name GetAvailablePrompts
6088
- * @summary Get available prompts for current user
6089
- * @request GET:/api/ai/prompts
6090
- * @secure
6091
- * @response `200` `(AiPromptSummary)[]` Success
6092
- */
6093
- getAvailablePrompts: (query?: {
6094
- documentType?: string;
6095
- }, params?: RequestParams) => Promise<AxiosResponse<AiPromptSummary[], any, {}>>;
5462
+ updateAccountBilling: (id: string, data: AccountBillingRequest, params?: RequestParams) => Promise<AxiosResponse<AccountBilling, any>>;
6096
5463
  /**
6097
5464
  * No description
6098
5465
  *
@@ -6110,7 +5477,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6110
5477
  pageNumber?: number;
6111
5478
  sortBy?: string;
6112
5479
  sortDirection?: string;
6113
- }, params?: RequestParams) => Promise<AxiosResponse<AuditLogEntryPaginated, any, {}>>;
5480
+ }, params?: RequestParams) => Promise<AxiosResponse<AuditLogEntryPaginated, any>>;
6114
5481
  /**
6115
5482
  * No description
6116
5483
  *
@@ -6122,7 +5489,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6122
5489
  * @response `200` `AuditLogEntry` Success
6123
5490
  * @response `404` `ProblemDetails` Not Found
6124
5491
  */
6125
- getAuditLogById: (id: string, params?: RequestParams) => Promise<AxiosResponse<AuditLogEntry, any, {}>>;
5492
+ getAuditLogById: (id: string, params?: RequestParams) => Promise<AxiosResponse<AuditLogEntry, any>>;
6126
5493
  /**
6127
5494
  * No description
6128
5495
  *
@@ -6135,7 +5502,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6135
5502
  * @response `401` `ProblemDetails` Unauthorized
6136
5503
  * @response `422` `UnprocessableEntity` Client Error
6137
5504
  */
6138
- getTokenFromRefreshToken: (data: RefreshTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any, {}>>;
5505
+ getTokenFromRefreshToken: (data: RefreshTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any>>;
6139
5506
  /**
6140
5507
  * No description
6141
5508
  *
@@ -6147,7 +5514,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6147
5514
  * @response `200` `ForcePasswordReset` Success
6148
5515
  * @response `422` `UnprocessableEntity` Client Error
6149
5516
  */
6150
- getToken: (data: TokenRequest, params?: RequestParams) => Promise<AxiosResponse<ForcePasswordReset, any, {}>>;
5517
+ getToken: (data: TokenRequest, params?: RequestParams) => Promise<AxiosResponse<ForcePasswordReset, any>>;
6151
5518
  /**
6152
5519
  * No description
6153
5520
  *
@@ -6159,7 +5526,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6159
5526
  * @response `200` `ForcePasswordReset` Success
6160
5527
  * @response `422` `UnprocessableEntity` Client Error
6161
5528
  */
6162
- getTokenFromChallengeCode: (data: TokenChallengeRequest, params?: RequestParams) => Promise<AxiosResponse<ForcePasswordReset, any, {}>>;
5529
+ getTokenFromChallengeCode: (data: TokenChallengeRequest, params?: RequestParams) => Promise<AxiosResponse<ForcePasswordReset, any>>;
6163
5530
  /**
6164
5531
  * No description
6165
5532
  *
@@ -6171,7 +5538,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6171
5538
  * @response `200` `Token` Success
6172
5539
  * @response `422` `UnprocessableEntity` Client Error
6173
5540
  */
6174
- getSystemToken: (data: SystemTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any, {}>>;
5541
+ getSystemToken: (data: SystemTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any>>;
6175
5542
  /**
6176
5543
  * No description
6177
5544
  *
@@ -6183,7 +5550,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6183
5550
  * @response `200` `SSOToken` Success
6184
5551
  * @response `422` `UnprocessableEntity` Client Error
6185
5552
  */
6186
- getSsoToken: (data: SSOTokenRequest, params?: RequestParams) => Promise<AxiosResponse<SSOToken, any, {}>>;
5553
+ getSsoToken: (data: SSOTokenRequest, params?: RequestParams) => Promise<AxiosResponse<SSOToken, any>>;
6187
5554
  /**
6188
5555
  * No description
6189
5556
  *
@@ -6195,7 +5562,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6195
5562
  * @response `204` `NoContentResult` No Content
6196
5563
  * @response `422` `UnprocessableEntity` Client Error
6197
5564
  */
6198
- logOut: (params?: RequestParams) => Promise<AxiosResponse<NoContentResult, any, {}>>;
5565
+ logOut: (params?: RequestParams) => Promise<AxiosResponse<NoContentResult, any>>;
6199
5566
  /**
6200
5567
  * No description
6201
5568
  *
@@ -6214,7 +5581,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6214
5581
  pageNumber?: number;
6215
5582
  sortBy?: string;
6216
5583
  sortDirection?: string;
6217
- }, params?: RequestParams) => Promise<AxiosResponse<GetBranchPaginated, any, {}>>;
5584
+ }, params?: RequestParams) => Promise<AxiosResponse<GetBranchPaginated, any>>;
6218
5585
  /**
6219
5586
  * No description
6220
5587
  *
@@ -6226,7 +5593,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6226
5593
  * @response `200` `GetBranch` Success
6227
5594
  * @response `422` `UnprocessableEntity` Client Error
6228
5595
  */
6229
- createBranch: (data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any, {}>>;
5596
+ createBranch: (data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any>>;
6230
5597
  /**
6231
5598
  * No description
6232
5599
  *
@@ -6244,7 +5611,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6244
5611
  pageNumber?: number;
6245
5612
  sortBy?: string;
6246
5613
  sortDirection?: string;
6247
- }, params?: RequestParams) => Promise<AxiosResponse<GetBranchPaginated, any, {}>>;
5614
+ }, params?: RequestParams) => Promise<AxiosResponse<GetBranchPaginated, any>>;
6248
5615
  /**
6249
5616
  * No description
6250
5617
  *
@@ -6255,7 +5622,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6255
5622
  * @secure
6256
5623
  * @response `200` `GetBranch` Success
6257
5624
  */
6258
- getBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any, {}>>;
5625
+ getBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any>>;
6259
5626
  /**
6260
5627
  * No description
6261
5628
  *
@@ -6267,7 +5634,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6267
5634
  * @response `200` `GetBranch` Success
6268
5635
  * @response `422` `UnprocessableEntity` Client Error
6269
5636
  */
6270
- replaceBranch: (branchId: string, data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any, {}>>;
5637
+ replaceBranch: (branchId: string, data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any>>;
6271
5638
  /**
6272
5639
  * No description
6273
5640
  *
@@ -6278,7 +5645,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6278
5645
  * @secure
6279
5646
  * @response `204` `void` No Content
6280
5647
  */
6281
- deleteBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
5648
+ deleteBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6282
5649
  /**
6283
5650
  * No description
6284
5651
  *
@@ -6290,7 +5657,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6290
5657
  * @response `204` `void` No Content
6291
5658
  * @response `400` `ProblemDetails` Bad Request
6292
5659
  */
6293
- restoreBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
5660
+ restoreBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6294
5661
  /**
6295
5662
  * No description
6296
5663
  *
@@ -6302,7 +5669,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6302
5669
  * @response `200` `SiteConfiguration` Success
6303
5670
  * @response `422` `UnprocessableEntity` Client Error
6304
5671
  */
6305
- createBranchSiteConfiguration: (branchId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
5672
+ createBranchSiteConfiguration: (branchId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
6306
5673
  /**
6307
5674
  * No description
6308
5675
  *
@@ -6313,7 +5680,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6313
5680
  * @secure
6314
5681
  * @response `200` `SiteConfigurationWithInherited` Success
6315
5682
  */
6316
- getBranchSiteConfiguration: (branchId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any, {}>>;
5683
+ getBranchSiteConfiguration: (branchId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
6317
5684
  /**
6318
5685
  * No description
6319
5686
  *
@@ -6327,7 +5694,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6327
5694
  */
6328
5695
  replaceBranchSiteConfiguration: (branchId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
6329
5696
  applyToChildren?: boolean;
6330
- }, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
5697
+ }, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
6331
5698
  /**
6332
5699
  * No description
6333
5700
  *
@@ -6338,7 +5705,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6338
5705
  * @secure
6339
5706
  * @response `200` `(LoanOfficerPublic)[]` Success
6340
5707
  */
6341
- getLoanOfficersByBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic[], any, {}>>;
5708
+ getLoanOfficersByBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic[], any>>;
6342
5709
  /**
6343
5710
  * No description
6344
5711
  *
@@ -6351,7 +5718,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6351
5718
  */
6352
5719
  getBusinessRules: (query?: {
6353
5720
  showAll?: boolean;
6354
- }, params?: RequestParams) => Promise<AxiosResponse<BusinessRule[], any, {}>>;
5721
+ }, params?: RequestParams) => Promise<AxiosResponse<BusinessRule[], any>>;
6355
5722
  /**
6356
5723
  * No description
6357
5724
  *
@@ -6363,7 +5730,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6363
5730
  * @response `200` `BusinessRule` Success
6364
5731
  * @response `422` `UnprocessableEntity` Client Error
6365
5732
  */
6366
- createBusinessRule: (data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any, {}>>;
5733
+ createBusinessRule: (data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
6367
5734
  /**
6368
5735
  * No description
6369
5736
  *
@@ -6374,7 +5741,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6374
5741
  * @secure
6375
5742
  * @response `200` `BusinessRule` Success
6376
5743
  */
6377
- getBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any, {}>>;
5744
+ getBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
6378
5745
  /**
6379
5746
  * No description
6380
5747
  *
@@ -6386,7 +5753,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6386
5753
  * @response `200` `BusinessRule` Success
6387
5754
  * @response `422` `UnprocessableEntity` Client Error
6388
5755
  */
6389
- replaceBusinessRule: (id: string, data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any, {}>>;
5756
+ replaceBusinessRule: (id: string, data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
6390
5757
  /**
6391
5758
  * No description
6392
5759
  *
@@ -6397,7 +5764,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6397
5764
  * @secure
6398
5765
  * @response `204` `void` No Content
6399
5766
  */
6400
- deleteBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
5767
+ deleteBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6401
5768
  /**
6402
5769
  * No description
6403
5770
  *
@@ -6408,7 +5775,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6408
5775
  * @secure
6409
5776
  * @response `200` `BusinessRule` Success
6410
5777
  */
6411
- restoreBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any, {}>>;
5778
+ restoreBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any>>;
6412
5779
  /**
6413
5780
  * @description Returns closed loan counts per account within the specified date range, including POS vs non-POS breakdown and utilization ratios.
6414
5781
  *
@@ -6419,7 +5786,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6419
5786
  * @secure
6420
5787
  * @response `200` `ClosedLoansReport` Success
6421
5788
  */
6422
- getClosedLoansReport: (data: ClosedLoansReportRequest, params?: RequestParams) => Promise<AxiosResponse<ClosedLoansReport, any, {}>>;
5789
+ getClosedLoansReport: (data: ClosedLoansReportRequest, params?: RequestParams) => Promise<AxiosResponse<ClosedLoansReport, any>>;
6423
5790
  /**
6424
5791
  * No description
6425
5792
  *
@@ -6438,7 +5805,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6438
5805
  pageNumber?: number;
6439
5806
  sortBy?: string;
6440
5807
  sortDirection?: string;
6441
- }, params?: RequestParams) => Promise<AxiosResponse<CorporatePaginated, any, {}>>;
5808
+ }, params?: RequestParams) => Promise<AxiosResponse<CorporatePaginated, any>>;
6442
5809
  /**
6443
5810
  * No description
6444
5811
  *
@@ -6450,7 +5817,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6450
5817
  * @response `200` `Corporate` Success
6451
5818
  * @response `422` `UnprocessableEntity` Client Error
6452
5819
  */
6453
- createCorporate: (data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any, {}>>;
5820
+ createCorporate: (data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any>>;
6454
5821
  /**
6455
5822
  * No description
6456
5823
  *
@@ -6468,7 +5835,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6468
5835
  pageNumber?: number;
6469
5836
  sortBy?: string;
6470
5837
  sortDirection?: string;
6471
- }, params?: RequestParams) => Promise<AxiosResponse<CorporatePaginated, any, {}>>;
5838
+ }, params?: RequestParams) => Promise<AxiosResponse<CorporatePaginated, any>>;
6472
5839
  /**
6473
5840
  * No description
6474
5841
  *
@@ -6479,7 +5846,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6479
5846
  * @secure
6480
5847
  * @response `200` `Corporate` Success
6481
5848
  */
6482
- getCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<Corporate, any, {}>>;
5849
+ getCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<Corporate, any>>;
6483
5850
  /**
6484
5851
  * No description
6485
5852
  *
@@ -6491,7 +5858,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6491
5858
  * @response `200` `Corporate` Success
6492
5859
  * @response `422` `UnprocessableEntity` Client Error
6493
5860
  */
6494
- replaceCorporate: (id: string, data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any, {}>>;
5861
+ replaceCorporate: (id: string, data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any>>;
6495
5862
  /**
6496
5863
  * No description
6497
5864
  *
@@ -6502,7 +5869,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6502
5869
  * @secure
6503
5870
  * @response `204` `void` No Content
6504
5871
  */
6505
- deleteCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
5872
+ deleteCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6506
5873
  /**
6507
5874
  * No description
6508
5875
  *
@@ -6513,7 +5880,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6513
5880
  * @secure
6514
5881
  * @response `204` `void` No Content
6515
5882
  */
6516
- restoreCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
5883
+ restoreCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6517
5884
  /**
6518
5885
  * No description
6519
5886
  *
@@ -6525,7 +5892,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6525
5892
  * @response `200` `SiteConfiguration` Success
6526
5893
  * @response `422` `UnprocessableEntity` Client Error
6527
5894
  */
6528
- createCorporateSiteConfiguration: (corporateId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
5895
+ createCorporateSiteConfiguration: (corporateId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
6529
5896
  /**
6530
5897
  * No description
6531
5898
  *
@@ -6536,7 +5903,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6536
5903
  * @secure
6537
5904
  * @response `200` `SiteConfigurationWithInherited` Success
6538
5905
  */
6539
- getCorporateSiteConfiguration: (corporateId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any, {}>>;
5906
+ getCorporateSiteConfiguration: (corporateId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
6540
5907
  /**
6541
5908
  * No description
6542
5909
  *
@@ -6550,7 +5917,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6550
5917
  */
6551
5918
  replaceCorporateSiteConfiguration: (corporateId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
6552
5919
  applyToChildren?: boolean;
6553
- }, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
5920
+ }, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
6554
5921
  /**
6555
5922
  * No description
6556
5923
  *
@@ -6561,7 +5928,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6561
5928
  * @secure
6562
5929
  * @response `200` `(BranchReduced)[]` Success
6563
5930
  */
6564
- getBranchesByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchReduced[], any, {}>>;
5931
+ getBranchesByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchReduced[], any>>;
6565
5932
  /**
6566
5933
  * No description
6567
5934
  *
@@ -6572,7 +5939,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6572
5939
  * @secure
6573
5940
  * @response `200` `(LoanOfficerPublic)[]` Success
6574
5941
  */
6575
- getLoanOfficersByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic[], any, {}>>;
5942
+ getLoanOfficersByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic[], any>>;
6576
5943
  /**
6577
5944
  * No description
6578
5945
  *
@@ -6592,7 +5959,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6592
5959
  pageNumber?: number;
6593
5960
  sortBy?: string;
6594
5961
  sortDirection?: string;
6595
- }, params?: RequestParams) => Promise<AxiosResponse<DevicePaginated, any, {}>>;
5962
+ }, params?: RequestParams) => Promise<AxiosResponse<DevicePaginated, any>>;
6596
5963
  /**
6597
5964
  * No description
6598
5965
  *
@@ -6603,7 +5970,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6603
5970
  * @secure
6604
5971
  * @response `200` `Device` Success
6605
5972
  */
6606
- getDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<Device, any, {}>>;
5973
+ getDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<Device, any>>;
6607
5974
  /**
6608
5975
  * No description
6609
5976
  *
@@ -6614,7 +5981,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6614
5981
  * @secure
6615
5982
  * @response `200` `Device` Success
6616
5983
  */
6617
- updateDevice: (id: string, data: DeviceRequest, params?: RequestParams) => Promise<AxiosResponse<Device, any, {}>>;
5984
+ updateDevice: (id: string, data: DeviceRequest, params?: RequestParams) => Promise<AxiosResponse<Device, any>>;
6618
5985
  /**
6619
5986
  * No description
6620
5987
  *
@@ -6625,7 +5992,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6625
5992
  * @secure
6626
5993
  * @response `200` `DeviceMDM` Success
6627
5994
  */
6628
- getDeviceBySerialNumber: (sn: string, params?: RequestParams) => Promise<AxiosResponse<DeviceMDM, any, {}>>;
5995
+ getDeviceBySerialNumber: (sn: string, params?: RequestParams) => Promise<AxiosResponse<DeviceMDM, any>>;
6629
5996
  /**
6630
5997
  * No description
6631
5998
  *
@@ -6636,7 +6003,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6636
6003
  * @secure
6637
6004
  * @response `200` `Action` Success
6638
6005
  */
6639
- createDeviceActionBySerialNumber: (sn: string, actionName: string, params?: RequestParams) => Promise<AxiosResponse<Action, any, {}>>;
6006
+ createDeviceActionBySerialNumber: (sn: string, actionName: string, params?: RequestParams) => Promise<AxiosResponse<Action, any>>;
6640
6007
  /**
6641
6008
  * No description
6642
6009
  *
@@ -6650,7 +6017,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6650
6017
  getDocumentBuckets: (query?: {
6651
6018
  /** @default false */
6652
6019
  includeSystemBuckets?: boolean;
6653
- }, params?: RequestParams) => Promise<AxiosResponse<string[], any, {}>>;
6020
+ }, params?: RequestParams) => Promise<AxiosResponse<string[], any>>;
6654
6021
  /**
6655
6022
  * No description
6656
6023
  *
@@ -6663,7 +6030,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6663
6030
  */
6664
6031
  getDocumentTemplates: (query?: {
6665
6032
  showAll?: boolean;
6666
- }, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase[], any, {}>>;
6033
+ }, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase[], any>>;
6667
6034
  /**
6668
6035
  * No description
6669
6036
  *
@@ -6676,7 +6043,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6676
6043
  * @response `404` `ProblemDetails` Not Found
6677
6044
  * @response `422` `UnprocessableEntity` Client Error
6678
6045
  */
6679
- createDocumentTemplate: (data: CreateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any, {}>>;
6046
+ createDocumentTemplate: (data: CreateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any>>;
6680
6047
  /**
6681
6048
  * No description
6682
6049
  *
@@ -6692,7 +6059,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6692
6059
  showAll?: boolean;
6693
6060
  /** @default true */
6694
6061
  publishedOnly?: boolean;
6695
- }, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase[], any, {}>>;
6062
+ }, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase[], any>>;
6696
6063
  /**
6697
6064
  * No description
6698
6065
  *
@@ -6704,7 +6071,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6704
6071
  * @response `200` `DocumentTemplate` Success
6705
6072
  * @response `404` `ProblemDetails` Not Found
6706
6073
  */
6707
- getDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplate, any, {}>>;
6074
+ getDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplate, any>>;
6708
6075
  /**
6709
6076
  * No description
6710
6077
  *
@@ -6718,7 +6085,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6718
6085
  * @response `404` `ProblemDetails` Not Found
6719
6086
  * @response `422` `UnprocessableEntity` Client Error
6720
6087
  */
6721
- replaceDocumentTemplate: (id: string, data: UpdateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any, {}>>;
6088
+ replaceDocumentTemplate: (id: string, data: UpdateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any>>;
6722
6089
  /**
6723
6090
  * No description
6724
6091
  *
@@ -6731,7 +6098,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6731
6098
  * @response `401` `ProblemDetails` Unauthorized
6732
6099
  * @response `404` `ProblemDetails` Not Found
6733
6100
  */
6734
- deleteDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
6101
+ deleteDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6735
6102
  /**
6736
6103
  * No description
6737
6104
  *
@@ -6744,7 +6111,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6744
6111
  * @response `401` `ProblemDetails` Unauthorized
6745
6112
  * @response `404` `ProblemDetails` Not Found
6746
6113
  */
6747
- restoreDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
6114
+ restoreDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6748
6115
  /**
6749
6116
  * No description
6750
6117
  *
@@ -6755,7 +6122,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6755
6122
  * @secure
6756
6123
  * @response `200` `(DocumentTemplateVersion)[]` Success
6757
6124
  */
6758
- getDocumentTemplateVersions: (documentId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion[], any, {}>>;
6125
+ getDocumentTemplateVersions: (documentId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion[], any>>;
6759
6126
  /**
6760
6127
  * No description
6761
6128
  *
@@ -6766,7 +6133,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6766
6133
  * @secure
6767
6134
  * @response `200` `DocumentTemplateVersion` Success
6768
6135
  */
6769
- createDocumentTemplateVersion: (documentId: string, data: DocumentTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any, {}>>;
6136
+ createDocumentTemplateVersion: (documentId: string, data: DocumentTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
6770
6137
  /**
6771
6138
  * No description
6772
6139
  *
@@ -6777,7 +6144,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6777
6144
  * @secure
6778
6145
  * @response `200` `DocumentTemplateVersion` Success
6779
6146
  */
6780
- getDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any, {}>>;
6147
+ getDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
6781
6148
  /**
6782
6149
  * No description
6783
6150
  *
@@ -6788,7 +6155,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6788
6155
  * @secure
6789
6156
  * @response `200` `DocumentTemplateVersion` Success
6790
6157
  */
6791
- replaceDocumentTemplateVersion: (documentId: string, id: string, data: DocumentTemplateVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any, {}>>;
6158
+ replaceDocumentTemplateVersion: (documentId: string, id: string, data: DocumentTemplateVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
6792
6159
  /**
6793
6160
  * No description
6794
6161
  *
@@ -6799,7 +6166,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6799
6166
  * @secure
6800
6167
  * @response `200` `DocumentTemplateVersion` Success
6801
6168
  */
6802
- deleteDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any, {}>>;
6169
+ deleteDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
6803
6170
  /**
6804
6171
  * No description
6805
6172
  *
@@ -6825,7 +6192,19 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6825
6192
  * @default 20
6826
6193
  */
6827
6194
  pageSize?: number;
6828
- }, params?: RequestParams) => Promise<AxiosResponse<EncompassPackageList, any, {}>>;
6195
+ }, params?: RequestParams) => Promise<AxiosResponse<EncompassPackageList, any>>;
6196
+ /**
6197
+ * No description
6198
+ *
6199
+ * @tags Encompass Recipients
6200
+ * @name GetUserRecipients
6201
+ * @request GET:/api/los/encompass/eclose/recipients
6202
+ * @secure
6203
+ * @response `200` `(EncompassRecipientItem)[]` Success
6204
+ * @response `401` `EncompassError` Unauthorized
6205
+ * @response `500` `EncompassError` Server Error
6206
+ */
6207
+ getUserRecipients: (params?: RequestParams) => Promise<AxiosResponse<EncompassRecipientItem[], any>>;
6829
6208
  /**
6830
6209
  * No description
6831
6210
  *
@@ -6840,7 +6219,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6840
6219
  * @response `404` `EncompassError` Not Found
6841
6220
  * @response `500` `EncompassError` Server Error
6842
6221
  */
6843
- createEncompassSession: (data: CreateSessionRequest, params?: RequestParams) => Promise<AxiosResponse<CreateSession, any, {}>>;
6222
+ createEncompassSession: (data: CreateSessionRequest, params?: RequestParams) => Promise<AxiosResponse<CreateSession, any>>;
6844
6223
  /**
6845
6224
  * No description
6846
6225
  *
@@ -6860,7 +6239,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6860
6239
  sortDirection?: string;
6861
6240
  /** @default false */
6862
6241
  includeDeleted?: boolean;
6863
- }, params?: RequestParams) => Promise<AxiosResponse<FilePaginated, any, {}>>;
6242
+ }, params?: RequestParams) => Promise<AxiosResponse<FilePaginated, any>>;
6864
6243
  /**
6865
6244
  * No description
6866
6245
  *
@@ -6878,7 +6257,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6878
6257
  file?: File;
6879
6258
  isPublic?: boolean;
6880
6259
  bucket?: string;
6881
- }, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
6260
+ }, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
6882
6261
  /**
6883
6262
  * No description
6884
6263
  *
@@ -6889,7 +6268,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6889
6268
  * @secure
6890
6269
  * @response `201` `File` Created
6891
6270
  */
6892
- getFileById: (id: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
6271
+ getFileById: (id: string, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
6893
6272
  /**
6894
6273
  * No description
6895
6274
  *
@@ -6901,7 +6280,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6901
6280
  * @response `200` `string` Success
6902
6281
  * @response `422` `UnprocessableEntity` Client Error
6903
6282
  */
6904
- replaceFile: (id: string, data: FileRequest, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
6283
+ replaceFile: (id: string, data: FileRequest, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
6905
6284
  /**
6906
6285
  * No description
6907
6286
  *
@@ -6912,7 +6291,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6912
6291
  * @secure
6913
6292
  * @response `204` `void` No Content
6914
6293
  */
6915
- deleteFile: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
6294
+ deleteFile: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6916
6295
  /**
6917
6296
  * No description
6918
6297
  *
@@ -6930,7 +6309,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6930
6309
  pageNumber?: number;
6931
6310
  sortBy?: string;
6932
6311
  sortDirection?: string;
6933
- }, params?: RequestParams) => Promise<AxiosResponse<FilePaginated, any, {}>>;
6312
+ }, params?: RequestParams) => Promise<AxiosResponse<FilePaginated, any>>;
6934
6313
  /**
6935
6314
  * No description
6936
6315
  *
@@ -6943,7 +6322,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6943
6322
  */
6944
6323
  getForms: (query?: {
6945
6324
  showAll?: boolean;
6946
- }, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms[], any, {}>>;
6325
+ }, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms[], any>>;
6947
6326
  /**
6948
6327
  * No description
6949
6328
  *
@@ -6955,7 +6334,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6955
6334
  * @response `201` `Form` Created
6956
6335
  * @response `422` `UnprocessableEntity` Client Error
6957
6336
  */
6958
- createForm: (data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<Form, any, {}>>;
6337
+ createForm: (data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<Form, any>>;
6959
6338
  /**
6960
6339
  * No description
6961
6340
  *
@@ -6966,7 +6345,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6966
6345
  * @secure
6967
6346
  * @response `200` `Form` Success
6968
6347
  */
6969
- getForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<Form, any, {}>>;
6348
+ getForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<Form, any>>;
6970
6349
  /**
6971
6350
  * No description
6972
6351
  *
@@ -6978,7 +6357,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6978
6357
  * @response `200` `Form` Success
6979
6358
  * @response `422` `UnprocessableEntity` Client Error
6980
6359
  */
6981
- replaceForm: (id: string, data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<Form, any, {}>>;
6360
+ replaceForm: (id: string, data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<Form, any>>;
6982
6361
  /**
6983
6362
  * No description
6984
6363
  *
@@ -6989,7 +6368,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6989
6368
  * @secure
6990
6369
  * @response `204` `void` No Content
6991
6370
  */
6992
- deleteForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
6371
+ deleteForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6993
6372
  /**
6994
6373
  * No description
6995
6374
  *
@@ -7000,7 +6379,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7000
6379
  * @secure
7001
6380
  * @response `200` `Form` Success
7002
6381
  */
7003
- restoreForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<Form, any, {}>>;
6382
+ restoreForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<Form, any>>;
7004
6383
  /**
7005
6384
  * No description
7006
6385
  *
@@ -7015,7 +6394,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7015
6394
  /** @format binary */
7016
6395
  file?: File;
7017
6396
  name?: string;
7018
- }, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionFile, any, {}>>;
6397
+ }, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionFile, any>>;
7019
6398
  /**
7020
6399
  * No description
7021
6400
  *
@@ -7026,7 +6405,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7026
6405
  * @secure
7027
6406
  * @response `204` `void` No Content
7028
6407
  */
7029
- deleteFormSubmissionFile: (formSubmissionFileId: string, formSubmissionId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
6408
+ deleteFormSubmissionFile: (formSubmissionFileId: string, formSubmissionId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7030
6409
  /**
7031
6410
  * No description
7032
6411
  *
@@ -7040,7 +6419,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7040
6419
  downloadFormSubmissionFile: (formSubmissionFileId: string, formSubmissionId: string, query?: {
7041
6420
  /** @format uuid */
7042
6421
  siteConfigurationId?: string;
7043
- }, params?: RequestParams) => Promise<AxiosResponse<FileWithBytes, any, {}>>;
6422
+ }, params?: RequestParams) => Promise<AxiosResponse<FileWithBytes, any>>;
7044
6423
  /**
7045
6424
  * No description
7046
6425
  *
@@ -7058,7 +6437,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7058
6437
  pageNumber?: number;
7059
6438
  sortBy?: string;
7060
6439
  sortDirection?: string;
7061
- }, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionPaginated, any, {}>>;
6440
+ }, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionPaginated, any>>;
7062
6441
  /**
7063
6442
  * No description
7064
6443
  *
@@ -7071,7 +6450,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7071
6450
  */
7072
6451
  createFormSubmission: (data: FormSubmissionRequest, query?: {
7073
6452
  formID?: string;
7074
- }, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any, {}>>;
6453
+ }, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any>>;
7075
6454
  /**
7076
6455
  * No description
7077
6456
  *
@@ -7082,7 +6461,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7082
6461
  * @secure
7083
6462
  * @response `200` `FormSubmission` Success
7084
6463
  */
7085
- getFormSubmission: (id: string, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any, {}>>;
6464
+ getFormSubmission: (id: string, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any>>;
7086
6465
  /**
7087
6466
  * No description
7088
6467
  *
@@ -7093,7 +6472,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7093
6472
  * @secure
7094
6473
  * @response `200` `FormSubmission` Success
7095
6474
  */
7096
- replaceFormSubmission: (id: string, data: FormSubmissionRequest, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any, {}>>;
6475
+ replaceFormSubmission: (id: string, data: FormSubmissionRequest, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any>>;
7097
6476
  /**
7098
6477
  * No description
7099
6478
  *
@@ -7104,7 +6483,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7104
6483
  * @secure
7105
6484
  * @response `204` `void` No Content
7106
6485
  */
7107
- deleteFormSubmission: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
6486
+ deleteFormSubmission: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7108
6487
  /**
7109
6488
  * No description
7110
6489
  *
@@ -7122,7 +6501,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7122
6501
  pageNumber?: number;
7123
6502
  sortBy?: string;
7124
6503
  sortDirection?: string;
7125
- }, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionPaginated, any, {}>>;
6504
+ }, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionPaginated, any>>;
7126
6505
  /**
7127
6506
  * No description
7128
6507
  *
@@ -7133,7 +6512,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7133
6512
  * @secure
7134
6513
  * @response `200` `(FormVersion)[]` Success
7135
6514
  */
7136
- getFormVersions: (formId: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion[], any, {}>>;
6515
+ getFormVersions: (formId: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion[], any>>;
7137
6516
  /**
7138
6517
  * No description
7139
6518
  *
@@ -7144,7 +6523,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7144
6523
  * @secure
7145
6524
  * @response `200` `FormVersion` Success
7146
6525
  */
7147
- createFormVersion: (formId: string, data: FormVersionRequest, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any, {}>>;
6526
+ createFormVersion: (formId: string, data: FormVersionRequest, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
7148
6527
  /**
7149
6528
  * No description
7150
6529
  *
@@ -7155,7 +6534,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7155
6534
  * @secure
7156
6535
  * @response `200` `FormVersion` Success
7157
6536
  */
7158
- getFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any, {}>>;
6537
+ getFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
7159
6538
  /**
7160
6539
  * No description
7161
6540
  *
@@ -7166,7 +6545,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7166
6545
  * @secure
7167
6546
  * @response `200` `FormVersion` Success
7168
6547
  */
7169
- replaceFormVersion: (formId: string, id: string, data: FormVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any, {}>>;
6548
+ replaceFormVersion: (formId: string, id: string, data: FormVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
7170
6549
  /**
7171
6550
  * No description
7172
6551
  *
@@ -7177,7 +6556,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7177
6556
  * @secure
7178
6557
  * @response `200` `FormVersion` Success
7179
6558
  */
7180
- deleteFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any, {}>>;
6559
+ deleteFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any>>;
7181
6560
  /**
7182
6561
  * No description
7183
6562
  *
@@ -7188,7 +6567,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7188
6567
  * @secure
7189
6568
  * @response `200` `Record<string,any>` Success
7190
6569
  */
7191
- getLoanData: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Record<string, any>, any, {}>>;
6570
+ getLoanData: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Record<string, any>, any>>;
7192
6571
  /**
7193
6572
  * No description
7194
6573
  *
@@ -7201,7 +6580,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7201
6580
  * @response `200` `string` Success
7202
6581
  * @response `422` `UnprocessableEntity` Client Error
7203
6582
  */
7204
- updateLoanConsentAndCustomFieldsObsolete: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
6583
+ updateLoanConsentAndCustomFieldsObsolete: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
7205
6584
  /**
7206
6585
  * No description
7207
6586
  *
@@ -7212,7 +6591,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7212
6591
  * @secure
7213
6592
  * @response `200` `GetReport` Success
7214
6593
  */
7215
- getLoansReport: (data: GetReportRequest, params?: RequestParams) => Promise<AxiosResponse<GetReport, any, {}>>;
6594
+ getLoansReport: (data: GetReportRequest, params?: RequestParams) => Promise<AxiosResponse<GetReport, any>>;
7216
6595
  /**
7217
6596
  * No description
7218
6597
  *
@@ -7229,7 +6608,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7229
6608
  createLoan: (data: any, query?: {
7230
6609
  /** @default false */
7231
6610
  isPatch?: boolean;
7232
- }, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
6611
+ }, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
7233
6612
  /**
7234
6613
  * No description
7235
6614
  *
@@ -7245,7 +6624,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7245
6624
  createLoanInternal: (data: any, query?: {
7246
6625
  /** @default false */
7247
6626
  isPatch?: boolean;
7248
- }, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
6627
+ }, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
7249
6628
  /**
7250
6629
  * No description
7251
6630
  *
@@ -7257,7 +6636,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7257
6636
  * @response `200` `string` Success
7258
6637
  * @response `422` `UnprocessableEntity` Client Error
7259
6638
  */
7260
- updateLoanCustomFields: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
6639
+ updateLoanCustomFields: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
7261
6640
  /**
7262
6641
  * No description
7263
6642
  *
@@ -7270,7 +6649,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7270
6649
  * @response `202` `string` Accepted
7271
6650
  * @response `422` `UnprocessableEntity` Client Error
7272
6651
  */
7273
- updateLoanConsent: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
6652
+ updateLoanConsent: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
7274
6653
  /**
7275
6654
  * No description
7276
6655
  *
@@ -7281,7 +6660,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7281
6660
  * @secure
7282
6661
  * @response `200` `(DocumentData)[]` Success
7283
6662
  */
7284
- getTaskDocumentsByLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentData[], any, {}>>;
6663
+ getTaskDocumentsByLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentData[], any>>;
7285
6664
  /**
7286
6665
  * No description
7287
6666
  *
@@ -7295,7 +6674,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7295
6674
  getLoanDocumentContent: (loanId: string, documentId: string, query?: {
7296
6675
  /** @default "base64" */
7297
6676
  contentType?: string;
7298
- }, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
6677
+ }, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7299
6678
  /**
7300
6679
  * No description
7301
6680
  *
@@ -7306,7 +6685,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7306
6685
  * @secure
7307
6686
  * @response `204` `void` No Content
7308
6687
  */
7309
- getLoanRecipients: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
6688
+ getLoanRecipients: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7310
6689
  /**
7311
6690
  * No description
7312
6691
  *
@@ -7317,7 +6696,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7317
6696
  * @secure
7318
6697
  * @response `200` `(PreliminaryCondition)[]` Success
7319
6698
  */
7320
- getPreliminaryConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<PreliminaryCondition[], any, {}>>;
6699
+ getPreliminaryConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<PreliminaryCondition[], any>>;
7321
6700
  /**
7322
6701
  * No description
7323
6702
  *
@@ -7328,7 +6707,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7328
6707
  * @secure
7329
6708
  * @response `200` `(UnderwritingCondition)[]` Success
7330
6709
  */
7331
- getUnderwritingConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UnderwritingCondition[], any, {}>>;
6710
+ getUnderwritingConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UnderwritingCondition[], any>>;
7332
6711
  /**
7333
6712
  * No description
7334
6713
  *
@@ -7339,7 +6718,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7339
6718
  * @secure
7340
6719
  * @response `200` `string` Success
7341
6720
  */
7342
- getLoanEmbeddedSigningLink: (envelopeId: string, userName: string, email: string, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
6721
+ getLoanEmbeddedSigningLink: (envelopeId: string, userName: string, email: string, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
7343
6722
  /**
7344
6723
  * No description
7345
6724
  *
@@ -7351,7 +6730,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7351
6730
  * @secure
7352
6731
  * @response `200` `DocumentDataRequest` Success
7353
6732
  */
7354
- createLegacyLoanDocument: (data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any, {}>>;
6733
+ createLegacyLoanDocument: (data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any>>;
7355
6734
  /**
7356
6735
  * No description
7357
6736
  *
@@ -7368,7 +6747,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7368
6747
  createEditDraftForLoan: (loanId: string, query?: {
7369
6748
  /** @default false */
7370
6749
  isCoBorrower?: boolean;
7371
- }, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
6750
+ }, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
7372
6751
  /**
7373
6752
  * No description
7374
6753
  *
@@ -7384,7 +6763,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7384
6763
  file?: File;
7385
6764
  /** @format int32 */
7386
6765
  weight?: number;
7387
- }, params?: RequestParams) => Promise<AxiosResponse<ListingFile, any, {}>>;
6766
+ }, params?: RequestParams) => Promise<AxiosResponse<ListingFile, any>>;
7388
6767
  /**
7389
6768
  * No description
7390
6769
  *
@@ -7395,7 +6774,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7395
6774
  * @secure
7396
6775
  * @response `200` `ListingFile` Success
7397
6776
  */
7398
- updateListingFiles: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingFile, any, {}>>;
6777
+ updateListingFiles: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingFile, any>>;
7399
6778
  /**
7400
6779
  * No description
7401
6780
  *
@@ -7406,7 +6785,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7406
6785
  * @secure
7407
6786
  * @response `204` `Listing` No Content
7408
6787
  */
7409
- removeListingFile: (listingId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
6788
+ removeListingFile: (listingId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
7410
6789
  /**
7411
6790
  * No description
7412
6791
  *
@@ -7424,7 +6803,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7424
6803
  file?: File;
7425
6804
  /** @format int32 */
7426
6805
  weight?: number;
7427
- }, params?: RequestParams) => Promise<AxiosResponse<ListingPhoto, any, {}>>;
6806
+ }, params?: RequestParams) => Promise<AxiosResponse<ListingPhoto, any>>;
7428
6807
  /**
7429
6808
  * No description
7430
6809
  *
@@ -7435,7 +6814,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7435
6814
  * @secure
7436
6815
  * @response `200` `(ListingPhoto)[]` Success
7437
6816
  */
7438
- updateListingPhotos: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingPhoto[], any, {}>>;
6817
+ updateListingPhotos: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingPhoto[], any>>;
7439
6818
  /**
7440
6819
  * No description
7441
6820
  *
@@ -7446,7 +6825,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7446
6825
  * @secure
7447
6826
  * @response `204` `Listing` No Content
7448
6827
  */
7449
- removeListingPhoto: (listingId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
6828
+ removeListingPhoto: (listingId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
7450
6829
  /**
7451
6830
  * No description
7452
6831
  *
@@ -7464,7 +6843,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7464
6843
  pageNumber?: number;
7465
6844
  sortBy?: string;
7466
6845
  sortDirection?: string;
7467
- }, params?: RequestParams) => Promise<AxiosResponse<ListingPaginated, any, {}>>;
6846
+ }, params?: RequestParams) => Promise<AxiosResponse<ListingPaginated, any>>;
7468
6847
  /**
7469
6848
  * No description
7470
6849
  *
@@ -7475,7 +6854,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7475
6854
  * @secure
7476
6855
  * @response `201` `Listing` Created
7477
6856
  */
7478
- createListing: (data: ListingRequest, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
6857
+ createListing: (data: ListingRequest, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
7479
6858
  /**
7480
6859
  * No description
7481
6860
  *
@@ -7486,7 +6865,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7486
6865
  * @secure
7487
6866
  * @response `200` `Listing` Success
7488
6867
  */
7489
- getListingBySlug: (slug: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
6868
+ getListingBySlug: (slug: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
7490
6869
  /**
7491
6870
  * No description
7492
6871
  *
@@ -7497,7 +6876,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7497
6876
  * @secure
7498
6877
  * @response `200` `Listing` Success
7499
6878
  */
7500
- getListing: (id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
6879
+ getListing: (id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
7501
6880
  /**
7502
6881
  * No description
7503
6882
  *
@@ -7508,7 +6887,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7508
6887
  * @secure
7509
6888
  * @response `200` `Listing` Success
7510
6889
  */
7511
- replaceListing: (id: string, data: ListingRequest, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
6890
+ replaceListing: (id: string, data: ListingRequest, params?: RequestParams) => Promise<AxiosResponse<Listing, any>>;
7512
6891
  /**
7513
6892
  * No description
7514
6893
  *
@@ -7519,7 +6898,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7519
6898
  * @secure
7520
6899
  * @response `204` `void` No Content
7521
6900
  */
7522
- deleteListing: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
6901
+ deleteListing: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7523
6902
  /**
7524
6903
  * No description
7525
6904
  *
@@ -7537,7 +6916,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7537
6916
  pageNumber?: number;
7538
6917
  sortBy?: string;
7539
6918
  sortDirection?: string;
7540
- }, params?: RequestParams) => Promise<AxiosResponse<ListingPaginated, any, {}>>;
6919
+ }, params?: RequestParams) => Promise<AxiosResponse<ListingPaginated, any>>;
7541
6920
  /**
7542
6921
  * No description
7543
6922
  *
@@ -7551,7 +6930,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7551
6930
  updateListingBackgroundImage: (id: string, data: {
7552
6931
  /** @format binary */
7553
6932
  file?: File;
7554
- }, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
6933
+ }, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
7555
6934
  /**
7556
6935
  * No description
7557
6936
  *
@@ -7562,7 +6941,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7562
6941
  * @secure
7563
6942
  * @response `204` `void` No Content
7564
6943
  */
7565
- deleteListingBackgroundImage: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
6944
+ deleteListingBackgroundImage: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7566
6945
  /**
7567
6946
  * No description
7568
6947
  *
@@ -7573,7 +6952,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7573
6952
  * @secure
7574
6953
  * @response `200` `File` Success
7575
6954
  */
7576
- getListingOpenHouseFlyer: (id: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
6955
+ getListingOpenHouseFlyer: (id: string, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
7577
6956
  /**
7578
6957
  * No description
7579
6958
  *
@@ -7584,7 +6963,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7584
6963
  * @secure
7585
6964
  * @response `200` `RunLOCalculation` Success
7586
6965
  */
7587
- getLoanCalculator: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any, {}>>;
6966
+ getLoanCalculator: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any>>;
7588
6967
  /**
7589
6968
  * No description
7590
6969
  *
@@ -7597,7 +6976,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7597
6976
  * @response `422` `UnprocessableEntity` Client Error
7598
6977
  * @response `423` `UnprocessableEntity` Client Error
7599
6978
  */
7600
- runLoanCalculator: (loanId: string, data: RunLOCalculationRequest, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any, {}>>;
6979
+ runLoanCalculator: (loanId: string, data: RunLOCalculationRequest, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any>>;
7601
6980
  /**
7602
6981
  * No description
7603
6982
  *
@@ -7608,7 +6987,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7608
6987
  * @secure
7609
6988
  * @response `200` `LoanComparison` Success
7610
6989
  */
7611
- getLoanComparisons: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<LoanComparison, any, {}>>;
6990
+ getLoanComparisons: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<LoanComparison, any>>;
7612
6991
  /**
7613
6992
  * No description
7614
6993
  *
@@ -7621,7 +7000,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7621
7000
  * @response `422` `UnprocessableEntity` Client Error
7622
7001
  * @response `423` `UnprocessableEntity` Client Error
7623
7002
  */
7624
- createLoanComparison: (loanId: string, index: number, data: LoanComparisonScenario, params?: RequestParams) => Promise<AxiosResponse<LoanComparisonScenario, any, {}>>;
7003
+ createLoanComparison: (loanId: string, index: number, data: LoanComparisonScenario, params?: RequestParams) => Promise<AxiosResponse<LoanComparisonScenario, any>>;
7625
7004
  /**
7626
7005
  * No description
7627
7006
  *
@@ -7632,7 +7011,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7632
7011
  * @secure
7633
7012
  * @response `204` `void` No Content
7634
7013
  */
7635
- deleteLoanComparison: (loanId: string, index: number, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
7014
+ deleteLoanComparison: (loanId: string, index: number, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7636
7015
  /**
7637
7016
  * No description
7638
7017
  *
@@ -7644,7 +7023,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7644
7023
  * @response `204` `void` No Content
7645
7024
  * @response `422` `UnprocessableEntity` Client Error
7646
7025
  */
7647
- createLoanComparisonPdf: (loanId: string, data: PostLoanComparisonPdfRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
7026
+ createLoanComparisonPdf: (loanId: string, data: PostLoanComparisonPdfRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7648
7027
  /**
7649
7028
  * No description
7650
7029
  *
@@ -7655,7 +7034,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7655
7034
  * @secure
7656
7035
  * @response `200` `(string)[]` Success
7657
7036
  */
7658
- getLoanDocumentBuckets: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<string[], any, {}>>;
7037
+ getLoanDocumentBuckets: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<string[], any>>;
7659
7038
  /**
7660
7039
  * No description
7661
7040
  *
@@ -7666,7 +7045,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7666
7045
  * @secure
7667
7046
  * @response `201` `(string)[]` Created
7668
7047
  */
7669
- createLoanDocumentBuckets: (loanId: string, data: string[], params?: RequestParams) => Promise<AxiosResponse<string[], any, {}>>;
7048
+ createLoanDocumentBuckets: (loanId: string, data: string[], params?: RequestParams) => Promise<AxiosResponse<string[], any>>;
7670
7049
  /**
7671
7050
  * No description
7672
7051
  *
@@ -7681,7 +7060,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7681
7060
  getLoanDocument: (loanId: string, documentId: string, query?: {
7682
7061
  /** @default false */
7683
7062
  preview?: boolean;
7684
- }, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any, {}>>;
7063
+ }, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any>>;
7685
7064
  /**
7686
7065
  * No description
7687
7066
  *
@@ -7699,7 +7078,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7699
7078
  pageNumber?: number;
7700
7079
  sortBy?: string;
7701
7080
  sortDirection?: string;
7702
- }, params?: RequestParams) => Promise<AxiosResponse<LoanDocumentSearchPaginated, any, {}>>;
7081
+ }, params?: RequestParams) => Promise<AxiosResponse<LoanDocumentSearchPaginated, any>>;
7703
7082
  /**
7704
7083
  * @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).
7705
7084
  *
@@ -7713,7 +7092,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7713
7092
  getLoanDocumentFolders: (loanId: string, data: DocumentFoldersRequest, query?: {
7714
7093
  /** @default false */
7715
7094
  folderNamesOnly?: boolean;
7716
- }, params?: RequestParams) => Promise<AxiosResponse<DocumentFolder[], any, {}>>;
7095
+ }, params?: RequestParams) => Promise<AxiosResponse<DocumentFolder[], any>>;
7717
7096
  /**
7718
7097
  * No description
7719
7098
  *
@@ -7722,10 +7101,10 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7722
7101
  * @summary Download By ID
7723
7102
  * @request GET:/api/loans/{loanId}/documents/{documentId}/download
7724
7103
  * @secure
7725
- * @response `200` `string` Success
7104
+ * @response `200` `Blob` Success
7726
7105
  * @response `404` `ProblemDetails` Not Found
7727
7106
  */
7728
- downloadLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
7107
+ downloadLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<Blob, any>>;
7729
7108
  /**
7730
7109
  * No description
7731
7110
  *
@@ -7743,7 +7122,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7743
7122
  /** @format binary */
7744
7123
  file?: File;
7745
7124
  bucket?: string;
7746
- }, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any, {}>>;
7125
+ }, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any>>;
7747
7126
  /**
7748
7127
  * No description
7749
7128
  *
@@ -7756,7 +7135,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7756
7135
  * @response `404` `ProblemDetails` Not Found
7757
7136
  * @response `422` `UnprocessableEntity` Client Error
7758
7137
  */
7759
- retryFailedLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any, {}>>;
7138
+ retryFailedLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any>>;
7760
7139
  /**
7761
7140
  * No description
7762
7141
  *
@@ -7767,7 +7146,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7767
7146
  * @secure
7768
7147
  * @response `200` `DocumentDataRequest` Success
7769
7148
  */
7770
- generateLoanDocument: (loanId: string, data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any, {}>>;
7149
+ generateLoanDocument: (loanId: string, data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any>>;
7771
7150
  /**
7772
7151
  * No description
7773
7152
  *
@@ -7780,7 +7159,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7780
7159
  * @response `400` `ProblemDetails` Bad Request
7781
7160
  * @response `404` `ProblemDetails` Not Found
7782
7161
  */
7783
- sendLoanDocuments: (loanId: string, data: SendLoanDocumentsRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
7162
+ sendLoanDocuments: (loanId: string, data: SendLoanDocumentsRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7784
7163
  /**
7785
7164
  * @description Fetches all documents from Encompass that don't exist locally and stores them in S3
7786
7165
  *
@@ -7792,7 +7171,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7792
7171
  * @response `200` `DocumentSync` Success
7793
7172
  * @response `404` `ProblemDetails` Not Found
7794
7173
  */
7795
- syncLoanDocumentsFromLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentSync, any, {}>>;
7174
+ syncLoanDocumentsFromLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentSync, any>>;
7796
7175
  /**
7797
7176
  * @description Re-attempts to push a failed document to LOS
7798
7177
  *
@@ -7805,7 +7184,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7805
7184
  * @response `404` `ProblemDetails` Not Found
7806
7185
  * @response `423` `ProblemDetails` Client Error
7807
7186
  */
7808
- retrySyncLoanDocumentToLos: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
7187
+ retrySyncLoanDocumentToLos: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7809
7188
  /**
7810
7189
  * No description
7811
7190
  *
@@ -7816,7 +7195,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7816
7195
  * @secure
7817
7196
  * @response `201` `Draft` Created
7818
7197
  */
7819
- createLoanDraft: (data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
7198
+ createLoanDraft: (data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
7820
7199
  /**
7821
7200
  * No description
7822
7201
  *
@@ -7827,7 +7206,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7827
7206
  * @secure
7828
7207
  * @response `200` `(DraftContent)[]` Success
7829
7208
  */
7830
- getLoanDrafts: (params?: RequestParams) => Promise<AxiosResponse<DraftContent[], any, {}>>;
7209
+ getLoanDrafts: (params?: RequestParams) => Promise<AxiosResponse<DraftContent[], any>>;
7831
7210
  /**
7832
7211
  * No description
7833
7212
  *
@@ -7838,7 +7217,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7838
7217
  * @secure
7839
7218
  * @response `200` `DraftContent` Success
7840
7219
  */
7841
- getLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<DraftContent, any, {}>>;
7220
+ getLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<DraftContent, any>>;
7842
7221
  /**
7843
7222
  * No description
7844
7223
  *
@@ -7849,7 +7228,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7849
7228
  * @secure
7850
7229
  * @response `200` `Draft` Success
7851
7230
  */
7852
- replaceLoanDraft: (draftId: string, data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
7231
+ replaceLoanDraft: (draftId: string, data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
7853
7232
  /**
7854
7233
  * No description
7855
7234
  *
@@ -7860,7 +7239,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7860
7239
  * @secure
7861
7240
  * @response `204` `void` No Content
7862
7241
  */
7863
- deleteLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
7242
+ deleteLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
7864
7243
  /**
7865
7244
  * No description
7866
7245
  *
@@ -7878,7 +7257,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7878
7257
  pageNumber?: number;
7879
7258
  sortBy?: string;
7880
7259
  sortDirection?: string;
7881
- }, params?: RequestParams) => Promise<AxiosResponse<DraftContentPaginated, any, {}>>;
7260
+ }, params?: RequestParams) => Promise<AxiosResponse<DraftContentPaginated, any>>;
7882
7261
  /**
7883
7262
  * No description
7884
7263
  *
@@ -7889,7 +7268,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7889
7268
  * @secure
7890
7269
  * @response `200` `Draft` Success
7891
7270
  */
7892
- reassignLoanOfficer: (draftId: string, data: DraftLoanOfficerReassignRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
7271
+ reassignLoanOfficer: (draftId: string, data: DraftLoanOfficerReassignRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
7893
7272
  /**
7894
7273
  * No description
7895
7274
  *
@@ -7900,7 +7279,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7900
7279
  * @secure
7901
7280
  * @response `200` `Draft` Success
7902
7281
  */
7903
- restoreLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
7282
+ restoreLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
7904
7283
  /**
7905
7284
  * No description
7906
7285
  *
@@ -7920,7 +7299,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7920
7299
  pageNumber?: number;
7921
7300
  sortBy?: string;
7922
7301
  sortDirection?: string;
7923
- }, params?: RequestParams) => Promise<AxiosResponse<LoanImportPaginated, any, {}>>;
7302
+ }, params?: RequestParams) => Promise<AxiosResponse<LoanImportPaginated, any>>;
7924
7303
  /**
7925
7304
  * No description
7926
7305
  *
@@ -7931,7 +7310,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7931
7310
  * @secure
7932
7311
  * @response `201` `LoanImport` Created
7933
7312
  */
7934
- createLoanImport: (data: CreateLoanImportRequest, params?: RequestParams) => Promise<AxiosResponse<LoanImport, any, {}>>;
7313
+ createLoanImport: (data: CreateLoanImportRequest, params?: RequestParams) => Promise<AxiosResponse<LoanImport, any>>;
7935
7314
  /**
7936
7315
  * No description
7937
7316
  *
@@ -7942,7 +7321,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7942
7321
  * @secure
7943
7322
  * @response `200` `LoanImport` Success
7944
7323
  */
7945
- getLoanImport: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanImport, any, {}>>;
7324
+ getLoanImport: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanImport, any>>;
7946
7325
  /**
7947
7326
  * No description
7948
7327
  *
@@ -7960,7 +7339,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7960
7339
  pageNumber?: number;
7961
7340
  sortBy?: string;
7962
7341
  sortDirection?: string;
7963
- }, params?: RequestParams) => Promise<AxiosResponse<LoanImportLogPaginated, any, {}>>;
7342
+ }, params?: RequestParams) => Promise<AxiosResponse<LoanImportLogPaginated, any>>;
7964
7343
  /**
7965
7344
  * No description
7966
7345
  *
@@ -7972,7 +7351,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7972
7351
  * @response `200` `(Invite)[]` Success
7973
7352
  * @response `404` `ProblemDetails` Not Found
7974
7353
  */
7975
- getLoanInvites: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Invite[], any, {}>>;
7354
+ getLoanInvites: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Invite[], any>>;
7976
7355
  /**
7977
7356
  * No description
7978
7357
  *
@@ -7984,7 +7363,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
7984
7363
  * @response `200` `(Invite)[]` Success
7985
7364
  * @response `404` `ProblemDetails` Not Found
7986
7365
  */
7987
- inviteLoanContacts: (loanId: string, data: string[], params?: RequestParams) => Promise<AxiosResponse<Invite[], any, {}>>;
7366
+ inviteLoanContacts: (loanId: string, data: string[], params?: RequestParams) => Promise<AxiosResponse<Invite[], any>>;
7988
7367
  /**
7989
7368
  * No description
7990
7369
  *
@@ -8002,7 +7381,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8002
7381
  pageNumber?: number;
8003
7382
  sortBy?: string;
8004
7383
  sortDirection?: string;
8005
- }, params?: RequestParams) => Promise<AxiosResponse<LoanLogPaginated, any, {}>>;
7384
+ }, params?: RequestParams) => Promise<AxiosResponse<LoanLogPaginated, any>>;
8006
7385
  /**
8007
7386
  * No description
8008
7387
  *
@@ -8014,7 +7393,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8014
7393
  * @response `200` `LoanLogDetail` Success
8015
7394
  * @response `404` `ProblemDetails` Not Found
8016
7395
  */
8017
- getLoanLogById: (loanId: string, loanLogId: string, params?: RequestParams) => Promise<AxiosResponse<LoanLogDetail, any, {}>>;
7396
+ getLoanLogById: (loanId: string, loanLogId: string, params?: RequestParams) => Promise<AxiosResponse<LoanLogDetail, any>>;
8018
7397
  /**
8019
7398
  * No description
8020
7399
  *
@@ -8033,7 +7412,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8033
7412
  pageNumber?: number;
8034
7413
  sortBy?: string;
8035
7414
  sortDirection?: string;
8036
- }, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any, {}>>;
7415
+ }, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any>>;
8037
7416
  /**
8038
7417
  * No description
8039
7418
  *
@@ -8051,7 +7430,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8051
7430
  pageNumber?: number;
8052
7431
  sortBy?: string;
8053
7432
  sortDirection?: string;
8054
- }, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any, {}>>;
7433
+ }, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any>>;
8055
7434
  /**
8056
7435
  * No description
8057
7436
  *
@@ -8062,7 +7441,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8062
7441
  * @secure
8063
7442
  * @response `200` `BranchUser` Success
8064
7443
  */
8065
- getLoanOfficer: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any, {}>>;
7444
+ getLoanOfficer: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any>>;
8066
7445
  /**
8067
7446
  * No description
8068
7447
  *
@@ -8074,7 +7453,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8074
7453
  * @response `200` `SiteConfiguration` Success
8075
7454
  * @response `422` `UnprocessableEntity` Client Error
8076
7455
  */
8077
- createLoanOfficerSiteConfiguration: (loanOfficerId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
7456
+ createLoanOfficerSiteConfiguration: (loanOfficerId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
8078
7457
  /**
8079
7458
  * No description
8080
7459
  *
@@ -8085,7 +7464,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8085
7464
  * @secure
8086
7465
  * @response `200` `SiteConfigurationWithInherited` Success
8087
7466
  */
8088
- getLoanOfficerSiteConfiguration: (loanOfficerId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any, {}>>;
7467
+ getLoanOfficerSiteConfiguration: (loanOfficerId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
8089
7468
  /**
8090
7469
  * No description
8091
7470
  *
@@ -8099,7 +7478,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8099
7478
  */
8100
7479
  replaceLoanOfficerSiteConfiguration: (loanOfficerId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
8101
7480
  applyToChildren?: boolean;
8102
- }, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
7481
+ }, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
8103
7482
  /**
8104
7483
  * No description
8105
7484
  *
@@ -8117,7 +7496,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8117
7496
  pageNumber?: number;
8118
7497
  sortBy?: string;
8119
7498
  sortDirection?: string;
8120
- }, params?: RequestParams) => Promise<AxiosResponse<LoanQueuePaginated, any, {}>>;
7499
+ }, params?: RequestParams) => Promise<AxiosResponse<LoanQueuePaginated, any>>;
8121
7500
  /**
8122
7501
  * No description
8123
7502
  *
@@ -8129,7 +7508,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8129
7508
  * @response `200` `any` Success
8130
7509
  * @response `404` `ProblemDetails` Not Found
8131
7510
  */
8132
- getLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
7511
+ getLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<any, any>>;
8133
7512
  /**
8134
7513
  * No description
8135
7514
  *
@@ -8141,7 +7520,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8141
7520
  * @response `200` `LoanQueueWithData` Success
8142
7521
  * @response `404` `ProblemDetails` Not Found
8143
7522
  */
8144
- replaceLoanQueue: (loanQueueId: string, data: UpdateLoanQueueRequest, params?: RequestParams) => Promise<AxiosResponse<LoanQueueWithData, any, {}>>;
7523
+ replaceLoanQueue: (loanQueueId: string, data: UpdateLoanQueueRequest, params?: RequestParams) => Promise<AxiosResponse<LoanQueueWithData, any>>;
8145
7524
  /**
8146
7525
  * No description
8147
7526
  *
@@ -8153,7 +7532,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8153
7532
  * @response `204` `void` No Content
8154
7533
  * @response `404` `ProblemDetails` Not Found
8155
7534
  */
8156
- deleteLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
7535
+ deleteLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8157
7536
  /**
8158
7537
  * No description
8159
7538
  *
@@ -8165,7 +7544,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8165
7544
  * @response `204` `void` No Content
8166
7545
  * @response `404` `ProblemDetails` Not Found
8167
7546
  */
8168
- retryLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
7547
+ retryLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8169
7548
  /**
8170
7549
  * No description
8171
7550
  *
@@ -8177,7 +7556,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8177
7556
  * @response `200` `Loan` Success
8178
7557
  * @response `404` `ProblemDetails` Not Found
8179
7558
  */
8180
- getLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any, {}>>;
7559
+ getLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any>>;
8181
7560
  /**
8182
7561
  * No description
8183
7562
  *
@@ -8188,7 +7567,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8188
7567
  * @secure
8189
7568
  * @response `200` `GetApplications` Success
8190
7569
  */
8191
- getLoans: (params?: RequestParams) => Promise<AxiosResponse<GetApplications, any, {}>>;
7570
+ getLoans: (params?: RequestParams) => Promise<AxiosResponse<GetApplications, any>>;
8192
7571
  /**
8193
7572
  * No description
8194
7573
  *
@@ -8202,7 +7581,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8202
7581
  * @response `401` `ProblemDetails` Unauthorized
8203
7582
  * @response `403` `ProblemDetails` Forbidden
8204
7583
  */
8205
- createLoanv3: (data: LoanApplicationRequest, params?: RequestParams) => Promise<AxiosResponse<LoanApplication, any, {}>>;
7584
+ createLoanv3: (data: LoanApplicationRequest, params?: RequestParams) => Promise<AxiosResponse<LoanApplication, any>>;
8206
7585
  /**
8207
7586
  * No description
8208
7587
  *
@@ -8220,7 +7599,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8220
7599
  pageNumber?: number;
8221
7600
  sortBy?: string;
8222
7601
  sortDirection?: string;
8223
- }, params?: RequestParams) => Promise<AxiosResponse<LoanListPaginated, any, {}>>;
7602
+ }, params?: RequestParams) => Promise<AxiosResponse<LoanListPaginated, any>>;
8224
7603
  /**
8225
7604
  * No description
8226
7605
  *
@@ -8236,7 +7615,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8236
7615
  * @response `404` `ProblemDetails` Not Found
8237
7616
  * @response `409` `any` Conflict
8238
7617
  */
8239
- updateLoan: (loanId: string, data: any, params?: RequestParams) => Promise<AxiosResponse<Loan, any, {}>>;
7618
+ updateLoan: (loanId: string, data: any, params?: RequestParams) => Promise<AxiosResponse<Loan, any>>;
8240
7619
  /**
8241
7620
  * No description
8242
7621
  *
@@ -8249,7 +7628,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8249
7628
  * @response `400` `ProblemDetails` Bad Request
8250
7629
  * @response `404` `ProblemDetails` Not Found
8251
7630
  */
8252
- completeBorrowerApplication: (loanId: string, borrowerId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
7631
+ completeBorrowerApplication: (loanId: string, borrowerId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8253
7632
  /**
8254
7633
  * No description
8255
7634
  *
@@ -8260,7 +7639,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8260
7639
  * @secure
8261
7640
  * @response `200` `Loan` Success
8262
7641
  */
8263
- importLoanFromLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any, {}>>;
7642
+ importLoanFromLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any>>;
8264
7643
  /**
8265
7644
  * No description
8266
7645
  *
@@ -8272,7 +7651,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8272
7651
  * @response `202` `void` Accepted
8273
7652
  * @response `404` `ProblemDetails` Not Found
8274
7653
  */
8275
- syncLoanToLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
7654
+ syncLoanToLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8276
7655
  /**
8277
7656
  * No description
8278
7657
  *
@@ -8291,7 +7670,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8291
7670
  pageNumber?: number;
8292
7671
  sortBy?: string;
8293
7672
  sortDirection?: string;
8294
- }, params?: RequestParams) => Promise<AxiosResponse<TaskCommentPaginated, any, {}>>;
7673
+ }, params?: RequestParams) => Promise<AxiosResponse<TaskCommentPaginated, any>>;
8295
7674
  /**
8296
7675
  * No description
8297
7676
  *
@@ -8303,7 +7682,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8303
7682
  * @response `200` `TaskComment` Success
8304
7683
  * @response `404` `ProblemDetails` Not Found
8305
7684
  */
8306
- getLoanTaskComment: (id: string, loanId: string, userLoanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any, {}>>;
7685
+ getLoanTaskComment: (id: string, loanId: string, userLoanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any>>;
8307
7686
  /**
8308
7687
  * No description
8309
7688
  *
@@ -8315,7 +7694,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8315
7694
  * @response `201` `TaskComment` Created
8316
7695
  * @response `404` `ProblemDetails` Not Found
8317
7696
  */
8318
- createLoanTaskComment: (loanId: string, userLoanTaskId: string, data: TaskCommentRequest, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any, {}>>;
7697
+ createLoanTaskComment: (loanId: string, userLoanTaskId: string, data: TaskCommentRequest, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any>>;
8319
7698
  /**
8320
7699
  * No description
8321
7700
  *
@@ -8327,7 +7706,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8327
7706
  * @response `200` `TaskComment` Success
8328
7707
  * @response `404` `ProblemDetails` Not Found
8329
7708
  */
8330
- replaceLoanTaskComment: (loanId: string, userLoanTaskId: string, commentId: string, data: TaskCommentRequest, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any, {}>>;
7709
+ replaceLoanTaskComment: (loanId: string, userLoanTaskId: string, commentId: string, data: TaskCommentRequest, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any>>;
8331
7710
  /**
8332
7711
  * No description
8333
7712
  *
@@ -8339,7 +7718,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8339
7718
  * @response `204` `void` No Content
8340
7719
  * @response `404` `ProblemDetails` Not Found
8341
7720
  */
8342
- deleteLoanTaskComment: (loanId: string, userLoanTaskId: string, commentId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
7721
+ deleteLoanTaskComment: (loanId: string, userLoanTaskId: string, commentId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8343
7722
  /**
8344
7723
  * No description
8345
7724
  *
@@ -8357,7 +7736,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8357
7736
  /** @format binary */
8358
7737
  file?: File;
8359
7738
  bucket?: string;
8360
- }, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
7739
+ }, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
8361
7740
  /**
8362
7741
  * No description
8363
7742
  *
@@ -8369,7 +7748,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8369
7748
  * @response `204` `UserLoanTask` No Content
8370
7749
  * @response `422` `UnprocessableEntity` Client Error
8371
7750
  */
8372
- createLoanTaskDocumentBucket: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
7751
+ createLoanTaskDocumentBucket: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
8373
7752
  /**
8374
7753
  * No description
8375
7754
  *
@@ -8381,7 +7760,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8381
7760
  * @response `200` `(UserLoanTask)[]` Success
8382
7761
  * @response `404` `ProblemDetails` Not Found
8383
7762
  */
8384
- getLoanTasks: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any, {}>>;
7763
+ getLoanTasks: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any>>;
8385
7764
  /**
8386
7765
  * No description
8387
7766
  *
@@ -8393,7 +7772,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8393
7772
  * @response `200` `UserLoanTask` Success
8394
7773
  * @response `404` `ProblemDetails` Not Found
8395
7774
  */
8396
- getLoanTask: (id: string, loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
7775
+ getLoanTask: (id: string, loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
8397
7776
  /**
8398
7777
  * @description Get the difference between the current loan tasks and the tasks generated by business rules
8399
7778
  *
@@ -8405,7 +7784,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8405
7784
  * @response `200` `(UserLoanTask)[]` Success
8406
7785
  * @response `404` `ProblemDetails` Not Found
8407
7786
  */
8408
- getLoanTaskDifference: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any, {}>>;
7787
+ getLoanTaskDifference: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any>>;
8409
7788
  /**
8410
7789
  * No description
8411
7790
  *
@@ -8417,7 +7796,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8417
7796
  * @response `201` `UserLoanTask` Created
8418
7797
  * @response `404` `ProblemDetails` Not Found
8419
7798
  */
8420
- createLoanTask: (loanId: string, taskId: string, data: UserLoanTaskRequest, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
7799
+ createLoanTask: (loanId: string, taskId: string, data: UserLoanTaskRequest, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
8421
7800
  /**
8422
7801
  * No description
8423
7802
  *
@@ -8429,7 +7808,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8429
7808
  * @response `201` `(UserLoanTask)[]` Created
8430
7809
  * @response `404` `ProblemDetails` Not Found
8431
7810
  */
8432
- importLoanTask: (loanId: string, data: ImportUserLoanTaskRequest[], params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any, {}>>;
7811
+ importLoanTask: (loanId: string, data: ImportUserLoanTaskRequest[], params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any>>;
8433
7812
  /**
8434
7813
  * No description
8435
7814
  *
@@ -8441,7 +7820,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8441
7820
  * @response `200` `UserLoanTask` Success
8442
7821
  * @response `404` `ProblemDetails` Not Found
8443
7822
  */
8444
- replaceLoanTask: (loanId: string, userLoanTaskId: string, data: UserLoanTaskUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
7823
+ replaceLoanTask: (loanId: string, userLoanTaskId: string, data: UserLoanTaskUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
8445
7824
  /**
8446
7825
  * No description
8447
7826
  *
@@ -8453,7 +7832,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8453
7832
  * @response `204` `void` No Content
8454
7833
  * @response `404` `ProblemDetails` Not Found
8455
7834
  */
8456
- deleteLoanTask: (loanId: string, userLoanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
7835
+ deleteLoanTask: (loanId: string, userLoanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8457
7836
  /**
8458
7837
  * No description
8459
7838
  *
@@ -8465,7 +7844,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8465
7844
  * @response `204` `void` No Content
8466
7845
  * @response `404` `ProblemDetails` Not Found
8467
7846
  */
8468
- sendOutstandingLoanTaskNotification: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
7847
+ sendOutstandingLoanTaskNotification: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8469
7848
  /**
8470
7849
  * No description
8471
7850
  *
@@ -8478,7 +7857,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8478
7857
  * @response `404` `ProblemDetails` Not Found
8479
7858
  * @response `422` `UnprocessableEntity` Client Error
8480
7859
  */
8481
- createLoanTaskVerification: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
7860
+ createLoanTaskVerification: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any>>;
8482
7861
  /**
8483
7862
  * No description
8484
7863
  *
@@ -8489,7 +7868,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8489
7868
  * @secure
8490
7869
  * @response `200` `(UserLoanConsent)[]` Success
8491
7870
  */
8492
- getLoanUserConsents: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanConsent[], any, {}>>;
7871
+ getLoanUserConsents: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanConsent[], any>>;
8493
7872
  /**
8494
7873
  * No description
8495
7874
  *
@@ -8500,7 +7879,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8500
7879
  * @secure
8501
7880
  * @response `200` `LoanUser` Success
8502
7881
  */
8503
- getLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any, {}>>;
7882
+ getLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any>>;
8504
7883
  /**
8505
7884
  * No description
8506
7885
  *
@@ -8511,7 +7890,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8511
7890
  * @secure
8512
7891
  * @response `201` `LoanUser` Created
8513
7892
  */
8514
- addLoanUser: (loanId: string, userId: string, data: CreateUserLoan, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any, {}>>;
7893
+ addLoanUser: (loanId: string, userId: string, data: CreateUserLoan, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any>>;
8515
7894
  /**
8516
7895
  * No description
8517
7896
  *
@@ -8522,7 +7901,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8522
7901
  * @secure
8523
7902
  * @response `204` `LoanUser` No Content
8524
7903
  */
8525
- removeLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any, {}>>;
7904
+ removeLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any>>;
8526
7905
  /**
8527
7906
  * No description
8528
7907
  *
@@ -8533,7 +7912,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8533
7912
  * @secure
8534
7913
  * @response `204` `void` No Content
8535
7914
  */
8536
- sendLoanUserInviteReminderNotification: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
7915
+ sendLoanUserInviteReminderNotification: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8537
7916
  /**
8538
7917
  * No description
8539
7918
  *
@@ -8544,7 +7923,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8544
7923
  * @secure
8545
7924
  * @response `200` `(MilestoneConfiguration)[]` Success
8546
7925
  */
8547
- getMilestones: (params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration[], any, {}>>;
7926
+ getMilestones: (params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration[], any>>;
8548
7927
  /**
8549
7928
  * No description
8550
7929
  *
@@ -8556,7 +7935,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8556
7935
  * @response `201` `MilestoneConfiguration` Created
8557
7936
  * @response `422` `UnprocessableEntity` Client Error
8558
7937
  */
8559
- createMilestone: (data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any, {}>>;
7938
+ createMilestone: (data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any>>;
8560
7939
  /**
8561
7940
  * No description
8562
7941
  *
@@ -8568,7 +7947,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8568
7947
  * @response `200` `MilestoneConfiguration` Success
8569
7948
  * @response `404` `Error` Not Found
8570
7949
  */
8571
- getMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any, {}>>;
7950
+ getMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any>>;
8572
7951
  /**
8573
7952
  * No description
8574
7953
  *
@@ -8581,7 +7960,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8581
7960
  * @response `404` `Error` Not Found
8582
7961
  * @response `422` `UnprocessableEntity` Client Error
8583
7962
  */
8584
- replaceMilestone: (id: string, data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any, {}>>;
7963
+ replaceMilestone: (id: string, data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any>>;
8585
7964
  /**
8586
7965
  * No description
8587
7966
  *
@@ -8593,7 +7972,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8593
7972
  * @response `204` `void` No Content
8594
7973
  * @response `404` `Error` Not Found
8595
7974
  */
8596
- deleteMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
7975
+ deleteMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8597
7976
  /**
8598
7977
  * No description
8599
7978
  *
@@ -8605,7 +7984,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8605
7984
  * @response `200` `MonthlyPaymentCalculator` Success
8606
7985
  * @response `422` `ProblemDetails` Client Error
8607
7986
  */
8608
- calculateMortgageMonthlyPayment: (data: MonthlyPaymentCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<MonthlyPaymentCalculator, any, {}>>;
7987
+ calculateMortgageMonthlyPayment: (data: MonthlyPaymentCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<MonthlyPaymentCalculator, any>>;
8609
7988
  /**
8610
7989
  * No description
8611
7990
  *
@@ -8617,7 +7996,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8617
7996
  * @response `200` `AffordabilityCalculator` Success
8618
7997
  * @response `422` `ProblemDetails` Client Error
8619
7998
  */
8620
- calculateMortgageAffordability: (data: AffordabilityCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<AffordabilityCalculator, any, {}>>;
7999
+ calculateMortgageAffordability: (data: AffordabilityCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<AffordabilityCalculator, any>>;
8621
8000
  /**
8622
8001
  * No description
8623
8002
  *
@@ -8629,7 +8008,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8629
8008
  * @response `200` `LoanComparisonCalculator` Success
8630
8009
  * @response `422` `ProblemDetails` Client Error
8631
8010
  */
8632
- calculateMortgageLoanComparison: (data: LoanComparisonCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<LoanComparisonCalculator, any, {}>>;
8011
+ calculateMortgageLoanComparison: (data: LoanComparisonCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<LoanComparisonCalculator, any>>;
8633
8012
  /**
8634
8013
  * No description
8635
8014
  *
@@ -8641,7 +8020,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8641
8020
  * @response `200` `RefinanceCalculator` Success
8642
8021
  * @response `422` `ProblemDetails` Client Error
8643
8022
  */
8644
- calculateMortgageRefinance: (data: RefinanceCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<RefinanceCalculator, any, {}>>;
8023
+ calculateMortgageRefinance: (data: RefinanceCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<RefinanceCalculator, any>>;
8645
8024
  /**
8646
8025
  * No description
8647
8026
  *
@@ -8653,7 +8032,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8653
8032
  * @response `200` `void` Success
8654
8033
  * @response `422` `UnprocessableEntity` Client Error
8655
8034
  */
8656
- sendNotificationForLoan: (data: SendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8035
+ sendNotificationForLoan: (data: SendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8657
8036
  /**
8658
8037
  * No description
8659
8038
  *
@@ -8665,7 +8044,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8665
8044
  * @response `200` `void` Success
8666
8045
  * @response `422` `UnprocessableEntity` Client Error
8667
8046
  */
8668
- sendTestNotificationForLoan: (data: TestSendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8047
+ sendTestNotificationForLoan: (data: TestSendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8669
8048
  /**
8670
8049
  * No description
8671
8050
  *
@@ -8678,7 +8057,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8678
8057
  */
8679
8058
  getNotificationTemplates: (query?: {
8680
8059
  showAll?: boolean;
8681
- }, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateBase[], any, {}>>;
8060
+ }, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateBase[], any>>;
8682
8061
  /**
8683
8062
  * No description
8684
8063
  *
@@ -8690,7 +8069,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8690
8069
  * @response `201` `NotificationTemplate` Created
8691
8070
  * @response `422` `UnprocessableEntity` Client Error
8692
8071
  */
8693
- createNotificationTemplate: (data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any, {}>>;
8072
+ createNotificationTemplate: (data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
8694
8073
  /**
8695
8074
  * No description
8696
8075
  *
@@ -8701,7 +8080,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8701
8080
  * @secure
8702
8081
  * @response `200` `NotificationTemplate` Success
8703
8082
  */
8704
- getNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any, {}>>;
8083
+ getNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
8705
8084
  /**
8706
8085
  * No description
8707
8086
  *
@@ -8713,7 +8092,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8713
8092
  * @response `200` `NotificationTemplate` Success
8714
8093
  * @response `422` `UnprocessableEntity` Client Error
8715
8094
  */
8716
- replaceNotificationTemplate: (id: string, data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any, {}>>;
8095
+ replaceNotificationTemplate: (id: string, data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
8717
8096
  /**
8718
8097
  * No description
8719
8098
  *
@@ -8724,7 +8103,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8724
8103
  * @secure
8725
8104
  * @response `204` `void` No Content
8726
8105
  */
8727
- deleteNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8106
+ deleteNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
8728
8107
  /**
8729
8108
  * No description
8730
8109
  *
@@ -8735,7 +8114,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8735
8114
  * @secure
8736
8115
  * @response `200` `NotificationTemplate` Success
8737
8116
  */
8738
- restoreNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any, {}>>;
8117
+ restoreNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any>>;
8739
8118
  /**
8740
8119
  * No description
8741
8120
  *
@@ -8746,7 +8125,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8746
8125
  * @secure
8747
8126
  * @response `200` `(NotificationTemplateVersion)[]` Success
8748
8127
  */
8749
- getNotificationTemplateVersions: (notificationId: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion[], any, {}>>;
8128
+ getNotificationTemplateVersions: (notificationId: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion[], any>>;
8750
8129
  /**
8751
8130
  * No description
8752
8131
  *
@@ -8757,7 +8136,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8757
8136
  * @secure
8758
8137
  * @response `200` `NotificationTemplateVersion` Success
8759
8138
  */
8760
- createNotificationTemplateVersion: (notificationId: string, data: NotificationTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any, {}>>;
8139
+ createNotificationTemplateVersion: (notificationId: string, data: NotificationTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
8761
8140
  /**
8762
8141
  * No description
8763
8142
  *
@@ -8768,7 +8147,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8768
8147
  * @secure
8769
8148
  * @response `200` `NotificationTemplateVersion` Success
8770
8149
  */
8771
- getNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any, {}>>;
8150
+ getNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
8772
8151
  /**
8773
8152
  * No description
8774
8153
  *
@@ -8779,7 +8158,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8779
8158
  * @secure
8780
8159
  * @response `200` `NotificationTemplateVersion` Success
8781
8160
  */
8782
- replaceNotificationTemplateVersion: (notificationId: string, id: string, data: NotificationTemplateVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any, {}>>;
8161
+ replaceNotificationTemplateVersion: (notificationId: string, id: string, data: NotificationTemplateVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
8783
8162
  /**
8784
8163
  * No description
8785
8164
  *
@@ -8790,7 +8169,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8790
8169
  * @secure
8791
8170
  * @response `200` `NotificationTemplateVersion` Success
8792
8171
  */
8793
- deleteNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any, {}>>;
8172
+ deleteNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any>>;
8794
8173
  /**
8795
8174
  * No description
8796
8175
  *
@@ -8804,14 +8183,14 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8804
8183
  getPartners: (query?: {
8805
8184
  showAll?: boolean;
8806
8185
  /** @default "Realtor" */
8807
- role?: "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "SystemAdmin";
8186
+ role?: GetPartnersParamsRoleEnum;
8808
8187
  /** @format int32 */
8809
8188
  pageSize?: number;
8810
8189
  /** @format int32 */
8811
8190
  pageNumber?: number;
8812
8191
  sortBy?: string;
8813
8192
  sortDirection?: string;
8814
- }, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any, {}>>;
8193
+ }, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any>>;
8815
8194
  /**
8816
8195
  * No description
8817
8196
  *
@@ -8829,7 +8208,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8829
8208
  pageNumber?: number;
8830
8209
  sortBy?: string;
8831
8210
  sortDirection?: string;
8832
- }, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any, {}>>;
8211
+ }, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any>>;
8833
8212
  /**
8834
8213
  * No description
8835
8214
  *
@@ -8840,7 +8219,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8840
8219
  * @secure
8841
8220
  * @response `200` `BranchUser` Success
8842
8221
  */
8843
- getPartner: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any, {}>>;
8222
+ getPartner: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any>>;
8844
8223
  /**
8845
8224
  * No description
8846
8225
  *
@@ -8852,7 +8231,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8852
8231
  * @response `200` `SiteConfiguration` Success
8853
8232
  * @response `422` `UnprocessableEntity` Client Error
8854
8233
  */
8855
- createPartnerSiteConfiguration: (realtorId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
8234
+ createPartnerSiteConfiguration: (realtorId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
8856
8235
  /**
8857
8236
  * No description
8858
8237
  *
@@ -8863,7 +8242,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8863
8242
  * @secure
8864
8243
  * @response `200` `SiteConfigurationWithInherited` Success
8865
8244
  */
8866
- getPartnerSiteConfiguration: (realtorId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any, {}>>;
8245
+ getPartnerSiteConfiguration: (realtorId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
8867
8246
  /**
8868
8247
  * No description
8869
8248
  *
@@ -8877,7 +8256,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8877
8256
  */
8878
8257
  replacePartnerSiteConfiguration: (realtorId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
8879
8258
  applyToChildren?: boolean;
8880
- }, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
8259
+ }, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
8881
8260
  /**
8882
8261
  * No description
8883
8262
  *
@@ -8888,7 +8267,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8888
8267
  * @secure
8889
8268
  * @response `200` `SiteConfiguration` Success
8890
8269
  */
8891
- getSiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
8270
+ getSiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
8892
8271
  /**
8893
8272
  * No description
8894
8273
  *
@@ -8901,7 +8280,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8901
8280
  * @response `200` `SiteConfigurationByUrl` Success
8902
8281
  * @response `422` `UnprocessableEntity` Client Error
8903
8282
  */
8904
- searchSiteConfigurationByUrl: (data: GetSiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationByUrl, any, {}>>;
8283
+ searchSiteConfigurationByUrl: (data: GetSiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationByUrl, any>>;
8905
8284
  /**
8906
8285
  * No description
8907
8286
  *
@@ -8915,7 +8294,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8915
8294
  */
8916
8295
  getSiteConfigurationByUrl: (query?: {
8917
8296
  url?: string;
8918
- }, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationByUrl, any, {}>>;
8297
+ }, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationByUrl, any>>;
8919
8298
  /**
8920
8299
  * No description
8921
8300
  *
@@ -8928,7 +8307,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8928
8307
  * @response `200` `SiteConfiguration` Success
8929
8308
  * @response `422` `UnprocessableEntity` Client Error
8930
8309
  */
8931
- searchSiteConfigurationByLoanOfficerUser: (data: GetSiteConfigurationByLOUserIDRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
8310
+ searchSiteConfigurationByLoanOfficerUser: (data: GetSiteConfigurationByLOUserIDRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
8932
8311
  /**
8933
8312
  * No description
8934
8313
  *
@@ -8940,7 +8319,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8940
8319
  * @response `200` `SiteConfiguration` Success
8941
8320
  * @response `422` `UnprocessableEntity` Client Error
8942
8321
  */
8943
- getSiteConfigurationByLoanOfficerUser: (loUserId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
8322
+ getSiteConfigurationByLoanOfficerUser: (loUserId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
8944
8323
  /**
8945
8324
  * No description
8946
8325
  *
@@ -8959,7 +8338,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8959
8338
  pageNumber?: number;
8960
8339
  sortBy?: string;
8961
8340
  sortDirection?: string;
8962
- }, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationSummaryPaginated, any, {}>>;
8341
+ }, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationSummaryPaginated, any>>;
8963
8342
  /**
8964
8343
  * No description
8965
8344
  *
@@ -8970,7 +8349,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8970
8349
  * @secure
8971
8350
  * @response `200` `(AdminAccessGetForms)[]` Success
8972
8351
  */
8973
- getFormsBySiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms[], any, {}>>;
8352
+ getFormsBySiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms[], any>>;
8974
8353
  /**
8975
8354
  * No description
8976
8355
  *
@@ -8982,7 +8361,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8982
8361
  * @response `200` `File` Success
8983
8362
  * @response `404` `ProblemDetails` Not Found
8984
8363
  */
8985
- getSamlMetadata: (sSoIntegration: "ConsumerConnect" | "TheBigPOS" | "POSF", ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
8364
+ getSamlMetadata: (sSoIntegration: GetSamlMetadataParamsEnum, ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
8986
8365
  /**
8987
8366
  * No description
8988
8367
  *
@@ -8993,7 +8372,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
8993
8372
  * @secure
8994
8373
  * @response `200` `File` Success
8995
8374
  */
8996
- createOrReplaceSamlMetadata: (sSoIntegration: "ConsumerConnect" | "TheBigPOS" | "POSF", ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
8375
+ createOrReplaceSamlMetadata: (sSoIntegration: CreateOrReplaceSamlMetadataParamsEnum, ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
8997
8376
  /**
8998
8377
  * No description
8999
8378
  *
@@ -9004,7 +8383,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9004
8383
  * @secure
9005
8384
  * @response `200` `(SiteConfigurationForm)[]` Success
9006
8385
  */
9007
- getWorkflowSiteConfigurations: (workflowId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm[], any, {}>>;
8386
+ getWorkflowSiteConfigurations: (workflowId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm[], any>>;
9008
8387
  /**
9009
8388
  * No description
9010
8389
  *
@@ -9016,7 +8395,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9016
8395
  * @response `200` `SiteConfigurationForm` Success
9017
8396
  * @response `404` `ProblemDetails` Not Found
9018
8397
  */
9019
- getWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any, {}>>;
8398
+ getWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any>>;
9020
8399
  /**
9021
8400
  * No description
9022
8401
  *
@@ -9029,7 +8408,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9029
8408
  * @response `409` `ProblemDetails` Conflict
9030
8409
  * @response `422` `UnprocessableEntity` Client Error
9031
8410
  */
9032
- createWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any, {}>>;
8411
+ createWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any>>;
9033
8412
  /**
9034
8413
  * No description
9035
8414
  *
@@ -9040,7 +8419,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9040
8419
  * @secure
9041
8420
  * @response `204` `void` No Content
9042
8421
  */
9043
- deleteWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8422
+ deleteWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9044
8423
  /**
9045
8424
  * No description
9046
8425
  *
@@ -9051,7 +8430,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9051
8430
  * @secure
9052
8431
  * @response `200` `GetForm` Success
9053
8432
  */
9054
- getFormBySiteConfigurationSlug: (data: GetSiteFormRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any, {}>>;
8433
+ getFormBySiteConfigurationSlug: (data: GetSiteFormRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any>>;
9055
8434
  /**
9056
8435
  * No description
9057
8436
  *
@@ -9065,7 +8444,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9065
8444
  getSurveysByUsers: (query?: {
9066
8445
  /** @format int32 */
9067
8446
  limit?: number;
9068
- }, params?: RequestParams) => Promise<AxiosResponse<SocialSurveyRecord[], any, {}>>;
8447
+ }, params?: RequestParams) => Promise<AxiosResponse<SocialSurveyRecord[], any>>;
9069
8448
  /**
9070
8449
  * No description
9071
8450
  *
@@ -9077,7 +8456,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9077
8456
  * @response `200` `(SocialSurveyRecord)[]` Success
9078
8457
  * @response `422` `UnprocessableEntity` Client Error
9079
8458
  */
9080
- getSurveysByUser: (data: SurveyEmailRequest, params?: RequestParams) => Promise<AxiosResponse<SocialSurveyRecord[], any, {}>>;
8459
+ getSurveysByUser: (data: SurveyEmailRequest, params?: RequestParams) => Promise<AxiosResponse<SocialSurveyRecord[], any>>;
9081
8460
  /**
9082
8461
  * No description
9083
8462
  *
@@ -9096,7 +8475,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9096
8475
  pageNumber?: number;
9097
8476
  sortBy?: string;
9098
8477
  sortDirection?: string;
9099
- }, params?: RequestParams) => Promise<AxiosResponse<Task, any, {}>>;
8478
+ }, params?: RequestParams) => Promise<AxiosResponse<Task, any>>;
9100
8479
  /**
9101
8480
  * No description
9102
8481
  *
@@ -9107,7 +8486,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9107
8486
  * @secure
9108
8487
  * @response `201` `Task` Created
9109
8488
  */
9110
- createTask: (data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<Task, any, {}>>;
8489
+ createTask: (data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<Task, any>>;
9111
8490
  /**
9112
8491
  * No description
9113
8492
  *
@@ -9119,7 +8498,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9119
8498
  * @response `200` `Task` Success
9120
8499
  * @response `404` `ProblemDetails` Not Found
9121
8500
  */
9122
- getTask: (id: string, params?: RequestParams) => Promise<AxiosResponse<Task, any, {}>>;
8501
+ getTask: (id: string, params?: RequestParams) => Promise<AxiosResponse<Task, any>>;
9123
8502
  /**
9124
8503
  * No description
9125
8504
  *
@@ -9131,7 +8510,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9131
8510
  * @response `200` `void` Success
9132
8511
  * @response `404` `ProblemDetails` Not Found
9133
8512
  */
9134
- replaceTask: (id: string, data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8513
+ replaceTask: (id: string, data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9135
8514
  /**
9136
8515
  * No description
9137
8516
  *
@@ -9143,7 +8522,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9143
8522
  * @response `204` `void` No Content
9144
8523
  * @response `404` `ProblemDetails` Not Found
9145
8524
  */
9146
- deleteTask: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8525
+ deleteTask: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9147
8526
  /**
9148
8527
  * No description
9149
8528
  *
@@ -9161,7 +8540,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9161
8540
  pageNumber?: number;
9162
8541
  sortBy?: string;
9163
8542
  sortDirection?: string;
9164
- }, params?: RequestParams) => Promise<AxiosResponse<TaskPaginated, any, {}>>;
8543
+ }, params?: RequestParams) => Promise<AxiosResponse<TaskPaginated, any>>;
9165
8544
  /**
9166
8545
  * No description
9167
8546
  *
@@ -9171,7 +8550,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9171
8550
  * @secure
9172
8551
  * @response `200` `void` Success
9173
8552
  */
9174
- integrationsLosLoansCreate: (data: LosLoanCreationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8553
+ integrationsLosLoansCreate: (data: LosLoanCreationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9175
8554
  /**
9176
8555
  * No description
9177
8556
  *
@@ -9188,7 +8567,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9188
8567
  pageNumber: number;
9189
8568
  sortBy?: string;
9190
8569
  sortDirection?: string;
9191
- }, data: EncompassLogSearchCriteria, params?: RequestParams) => Promise<AxiosResponse<EncompassRequestLogPaginated, any, {}>>;
8570
+ }, data: EncompassLogSearchCriteria, params?: RequestParams) => Promise<AxiosResponse<EncompassRequestLogPaginated, any>>;
9192
8571
  /**
9193
8572
  * No description
9194
8573
  *
@@ -9200,7 +8579,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9200
8579
  * @response `200` `UsageReport` Success
9201
8580
  * @response `404` `ProblemDetails` Not Found
9202
8581
  */
9203
- getUsageReportById: (id: string, params?: RequestParams) => Promise<AxiosResponse<UsageReport, any, {}>>;
8582
+ getUsageReportById: (id: string, params?: RequestParams) => Promise<AxiosResponse<UsageReport, any>>;
9204
8583
  /**
9205
8584
  * No description
9206
8585
  *
@@ -9217,7 +8596,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9217
8596
  month?: number;
9218
8597
  /** @format int32 */
9219
8598
  year?: number;
9220
- }, params?: RequestParams) => Promise<AxiosResponse<UsageReport[], any, {}>>;
8599
+ }, params?: RequestParams) => Promise<AxiosResponse<UsageReport[], any>>;
9221
8600
  /**
9222
8601
  * No description
9223
8602
  *
@@ -9234,7 +8613,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9234
8613
  month?: number;
9235
8614
  /** @format int32 */
9236
8615
  year?: number;
9237
- }, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
8616
+ }, params?: RequestParams) => Promise<AxiosResponse<any, any>>;
9238
8617
  /**
9239
8618
  * No description
9240
8619
  *
@@ -9245,7 +8624,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9245
8624
  * @secure
9246
8625
  * @response `200` `UsageReportDashboard` Success
9247
8626
  */
9248
- getUsageReportDashboard: (params?: RequestParams) => Promise<AxiosResponse<UsageReportDashboard, any, {}>>;
8627
+ getUsageReportDashboard: (params?: RequestParams) => Promise<AxiosResponse<UsageReportDashboard, any>>;
9249
8628
  /**
9250
8629
  * No description
9251
8630
  *
@@ -9257,7 +8636,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9257
8636
  * @response `200` `UsageReportExecution` Success
9258
8637
  * @response `404` `ProblemDetails` Not Found
9259
8638
  */
9260
- getUsageReportExecution: (correlationId: string, params?: RequestParams) => Promise<AxiosResponse<UsageReportExecution, any, {}>>;
8639
+ getUsageReportExecution: (correlationId: string, params?: RequestParams) => Promise<AxiosResponse<UsageReportExecution, any>>;
9261
8640
  /**
9262
8641
  * No description
9263
8642
  *
@@ -9274,7 +8653,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9274
8653
  month?: number;
9275
8654
  /** @format int32 */
9276
8655
  year?: number;
9277
- }, params?: RequestParams) => Promise<AxiosResponse<UsageReportExecution[], any, {}>>;
8656
+ }, params?: RequestParams) => Promise<AxiosResponse<UsageReportExecution[], any>>;
9278
8657
  /**
9279
8658
  * No description
9280
8659
  *
@@ -9286,7 +8665,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9286
8665
  * @response `201` `UserDevice` Created
9287
8666
  * @response `400` `ProblemDetails` Bad Request
9288
8667
  */
9289
- createUserDevice: (data: CreateUserDeviceRequest, params?: RequestParams) => Promise<AxiosResponse<UserDevice, any, {}>>;
8668
+ createUserDevice: (data: CreateUserDeviceRequest, params?: RequestParams) => Promise<AxiosResponse<UserDevice, any>>;
9290
8669
  /**
9291
8670
  * No description
9292
8671
  *
@@ -9298,7 +8677,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9298
8677
  * @response `204` `void` No Content
9299
8678
  * @response `404` `ProblemDetails` Not Found
9300
8679
  */
9301
- deleteUserDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8680
+ deleteUserDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9302
8681
  /**
9303
8682
  * No description
9304
8683
  *
@@ -9316,7 +8695,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9316
8695
  pageNumber?: number;
9317
8696
  sortBy?: string;
9318
8697
  sortDirection?: string;
9319
- }, params?: RequestParams) => Promise<AxiosResponse<UserDraftPaginated, any, {}>>;
8698
+ }, params?: RequestParams) => Promise<AxiosResponse<UserDraftPaginated, any>>;
9320
8699
  /**
9321
8700
  * No description
9322
8701
  *
@@ -9327,7 +8706,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9327
8706
  * @secure
9328
8707
  * @response `200` `UserDraft` Success
9329
8708
  */
9330
- getDraftUser: (draftId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<UserDraft, any, {}>>;
8709
+ getDraftUser: (draftId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<UserDraft, any>>;
9331
8710
  /**
9332
8711
  * No description
9333
8712
  *
@@ -9338,7 +8717,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9338
8717
  * @secure
9339
8718
  * @response `200` `UserDraft` Success
9340
8719
  */
9341
- addDraftUsers: (draftId: string, userId: string, data: CreateUserDraft, params?: RequestParams) => Promise<AxiosResponse<UserDraft, any, {}>>;
8720
+ addDraftUsers: (draftId: string, userId: string, data: CreateUserDraft, params?: RequestParams) => Promise<AxiosResponse<UserDraft, any>>;
9342
8721
  /**
9343
8722
  * No description
9344
8723
  *
@@ -9349,7 +8728,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9349
8728
  * @secure
9350
8729
  * @response `204` `void` No Content
9351
8730
  */
9352
- deleteDraftUser: (draftId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8731
+ deleteDraftUser: (draftId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9353
8732
  /**
9354
8733
  * No description
9355
8734
  *
@@ -9360,7 +8739,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9360
8739
  * @secure
9361
8740
  * @response `200` `(UserGroupAccessScope)[]` Success
9362
8741
  */
9363
- getUserGroupAccessScopes: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope[], any, {}>>;
8742
+ getUserGroupAccessScopes: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope[], any>>;
9364
8743
  /**
9365
8744
  * No description
9366
8745
  *
@@ -9371,7 +8750,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9371
8750
  * @secure
9372
8751
  * @response `200` `UserGroupAccessScope` Success
9373
8752
  */
9374
- createUserGroupAccessScope: (groupId: string, data: CreateAccessScopeRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope, any, {}>>;
8753
+ createUserGroupAccessScope: (groupId: string, data: CreateAccessScopeRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope, any>>;
9375
8754
  /**
9376
8755
  * No description
9377
8756
  *
@@ -9382,7 +8761,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9382
8761
  * @secure
9383
8762
  * @response `204` `void` No Content
9384
8763
  */
9385
- deleteUserGroupAccessScope: (groupId: string, scopeId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8764
+ deleteUserGroupAccessScope: (groupId: string, scopeId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9386
8765
  /**
9387
8766
  * No description
9388
8767
  *
@@ -9393,7 +8772,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9393
8772
  * @secure
9394
8773
  * @response `200` `(UserGroupMember)[]` Success
9395
8774
  */
9396
- getUserGroupMembers: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupMember[], any, {}>>;
8775
+ getUserGroupMembers: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupMember[], any>>;
9397
8776
  /**
9398
8777
  * No description
9399
8778
  *
@@ -9407,7 +8786,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9407
8786
  createUserGroupMember: (groupId: string, data: CreateGroupMemberRequest, query?: {
9408
8787
  /** @format uuid */
9409
8788
  userId?: string;
9410
- }, params?: RequestParams) => Promise<AxiosResponse<UserGroupMember, any, {}>>;
8789
+ }, params?: RequestParams) => Promise<AxiosResponse<UserGroupMember, any>>;
9411
8790
  /**
9412
8791
  * No description
9413
8792
  *
@@ -9418,7 +8797,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9418
8797
  * @secure
9419
8798
  * @response `204` `void` No Content
9420
8799
  */
9421
- deleteUserGroupMember: (groupId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8800
+ deleteUserGroupMember: (groupId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9422
8801
  /**
9423
8802
  * No description
9424
8803
  *
@@ -9437,7 +8816,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9437
8816
  pageNumber?: number;
9438
8817
  sortBy?: string;
9439
8818
  sortDirection?: string;
9440
- }, params?: RequestParams) => Promise<AxiosResponse<UserGroupPaginated, any, {}>>;
8819
+ }, params?: RequestParams) => Promise<AxiosResponse<UserGroupPaginated, any>>;
9441
8820
  /**
9442
8821
  * No description
9443
8822
  *
@@ -9448,7 +8827,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9448
8827
  * @secure
9449
8828
  * @response `200` `UserGroup` Success
9450
8829
  */
9451
- getUserGroup: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any, {}>>;
8830
+ getUserGroup: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any>>;
9452
8831
  /**
9453
8832
  * No description
9454
8833
  *
@@ -9459,7 +8838,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9459
8838
  * @secure
9460
8839
  * @response `200` `UserGroup` Success
9461
8840
  */
9462
- updateUserGroup: (groupId: string, data: UpdateUserGroupRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any, {}>>;
8841
+ updateUserGroup: (groupId: string, data: UpdateUserGroupRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any>>;
9463
8842
  /**
9464
8843
  * No description
9465
8844
  *
@@ -9470,7 +8849,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9470
8849
  * @secure
9471
8850
  * @response `204` `void` No Content
9472
8851
  */
9473
- deleteUserGroup: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8852
+ deleteUserGroup: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9474
8853
  /**
9475
8854
  * No description
9476
8855
  *
@@ -9481,7 +8860,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9481
8860
  * @secure
9482
8861
  * @response `201` `UserGroup` Created
9483
8862
  */
9484
- createUserGroup: (data: CreateUserGroupRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any, {}>>;
8863
+ createUserGroup: (data: CreateUserGroupRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any>>;
9485
8864
  /**
9486
8865
  * No description
9487
8866
  *
@@ -9494,7 +8873,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9494
8873
  * @response `404` `Error` Not Found
9495
8874
  * @response `422` `UnprocessableEntity` Client Error
9496
8875
  */
9497
- requestImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8876
+ requestImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9498
8877
  /**
9499
8878
  * No description
9500
8879
  *
@@ -9507,7 +8886,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9507
8886
  * @response `404` `Error` Not Found
9508
8887
  * @response `422` `UnprocessableEntity` Client Error
9509
8888
  */
9510
- allowImpersonation: (data: AllowImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8889
+ allowImpersonation: (data: AllowImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9511
8890
  /**
9512
8891
  * No description
9513
8892
  *
@@ -9520,7 +8899,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9520
8899
  * @response `404` `Error` Not Found
9521
8900
  * @response `422` `UnprocessableEntity` Client Error
9522
8901
  */
9523
- allowImpersonationWithGuid: (allowToken: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8902
+ allowImpersonationWithGuid: (allowToken: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9524
8903
  /**
9525
8904
  * No description
9526
8905
  *
@@ -9532,7 +8911,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9532
8911
  * @response `204` `void` No Content
9533
8912
  * @response `422` `UnprocessableEntity` Client Error
9534
8913
  */
9535
- beginImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8914
+ beginImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9536
8915
  /**
9537
8916
  * No description
9538
8917
  *
@@ -9544,7 +8923,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9544
8923
  * @response `204` `void` No Content
9545
8924
  * @response `422` `UnprocessableEntity` Client Error
9546
8925
  */
9547
- stopImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8926
+ stopImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9548
8927
  /**
9549
8928
  * No description
9550
8929
  *
@@ -9557,7 +8936,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9557
8936
  * @response `404` `Error` Not Found
9558
8937
  * @response `422` `UnprocessableEntity` Client Error
9559
8938
  */
9560
- forceImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8939
+ forceImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9561
8940
  /**
9562
8941
  * No description
9563
8942
  *
@@ -9569,7 +8948,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9569
8948
  * @response `204` `void` No Content
9570
8949
  * @response `422` `UnprocessableEntity` Client Error
9571
8950
  */
9572
- extendImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8951
+ extendImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9573
8952
  /**
9574
8953
  * No description
9575
8954
  *
@@ -9581,7 +8960,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9581
8960
  * @response `204` `void` No Content
9582
8961
  * @response `422` `UnprocessableEntity` Client Error
9583
8962
  */
9584
- inviteUser: (data: CreateInviteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8963
+ inviteUser: (data: CreateInviteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9585
8964
  /**
9586
8965
  * No description
9587
8966
  *
@@ -9594,7 +8973,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9594
8973
  * @response `401` `UnprocessableEntity` Unauthorized
9595
8974
  * @response `404` `UnprocessableEntity` Not Found
9596
8975
  */
9597
- resendInviteNotification: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
8976
+ resendInviteNotification: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9598
8977
  /**
9599
8978
  * No description
9600
8979
  *
@@ -9606,7 +8985,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9606
8985
  * @response `200` `Invite` Success
9607
8986
  * @response `422` `UnprocessableEntity` Client Error
9608
8987
  */
9609
- verifyUserInvite: (token: string, params?: RequestParams) => Promise<AxiosResponse<Invite, any, {}>>;
8988
+ verifyUserInvite: (token: string, params?: RequestParams) => Promise<AxiosResponse<Invite, any>>;
9610
8989
  /**
9611
8990
  * No description
9612
8991
  *
@@ -9617,7 +8996,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9617
8996
  * @secure
9618
8997
  * @response `200` `(UserRelation)[]` Success
9619
8998
  */
9620
- getUserRelations: (userId: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation[], any, {}>>;
8999
+ getUserRelations: (userId: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation[], any>>;
9621
9000
  /**
9622
9001
  * No description
9623
9002
  *
@@ -9628,7 +9007,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9628
9007
  * @secure
9629
9008
  * @response `204` `void` No Content
9630
9009
  */
9631
- createUserRelation: (userId: string, data: CreateUserRelationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9010
+ createUserRelation: (userId: string, data: CreateUserRelationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9632
9011
  /**
9633
9012
  * No description
9634
9013
  *
@@ -9639,7 +9018,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9639
9018
  * @secure
9640
9019
  * @response `200` `UserRelation` Success
9641
9020
  */
9642
- getUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation, any, {}>>;
9021
+ getUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation, any>>;
9643
9022
  /**
9644
9023
  * No description
9645
9024
  *
@@ -9650,7 +9029,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9650
9029
  * @secure
9651
9030
  * @response `204` `void` No Content
9652
9031
  */
9653
- deleteUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9032
+ deleteUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9654
9033
  /**
9655
9034
  * No description
9656
9035
  *
@@ -9668,7 +9047,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9668
9047
  pageNumber?: number;
9669
9048
  sortBy?: string;
9670
9049
  sortDirection?: string;
9671
- }, params?: RequestParams) => Promise<AxiosResponse<User[], any, {}>>;
9050
+ }, params?: RequestParams) => Promise<AxiosResponse<User[], any>>;
9672
9051
  /**
9673
9052
  * No description
9674
9053
  *
@@ -9680,7 +9059,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9680
9059
  * @response `200` `DetailedUser` Success
9681
9060
  * @response `422` `UnprocessableEntity` Client Error
9682
9061
  */
9683
- createUser: (data: CreateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any, {}>>;
9062
+ createUser: (data: CreateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
9684
9063
  /**
9685
9064
  * No description
9686
9065
  *
@@ -9698,7 +9077,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9698
9077
  pageNumber?: number;
9699
9078
  sortBy?: string;
9700
9079
  sortDirection?: string;
9701
- }, params?: RequestParams) => Promise<AxiosResponse<UserPaginated, any, {}>>;
9080
+ }, params?: RequestParams) => Promise<AxiosResponse<UserPaginated, any>>;
9702
9081
  /**
9703
9082
  * No description
9704
9083
  *
@@ -9709,7 +9088,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9709
9088
  * @secure
9710
9089
  * @response `200` `AdminAccessUser` Success
9711
9090
  */
9712
- getUserByEmail: (data: GetUserByEmailRequest, params?: RequestParams) => Promise<AxiosResponse<AdminAccessUser, any, {}>>;
9091
+ getUserByEmail: (data: GetUserByEmailRequest, params?: RequestParams) => Promise<AxiosResponse<AdminAccessUser, any>>;
9713
9092
  /**
9714
9093
  * No description
9715
9094
  *
@@ -9721,7 +9100,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9721
9100
  * @response `200` `User` Success
9722
9101
  * @response `422` `UnprocessableEntity` Client Error
9723
9102
  */
9724
- signUp: (data: RegisterUserRequest, params?: RequestParams) => Promise<AxiosResponse<User, any, {}>>;
9103
+ signUp: (data: RegisterUserRequest, params?: RequestParams) => Promise<AxiosResponse<User, any>>;
9725
9104
  /**
9726
9105
  * No description
9727
9106
  *
@@ -9733,7 +9112,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9733
9112
  * @response `200` `DetailedUser` Success
9734
9113
  * @response `422` `UnprocessableEntity` Client Error
9735
9114
  */
9736
- replaceUser: (id: string, data: UpdateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any, {}>>;
9115
+ replaceUser: (id: string, data: UpdateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
9737
9116
  /**
9738
9117
  * No description
9739
9118
  *
@@ -9747,7 +9126,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9747
9126
  deleteUser: (id: string, query?: {
9748
9127
  /** @default false */
9749
9128
  permanent?: boolean;
9750
- }, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9129
+ }, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9751
9130
  /**
9752
9131
  * No description
9753
9132
  *
@@ -9758,7 +9137,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9758
9137
  * @secure
9759
9138
  * @response `204` `void` No Content
9760
9139
  */
9761
- restoreUser: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9140
+ restoreUser: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9762
9141
  /**
9763
9142
  * No description
9764
9143
  *
@@ -9770,7 +9149,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9770
9149
  * @response `204` `void` No Content
9771
9150
  * @response `422` `UnprocessableEntity` Client Error
9772
9151
  */
9773
- changePassword: (data: ChangePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9152
+ changePassword: (data: ChangePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9774
9153
  /**
9775
9154
  * No description
9776
9155
  *
@@ -9782,7 +9161,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9782
9161
  * @response `204` `void` No Content
9783
9162
  * @response `422` `UnprocessableEntity` Client Error
9784
9163
  */
9785
- verifyPassword: (data: VerifyPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9164
+ verifyPassword: (data: VerifyPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9786
9165
  /**
9787
9166
  * No description
9788
9167
  *
@@ -9794,7 +9173,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9794
9173
  * @response `204` `void` No Content
9795
9174
  * @response `422` `UnprocessableEntity` Client Error
9796
9175
  */
9797
- overridePassword: (id: string, data: OverridePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9176
+ overridePassword: (id: string, data: OverridePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9798
9177
  /**
9799
9178
  * No description
9800
9179
  *
@@ -9806,7 +9185,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9806
9185
  * @response `204` `void` No Content
9807
9186
  * @response `422` `UnprocessableEntity` Client Error
9808
9187
  */
9809
- forgotPassword: (data: SendForgotPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9188
+ forgotPassword: (data: SendForgotPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9810
9189
  /**
9811
9190
  * No description
9812
9191
  *
@@ -9818,7 +9197,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9818
9197
  * @response `204` `void` No Content
9819
9198
  * @response `422` `UnprocessableEntity` Client Error
9820
9199
  */
9821
- sendMobilePhoneVerificationCode: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9200
+ sendMobilePhoneVerificationCode: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9822
9201
  /**
9823
9202
  * No description
9824
9203
  *
@@ -9830,7 +9209,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9830
9209
  * @response `204` `void` No Content
9831
9210
  * @response `422` `UnprocessableEntity` Client Error
9832
9211
  */
9833
- verifyUserMobilePhone: (data: UserMobilePhoneVerificationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9212
+ verifyUserMobilePhone: (data: UserMobilePhoneVerificationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9834
9213
  /**
9835
9214
  * No description
9836
9215
  *
@@ -9842,7 +9221,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9842
9221
  * @response `200` `ImpersonatedDetailedUser` Success
9843
9222
  * @response `401` `ProblemDetails` Unauthorized
9844
9223
  */
9845
- getMe: (params?: RequestParams) => Promise<AxiosResponse<ImpersonatedDetailedUser, any, {}>>;
9224
+ getMe: (params?: RequestParams) => Promise<AxiosResponse<ImpersonatedDetailedUser, any>>;
9846
9225
  /**
9847
9226
  * No description
9848
9227
  *
@@ -9853,7 +9232,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9853
9232
  * @secure
9854
9233
  * @response `200` `DetailedUser` Success
9855
9234
  */
9856
- replaceMe: (data: UpdateMeRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any, {}>>;
9235
+ replaceMe: (data: UpdateMeRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
9857
9236
  /**
9858
9237
  * @description Update the phone number If changed will send a verification code to the new number
9859
9238
  *
@@ -9864,7 +9243,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9864
9243
  * @secure
9865
9244
  * @response `204` `DetailedUser` No Content
9866
9245
  */
9867
- updateMyPhone: (data: UpdateMobilePhoneRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any, {}>>;
9246
+ updateMyPhone: (data: UpdateMobilePhoneRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any>>;
9868
9247
  /**
9869
9248
  * No description
9870
9249
  *
@@ -9875,7 +9254,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9875
9254
  * @secure
9876
9255
  * @response `200` `(UserRelationship)[]` Success
9877
9256
  */
9878
- getMyRelationships: (params?: RequestParams) => Promise<AxiosResponse<UserRelationship[], any, {}>>;
9257
+ getMyRelationships: (params?: RequestParams) => Promise<AxiosResponse<UserRelationship[], any>>;
9879
9258
  /**
9880
9259
  * No description
9881
9260
  *
@@ -9886,7 +9265,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9886
9265
  * @secure
9887
9266
  * @response `200` `(UserRelationshipProspect)[]` Success
9888
9267
  */
9889
- getMyRelationshipProspects: (params?: RequestParams) => Promise<AxiosResponse<UserRelationshipProspect[], any, {}>>;
9268
+ getMyRelationshipProspects: (params?: RequestParams) => Promise<AxiosResponse<UserRelationshipProspect[], any>>;
9890
9269
  /**
9891
9270
  * No description
9892
9271
  *
@@ -9897,7 +9276,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9897
9276
  * @secure
9898
9277
  * @response `204` `void` No Content
9899
9278
  */
9900
- deleteRelationshipProspect: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9279
+ deleteRelationshipProspect: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9901
9280
  /**
9902
9281
  * No description
9903
9282
  *
@@ -9908,7 +9287,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9908
9287
  * @secure
9909
9288
  * @response `204` `void` No Content
9910
9289
  */
9911
- deleteMe: (data: UserAccountDeletionRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9290
+ deleteMe: (data: UserAccountDeletionRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9912
9291
  /**
9913
9292
  * No description
9914
9293
  *
@@ -9919,7 +9298,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9919
9298
  * @secure
9920
9299
  * @response `200` `GetForm` Success
9921
9300
  */
9922
- getWorkflow: (data: GetWorkflowRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any, {}>>;
9301
+ getWorkflow: (data: GetWorkflowRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any>>;
9923
9302
  };
9924
9303
  sso: {
9925
9304
  /**
@@ -9931,6 +9310,6 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
9931
9310
  * @secure
9932
9311
  * @response `200` `void` Success
9933
9312
  */
9934
- logoutList: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
9313
+ logoutList: (params?: RequestParams) => Promise<AxiosResponse<void, any>>;
9935
9314
  };
9936
9315
  }