@matech/thebigpos-sdk 2.42.1 → 2.43.1-rc.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +558 -1061
- package/dist/index.js +366 -352
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/src/index.ts +613 -1068
package/dist/index.d.ts
CHANGED
|
@@ -118,11 +118,7 @@ export interface AccountBilling {
|
|
|
118
118
|
}
|
|
119
119
|
export interface AccountBillingRequest {
|
|
120
120
|
billingType: AccountBillingRequestBillingTypeEnum;
|
|
121
|
-
/**
|
|
122
|
-
* @format double
|
|
123
|
-
* @min 0
|
|
124
|
-
* @exclusiveMin true
|
|
125
|
-
*/
|
|
121
|
+
/** @format double */
|
|
126
122
|
contractedRate: number;
|
|
127
123
|
}
|
|
128
124
|
export interface AccountDeactivated {
|
|
@@ -177,26 +173,13 @@ export interface Address {
|
|
|
177
173
|
postalCode?: string | null;
|
|
178
174
|
}
|
|
179
175
|
export interface AddressRequest {
|
|
180
|
-
|
|
181
|
-
* @minLength 1
|
|
182
|
-
* @maxLength 255
|
|
183
|
-
*/
|
|
184
|
-
street: string;
|
|
185
|
-
/** @maxLength 50 */
|
|
176
|
+
street?: string | null;
|
|
186
177
|
unit?: string | null;
|
|
187
|
-
/** @maxLength 50 */
|
|
188
178
|
unitType?: string | null;
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
* @maxLength 100
|
|
192
|
-
*/
|
|
193
|
-
city: string;
|
|
194
|
-
/** @minLength 1 */
|
|
195
|
-
state: string;
|
|
196
|
-
/** @maxLength 100 */
|
|
179
|
+
city?: string | null;
|
|
180
|
+
state?: string | null;
|
|
197
181
|
county?: string | null;
|
|
198
|
-
|
|
199
|
-
postalCode: string;
|
|
182
|
+
postalCode?: string | null;
|
|
200
183
|
}
|
|
201
184
|
export interface AddressV3 {
|
|
202
185
|
/** @format uuid */
|
|
@@ -290,71 +273,28 @@ export interface AffordabilityCalculator {
|
|
|
290
273
|
amortization: Amortization;
|
|
291
274
|
}
|
|
292
275
|
export interface AffordabilityCalculatorRequest {
|
|
293
|
-
/**
|
|
294
|
-
* @format double
|
|
295
|
-
* @min 0
|
|
296
|
-
* @max 200000
|
|
297
|
-
*/
|
|
276
|
+
/** @format double */
|
|
298
277
|
totalMonthlyIncome: number;
|
|
299
|
-
/**
|
|
300
|
-
* @format double
|
|
301
|
-
* @min 0
|
|
302
|
-
*/
|
|
278
|
+
/** @format double */
|
|
303
279
|
totalMonthlyExpenses: number;
|
|
304
|
-
/**
|
|
305
|
-
* @format double
|
|
306
|
-
* @min 0
|
|
307
|
-
* @max 95
|
|
308
|
-
*/
|
|
280
|
+
/** @format double */
|
|
309
281
|
downPayment: number;
|
|
310
|
-
/**
|
|
311
|
-
* @format double
|
|
312
|
-
* @min 1
|
|
313
|
-
* @max 25
|
|
314
|
-
*/
|
|
282
|
+
/** @format double */
|
|
315
283
|
interestRate: number;
|
|
316
|
-
/**
|
|
317
|
-
* @format int32
|
|
318
|
-
* @min 1
|
|
319
|
-
* @max 40
|
|
320
|
-
*/
|
|
284
|
+
/** @format int32 */
|
|
321
285
|
term: number;
|
|
322
|
-
/**
|
|
323
|
-
* @format double
|
|
324
|
-
* @min 0
|
|
325
|
-
* @max 10
|
|
326
|
-
*/
|
|
286
|
+
/** @format double */
|
|
327
287
|
pmi: number;
|
|
328
|
-
/**
|
|
329
|
-
* @format double
|
|
330
|
-
* @min 5
|
|
331
|
-
* @max 60
|
|
332
|
-
*/
|
|
288
|
+
/** @format double */
|
|
333
289
|
frontRatio: number;
|
|
334
|
-
/**
|
|
335
|
-
* @format double
|
|
336
|
-
* @min 5
|
|
337
|
-
* @max 80
|
|
338
|
-
*/
|
|
290
|
+
/** @format double */
|
|
339
291
|
backRatio: number;
|
|
340
|
-
/**
|
|
341
|
-
* @format double
|
|
342
|
-
* @min 0
|
|
343
|
-
* @max 200000
|
|
344
|
-
*/
|
|
292
|
+
/** @format double */
|
|
345
293
|
annualTaxes: number;
|
|
346
|
-
/**
|
|
347
|
-
* @format double
|
|
348
|
-
* @min 200
|
|
349
|
-
* @max 50000
|
|
350
|
-
*/
|
|
294
|
+
/** @format double */
|
|
351
295
|
annualInsurance: number;
|
|
352
296
|
}
|
|
353
297
|
export interface AllowImpersonationRequest {
|
|
354
|
-
/**
|
|
355
|
-
* @format email
|
|
356
|
-
* @minLength 1
|
|
357
|
-
*/
|
|
358
298
|
email: string;
|
|
359
299
|
}
|
|
360
300
|
export interface Amortization {
|
|
@@ -497,6 +437,29 @@ export interface AutomatedService {
|
|
|
497
437
|
skipped: string[];
|
|
498
438
|
rateLimited: string[];
|
|
499
439
|
}
|
|
440
|
+
export interface BorrowerCount {
|
|
441
|
+
/** @format uuid */
|
|
442
|
+
userId: string;
|
|
443
|
+
firstName: string;
|
|
444
|
+
lastName: string;
|
|
445
|
+
email: string;
|
|
446
|
+
role: BorrowerCountRoleEnum;
|
|
447
|
+
/** @format int32 */
|
|
448
|
+
count: number;
|
|
449
|
+
}
|
|
450
|
+
export interface BorrowerIdentity {
|
|
451
|
+
/** @format uuid */
|
|
452
|
+
userId: string;
|
|
453
|
+
firstName: string;
|
|
454
|
+
lastName: string;
|
|
455
|
+
email: string;
|
|
456
|
+
role: BorrowerIdentityRoleEnum;
|
|
457
|
+
}
|
|
458
|
+
export interface BorrowersNotUsingPosSummary {
|
|
459
|
+
/** @format int32 */
|
|
460
|
+
total: number;
|
|
461
|
+
borrowers: UnregisteredBorrower[];
|
|
462
|
+
}
|
|
500
463
|
export interface BranchBase {
|
|
501
464
|
/** @format date-time */
|
|
502
465
|
createdAt: string;
|
|
@@ -590,10 +553,6 @@ export interface BusinessRuleCondition {
|
|
|
590
553
|
targetFieldValue: string;
|
|
591
554
|
}
|
|
592
555
|
export interface BusinessRuleRequest {
|
|
593
|
-
/**
|
|
594
|
-
* @minLength 1
|
|
595
|
-
* @maxLength 250
|
|
596
|
-
*/
|
|
597
556
|
name: string;
|
|
598
557
|
description?: string | null;
|
|
599
558
|
tasks: TaskUpdateRequest[];
|
|
@@ -601,9 +560,7 @@ export interface BusinessRuleRequest {
|
|
|
601
560
|
applyToAllBorrowerPairs: boolean;
|
|
602
561
|
}
|
|
603
562
|
export interface ChangePasswordRequest {
|
|
604
|
-
/** @minLength 1 */
|
|
605
563
|
oldPassword: string;
|
|
606
|
-
/** @minLength 8 */
|
|
607
564
|
newPassword: string;
|
|
608
565
|
}
|
|
609
566
|
export interface ClosedLoansReport {
|
|
@@ -627,15 +584,9 @@ export interface ClosedLoansReportAccount {
|
|
|
627
584
|
utilization: number;
|
|
628
585
|
}
|
|
629
586
|
export interface ClosedLoansReportRequest {
|
|
630
|
-
/**
|
|
631
|
-
* @format date
|
|
632
|
-
* @minLength 1
|
|
633
|
-
*/
|
|
587
|
+
/** @format date */
|
|
634
588
|
startDate: string;
|
|
635
|
-
/**
|
|
636
|
-
* @format date
|
|
637
|
-
* @minLength 1
|
|
638
|
-
*/
|
|
589
|
+
/** @format date */
|
|
639
590
|
endDate: string;
|
|
640
591
|
}
|
|
641
592
|
export interface CommentUserInformation {
|
|
@@ -729,10 +680,6 @@ export interface CorporatePaginated {
|
|
|
729
680
|
count: number;
|
|
730
681
|
}
|
|
731
682
|
export interface CorporateRequest {
|
|
732
|
-
/**
|
|
733
|
-
* @minLength 1
|
|
734
|
-
* @maxLength 250
|
|
735
|
-
*/
|
|
736
683
|
name: string;
|
|
737
684
|
}
|
|
738
685
|
export interface CorporateSearchCriteria {
|
|
@@ -747,9 +694,7 @@ export interface CreateAccessScopeRequest {
|
|
|
747
694
|
branchId?: string | null;
|
|
748
695
|
}
|
|
749
696
|
export interface CreateAccountRequest {
|
|
750
|
-
/** @minLength 1 */
|
|
751
697
|
name: string;
|
|
752
|
-
/** @minLength 1 */
|
|
753
698
|
domain: string;
|
|
754
699
|
eConsentBucket?: string | null;
|
|
755
700
|
ignoreCoBorrowerRelationship: boolean;
|
|
@@ -757,10 +702,7 @@ export interface CreateAccountRequest {
|
|
|
757
702
|
companyAddress: CompanyAddress;
|
|
758
703
|
contactInfo: ContactInfo;
|
|
759
704
|
theme: Theme;
|
|
760
|
-
/**
|
|
761
|
-
* @format int64
|
|
762
|
-
* @min 0
|
|
763
|
-
*/
|
|
705
|
+
/** @format int64 */
|
|
764
706
|
nlmsid: number;
|
|
765
707
|
settings: AccountSettingsRequest;
|
|
766
708
|
environment: CreateAccountRequestEnvironmentEnum;
|
|
@@ -768,10 +710,6 @@ export interface CreateAccountRequest {
|
|
|
768
710
|
billingSettings: AccountBillingRequest;
|
|
769
711
|
}
|
|
770
712
|
export interface CreateBranchRequest {
|
|
771
|
-
/**
|
|
772
|
-
* @minLength 1
|
|
773
|
-
* @maxLength 250
|
|
774
|
-
*/
|
|
775
713
|
name: string;
|
|
776
714
|
/** @format uuid */
|
|
777
715
|
corporateID: string;
|
|
@@ -779,10 +717,7 @@ export interface CreateBranchRequest {
|
|
|
779
717
|
}
|
|
780
718
|
export interface CreateCustomFieldDefinitionRequest {
|
|
781
719
|
isRequired: boolean;
|
|
782
|
-
/**
|
|
783
|
-
* @format int32
|
|
784
|
-
* @min 0
|
|
785
|
-
*/
|
|
720
|
+
/** @format int32 */
|
|
786
721
|
displayOrder: number;
|
|
787
722
|
/** @format int32 */
|
|
788
723
|
minLength?: number | null;
|
|
@@ -792,10 +727,6 @@ export interface CreateCustomFieldDefinitionRequest {
|
|
|
792
727
|
minValue?: number | null;
|
|
793
728
|
/** @format double */
|
|
794
729
|
maxValue?: number | null;
|
|
795
|
-
/**
|
|
796
|
-
* @minLength 1
|
|
797
|
-
* @maxLength 250
|
|
798
|
-
*/
|
|
799
730
|
name: string;
|
|
800
731
|
defaultValue?: string | null;
|
|
801
732
|
regexPattern?: string | null;
|
|
@@ -805,12 +736,7 @@ export interface CreateCustomFieldDefinitionRequest {
|
|
|
805
736
|
permissions?: CustomFieldPermissionRequest[] | null;
|
|
806
737
|
}
|
|
807
738
|
export interface CreateDocumentTemplateRequest {
|
|
808
|
-
/** @minLength 1 */
|
|
809
739
|
htmlBody: string;
|
|
810
|
-
/**
|
|
811
|
-
* @minLength 1
|
|
812
|
-
* @maxLength 255
|
|
813
|
-
*/
|
|
814
740
|
name: string;
|
|
815
741
|
type: string;
|
|
816
742
|
description?: string | null;
|
|
@@ -823,11 +749,8 @@ export interface CreateGroupMemberRequest {
|
|
|
823
749
|
loanRole: CreateGroupMemberRequestLoanRoleEnum;
|
|
824
750
|
}
|
|
825
751
|
export interface CreateInviteRequest {
|
|
826
|
-
/** @minLength 1 */
|
|
827
752
|
firstName: string;
|
|
828
|
-
/** @minLength 1 */
|
|
829
753
|
lastName: string;
|
|
830
|
-
/** @format email */
|
|
831
754
|
emailAddress: string;
|
|
832
755
|
phoneNumber?: string | null;
|
|
833
756
|
/** @deprecated */
|
|
@@ -841,25 +764,15 @@ export interface CreateInviteRequest {
|
|
|
841
764
|
loanRole?: LoanRole | null;
|
|
842
765
|
}
|
|
843
766
|
export interface CreateLoanDocumentFolderRequest {
|
|
844
|
-
/**
|
|
845
|
-
* @minLength 1
|
|
846
|
-
* @maxLength 250
|
|
847
|
-
*/
|
|
848
767
|
name: string;
|
|
849
768
|
permissions: LoanDocumentFolderPermissionRequest[];
|
|
850
769
|
}
|
|
851
770
|
export interface CreateLoanImportRequest {
|
|
852
771
|
/** @format uuid */
|
|
853
772
|
accountID: string;
|
|
854
|
-
/**
|
|
855
|
-
* @format date-time
|
|
856
|
-
* @minLength 1
|
|
857
|
-
*/
|
|
773
|
+
/** @format date-time */
|
|
858
774
|
endDate: string;
|
|
859
|
-
/**
|
|
860
|
-
* @format date-time
|
|
861
|
-
* @minLength 1
|
|
862
|
-
*/
|
|
775
|
+
/** @format date-time */
|
|
863
776
|
startDate: string;
|
|
864
777
|
importMode: CreateLoanImportRequestImportModeEnum;
|
|
865
778
|
}
|
|
@@ -882,58 +795,38 @@ export interface CreateUserDraft {
|
|
|
882
795
|
loanRole: CreateUserDraftLoanRoleEnum;
|
|
883
796
|
}
|
|
884
797
|
export interface CreateUserGroupRequest {
|
|
885
|
-
/**
|
|
886
|
-
* @minLength 1
|
|
887
|
-
* @maxLength 200
|
|
888
|
-
*/
|
|
889
798
|
name: string;
|
|
890
|
-
/** @maxLength 1000 */
|
|
891
799
|
description?: string | null;
|
|
892
800
|
}
|
|
893
801
|
export interface CreateUserLoan {
|
|
894
802
|
loanRole?: LoanRole | null;
|
|
895
803
|
}
|
|
896
804
|
export interface CreateUserRelationRequest {
|
|
897
|
-
/**
|
|
898
|
-
* @format uuid
|
|
899
|
-
* @minLength 1
|
|
900
|
-
*/
|
|
805
|
+
/** @format uuid */
|
|
901
806
|
userId1: string;
|
|
902
|
-
/**
|
|
903
|
-
* @format uuid
|
|
904
|
-
* @minLength 1
|
|
905
|
-
*/
|
|
807
|
+
/** @format uuid */
|
|
906
808
|
userId2: string;
|
|
907
|
-
/** @minLength 1 */
|
|
908
809
|
relationType: string;
|
|
909
810
|
}
|
|
910
811
|
export interface CreateUserRequest {
|
|
911
|
-
/**
|
|
912
|
-
* @format email
|
|
913
|
-
* @minLength 1
|
|
914
|
-
*/
|
|
915
812
|
email: string;
|
|
916
813
|
phone?: string | null;
|
|
917
|
-
/**
|
|
918
|
-
* @minLength 1
|
|
919
|
-
* @maxLength 255
|
|
920
|
-
*/
|
|
921
814
|
firstName: string;
|
|
922
|
-
/**
|
|
923
|
-
* @minLength 1
|
|
924
|
-
* @maxLength 255
|
|
925
|
-
*/
|
|
926
815
|
lastName: string;
|
|
927
816
|
title?: string | null;
|
|
928
817
|
/** @format uuid */
|
|
929
818
|
branchId?: string | null;
|
|
930
|
-
/** @minLength 1 */
|
|
931
819
|
userRole: string;
|
|
932
820
|
isInternal?: boolean | null;
|
|
933
821
|
}
|
|
934
822
|
export interface CreateWebhookRequest {
|
|
935
823
|
webhookPath: string;
|
|
936
824
|
}
|
|
825
|
+
export interface CreditAuthPendingSummary {
|
|
826
|
+
/** @format int32 */
|
|
827
|
+
total: number;
|
|
828
|
+
borrowers: BorrowerIdentity[];
|
|
829
|
+
}
|
|
937
830
|
export interface CustomFieldDefinition {
|
|
938
831
|
/** @format date-time */
|
|
939
832
|
createdAt: string;
|
|
@@ -1222,16 +1115,13 @@ export interface DocumentTemplateVersionBase {
|
|
|
1222
1115
|
htmlBody: string;
|
|
1223
1116
|
}
|
|
1224
1117
|
export interface DocumentTemplateVersionRequest {
|
|
1225
|
-
/** @maxLength 255 */
|
|
1226
1118
|
name?: string | null;
|
|
1227
1119
|
isActive: boolean;
|
|
1228
1120
|
htmlBody: string;
|
|
1229
1121
|
}
|
|
1230
1122
|
export interface DocumentTemplateVersionUpdateRequest {
|
|
1231
|
-
|
|
1232
|
-
name: string;
|
|
1123
|
+
name?: string | null;
|
|
1233
1124
|
isActive: boolean;
|
|
1234
|
-
/** @minLength 1 */
|
|
1235
1125
|
htmlBody: string;
|
|
1236
1126
|
}
|
|
1237
1127
|
export interface Draft {
|
|
@@ -1286,6 +1176,11 @@ export interface DraftRequest {
|
|
|
1286
1176
|
customData?: any | null;
|
|
1287
1177
|
isCoBorrower: boolean;
|
|
1288
1178
|
}
|
|
1179
|
+
export interface EconsentPendingSummary {
|
|
1180
|
+
/** @format int32 */
|
|
1181
|
+
total: number;
|
|
1182
|
+
borrowers: BorrowerIdentity[];
|
|
1183
|
+
}
|
|
1289
1184
|
export interface EnabledServices {
|
|
1290
1185
|
/** @format date-time */
|
|
1291
1186
|
createdAt: string;
|
|
@@ -1520,10 +1415,6 @@ export interface FilePaginated {
|
|
|
1520
1415
|
count: number;
|
|
1521
1416
|
}
|
|
1522
1417
|
export interface FileRequest {
|
|
1523
|
-
/**
|
|
1524
|
-
* @minLength 1
|
|
1525
|
-
* @maxLength 250
|
|
1526
|
-
*/
|
|
1527
1418
|
name: string;
|
|
1528
1419
|
}
|
|
1529
1420
|
export interface FileSearchCriteria {
|
|
@@ -1678,13 +1569,11 @@ export interface FormVersion {
|
|
|
1678
1569
|
form: GetForm;
|
|
1679
1570
|
}
|
|
1680
1571
|
export interface FormVersionRequest {
|
|
1681
|
-
/** @maxLength 255 */
|
|
1682
1572
|
name?: string | null;
|
|
1683
1573
|
isActive: boolean;
|
|
1684
1574
|
formJSON: any;
|
|
1685
1575
|
}
|
|
1686
1576
|
export interface FormVersionUpdateRequest {
|
|
1687
|
-
/** @maxLength 255 */
|
|
1688
1577
|
name?: string | null;
|
|
1689
1578
|
isActive: boolean;
|
|
1690
1579
|
formJSON: any;
|
|
@@ -1702,10 +1591,7 @@ export interface FusionReportFilter {
|
|
|
1702
1591
|
export interface GenerateDocumentRequest {
|
|
1703
1592
|
/** @deprecated */
|
|
1704
1593
|
loanID?: string | null;
|
|
1705
|
-
/**
|
|
1706
|
-
* @format uuid
|
|
1707
|
-
* @minLength 1
|
|
1708
|
-
*/
|
|
1594
|
+
/** @format uuid */
|
|
1709
1595
|
templateID: string;
|
|
1710
1596
|
/**
|
|
1711
1597
|
* @deprecated
|
|
@@ -1779,24 +1665,16 @@ export interface GetSiteConfigurationRequest {
|
|
|
1779
1665
|
url: string;
|
|
1780
1666
|
}
|
|
1781
1667
|
export interface GetSiteFormRequest {
|
|
1782
|
-
/**
|
|
1783
|
-
* @format uuid
|
|
1784
|
-
* @minLength 1
|
|
1785
|
-
*/
|
|
1668
|
+
/** @format uuid */
|
|
1786
1669
|
siteConfigurationId: string;
|
|
1787
1670
|
/** @format int32 */
|
|
1788
1671
|
formType: number;
|
|
1789
1672
|
slug?: string | null;
|
|
1790
1673
|
}
|
|
1791
1674
|
export interface GetUserByEmailRequest {
|
|
1792
|
-
/**
|
|
1793
|
-
* @format email
|
|
1794
|
-
* @minLength 1
|
|
1795
|
-
*/
|
|
1796
1675
|
email: string;
|
|
1797
1676
|
}
|
|
1798
1677
|
export interface GetWorkflowRequest {
|
|
1799
|
-
/** @minLength 1 */
|
|
1800
1678
|
formType: string;
|
|
1801
1679
|
borrowerType?: string | null;
|
|
1802
1680
|
userRole?: string | null;
|
|
@@ -1855,15 +1733,9 @@ export interface ImpersonatedDetailedUser {
|
|
|
1855
1733
|
impersonatingUser?: User | null;
|
|
1856
1734
|
}
|
|
1857
1735
|
export interface ImportUserLoanTaskRequest {
|
|
1858
|
-
/**
|
|
1859
|
-
* @format uuid
|
|
1860
|
-
* @minLength 1
|
|
1861
|
-
*/
|
|
1736
|
+
/** @format uuid */
|
|
1862
1737
|
taskID: string;
|
|
1863
|
-
/**
|
|
1864
|
-
* @format uuid
|
|
1865
|
-
* @minLength 1
|
|
1866
|
-
*/
|
|
1738
|
+
/** @format uuid */
|
|
1867
1739
|
userID: string;
|
|
1868
1740
|
}
|
|
1869
1741
|
export interface IntegrationSettings {
|
|
@@ -1979,16 +1851,9 @@ export interface ListingRequest {
|
|
|
1979
1851
|
description?: string | null;
|
|
1980
1852
|
mlsNumber?: string | null;
|
|
1981
1853
|
address: AddressRequest;
|
|
1982
|
-
/**
|
|
1983
|
-
* @format int32
|
|
1984
|
-
* @min 0
|
|
1985
|
-
* @exclusiveMin true
|
|
1986
|
-
*/
|
|
1854
|
+
/** @format int32 */
|
|
1987
1855
|
salePrice?: number | null;
|
|
1988
|
-
/**
|
|
1989
|
-
* @format date-time
|
|
1990
|
-
* @minLength 1
|
|
1991
|
-
*/
|
|
1856
|
+
/** @format date-time */
|
|
1992
1857
|
activeDate: string;
|
|
1993
1858
|
/** @format date-time */
|
|
1994
1859
|
expirationDate?: string | null;
|
|
@@ -2098,7 +1963,6 @@ export interface LoanApplicationRequest {
|
|
|
2098
1963
|
companyName?: string | null;
|
|
2099
1964
|
property?: LoanPropertyRequest | null;
|
|
2100
1965
|
financial?: LoanFinancialRequest | null;
|
|
2101
|
-
/** @minItems 1 */
|
|
2102
1966
|
borrowers: LoanBorrowerRequest[];
|
|
2103
1967
|
nonOwningBorrowers: LoanNonOwningBorrowerRequest[];
|
|
2104
1968
|
/** @format uuid */
|
|
@@ -2158,12 +2022,8 @@ export interface LoanBorrowerAccountAsset {
|
|
|
2158
2022
|
type?: LoanAccountAssetType | null;
|
|
2159
2023
|
}
|
|
2160
2024
|
export interface LoanBorrowerAccountAssetRequest {
|
|
2161
|
-
/** @maxLength 255 */
|
|
2162
2025
|
financialInstitution?: string | null;
|
|
2163
|
-
/**
|
|
2164
|
-
* @format double
|
|
2165
|
-
* @min 0
|
|
2166
|
-
*/
|
|
2026
|
+
/** @format double */
|
|
2167
2027
|
value?: number | null;
|
|
2168
2028
|
type?: LoanAccountAssetType | null;
|
|
2169
2029
|
}
|
|
@@ -2185,23 +2045,15 @@ export interface LoanBorrowerAddress {
|
|
|
2185
2045
|
timeAtAddress?: TimeAtAddress | null;
|
|
2186
2046
|
}
|
|
2187
2047
|
export interface LoanBorrowerAddressRequest {
|
|
2188
|
-
/** @maxLength 255 */
|
|
2189
2048
|
street?: string | null;
|
|
2190
|
-
/** @maxLength 50 */
|
|
2191
2049
|
unit?: string | null;
|
|
2192
|
-
/** @maxLength 50 */
|
|
2193
2050
|
unitType?: string | null;
|
|
2194
|
-
/** @maxLength 100 */
|
|
2195
2051
|
city?: string | null;
|
|
2196
2052
|
state?: string | null;
|
|
2197
|
-
/** @maxLength 100 */
|
|
2198
2053
|
county?: string | null;
|
|
2199
2054
|
postalCode?: string | null;
|
|
2200
2055
|
housing?: LoanHousingType | null;
|
|
2201
|
-
/**
|
|
2202
|
-
* @format double
|
|
2203
|
-
* @min 0
|
|
2204
|
-
*/
|
|
2056
|
+
/** @format double */
|
|
2205
2057
|
rentAmount?: number | null;
|
|
2206
2058
|
isCurrent?: boolean | null;
|
|
2207
2059
|
isMailingAddress?: boolean | null;
|
|
@@ -2216,13 +2068,9 @@ export interface LoanBorrowerAlternateName {
|
|
|
2216
2068
|
middleName?: string | null;
|
|
2217
2069
|
}
|
|
2218
2070
|
export interface LoanBorrowerAlternateNameRequest {
|
|
2219
|
-
/** @maxLength 20 */
|
|
2220
2071
|
suffix?: string | null;
|
|
2221
|
-
/** @maxLength 100 */
|
|
2222
2072
|
lastName?: string | null;
|
|
2223
|
-
/** @maxLength 100 */
|
|
2224
2073
|
firstName?: string | null;
|
|
2225
|
-
/** @maxLength 100 */
|
|
2226
2074
|
middleName?: string | null;
|
|
2227
2075
|
}
|
|
2228
2076
|
export interface LoanBorrowerBankruptcyChaptersRequest {
|
|
@@ -2240,7 +2088,6 @@ export interface LoanBorrowerBankruptcyDeclaration {
|
|
|
2240
2088
|
}
|
|
2241
2089
|
export interface LoanBorrowerBankruptcyDeclarationRequest {
|
|
2242
2090
|
isAffirmative?: boolean | null;
|
|
2243
|
-
/** @maxLength 1000 */
|
|
2244
2091
|
description?: string | null;
|
|
2245
2092
|
chapters?: LoanBorrowerBankruptcyChaptersRequest | null;
|
|
2246
2093
|
types?: LoanBankruptcyType[] | null;
|
|
@@ -2310,7 +2157,6 @@ export interface LoanBorrowerDemographicsEthnicity {
|
|
|
2310
2157
|
export interface LoanBorrowerDemographicsEthnicityRequest {
|
|
2311
2158
|
OptOut?: boolean | null;
|
|
2312
2159
|
Hispanic?: boolean | null;
|
|
2313
|
-
/** @maxLength 255 */
|
|
2314
2160
|
OtherHispanic?: string | null;
|
|
2315
2161
|
Mexican?: boolean | null;
|
|
2316
2162
|
PuertoRican?: boolean | null;
|
|
@@ -2347,7 +2193,6 @@ export interface LoanBorrowerDemographicsRace {
|
|
|
2347
2193
|
}
|
|
2348
2194
|
export interface LoanBorrowerDemographicsRaceRequest {
|
|
2349
2195
|
AmericanIndian?: boolean | null;
|
|
2350
|
-
/** @maxLength 255 */
|
|
2351
2196
|
TribeName?: string | null;
|
|
2352
2197
|
Asian?: boolean | null;
|
|
2353
2198
|
AsianIndian?: boolean | null;
|
|
@@ -2356,14 +2201,12 @@ export interface LoanBorrowerDemographicsRaceRequest {
|
|
|
2356
2201
|
Japanese?: boolean | null;
|
|
2357
2202
|
Korean?: boolean | null;
|
|
2358
2203
|
Vietnamese?: boolean | null;
|
|
2359
|
-
/** @maxLength 255 */
|
|
2360
2204
|
OtherAsian?: string | null;
|
|
2361
2205
|
Black?: boolean | null;
|
|
2362
2206
|
NativeIslander?: boolean | null;
|
|
2363
2207
|
NativeHawaiian?: boolean | null;
|
|
2364
2208
|
Guamanian?: boolean | null;
|
|
2365
2209
|
Samoan?: boolean | null;
|
|
2366
|
-
/** @maxLength 255 */
|
|
2367
2210
|
OtherNativeIslander?: string | null;
|
|
2368
2211
|
White?: boolean | null;
|
|
2369
2212
|
OptOut?: boolean | null;
|
|
@@ -2407,10 +2250,7 @@ export interface LoanBorrowerEmploymentCurrentGrossIncome {
|
|
|
2407
2250
|
militaryEntitlements?: number | null;
|
|
2408
2251
|
}
|
|
2409
2252
|
export interface LoanBorrowerEmploymentCurrentGrossIncomeRequest {
|
|
2410
|
-
/**
|
|
2411
|
-
* @format double
|
|
2412
|
-
* @min 0
|
|
2413
|
-
*/
|
|
2253
|
+
/** @format double */
|
|
2414
2254
|
base?: number | null;
|
|
2415
2255
|
/** @format double */
|
|
2416
2256
|
hourlyRate?: number | null;
|
|
@@ -2418,30 +2258,15 @@ export interface LoanBorrowerEmploymentCurrentGrossIncomeRequest {
|
|
|
2418
2258
|
hoursPerWeek?: number | null;
|
|
2419
2259
|
/** @format double */
|
|
2420
2260
|
distributions?: number | null;
|
|
2421
|
-
/**
|
|
2422
|
-
* @format double
|
|
2423
|
-
* @min 0
|
|
2424
|
-
*/
|
|
2261
|
+
/** @format double */
|
|
2425
2262
|
other?: number | null;
|
|
2426
|
-
/**
|
|
2427
|
-
* @format double
|
|
2428
|
-
* @min 0
|
|
2429
|
-
*/
|
|
2263
|
+
/** @format double */
|
|
2430
2264
|
bonus?: number | null;
|
|
2431
|
-
/**
|
|
2432
|
-
* @format double
|
|
2433
|
-
* @min 0
|
|
2434
|
-
*/
|
|
2265
|
+
/** @format double */
|
|
2435
2266
|
overtime?: number | null;
|
|
2436
|
-
/**
|
|
2437
|
-
* @format double
|
|
2438
|
-
* @min 0
|
|
2439
|
-
*/
|
|
2267
|
+
/** @format double */
|
|
2440
2268
|
commission?: number | null;
|
|
2441
|
-
/**
|
|
2442
|
-
* @format double
|
|
2443
|
-
* @min 0
|
|
2444
|
-
*/
|
|
2269
|
+
/** @format double */
|
|
2445
2270
|
militaryEntitlements?: number | null;
|
|
2446
2271
|
}
|
|
2447
2272
|
export interface LoanBorrowerEmploymentCurrentOwnership {
|
|
@@ -2455,16 +2280,11 @@ export interface LoanBorrowerEmploymentCurrentOwnership {
|
|
|
2455
2280
|
export interface LoanBorrowerEmploymentCurrentOwnershipRequest {
|
|
2456
2281
|
isOwner?: boolean | null;
|
|
2457
2282
|
hasOwnershipOver25Percent?: boolean | null;
|
|
2458
|
-
/**
|
|
2459
|
-
* @format double
|
|
2460
|
-
* @min 0
|
|
2461
|
-
*/
|
|
2283
|
+
/** @format double */
|
|
2462
2284
|
monthlyIncome?: number | null;
|
|
2463
2285
|
}
|
|
2464
2286
|
export interface LoanBorrowerEmploymentCurrentRequest {
|
|
2465
|
-
/** @maxLength 255 */
|
|
2466
2287
|
name?: string | null;
|
|
2467
|
-
/** @maxLength 100 */
|
|
2468
2288
|
title?: string | null;
|
|
2469
2289
|
phoneNumber?: string | null;
|
|
2470
2290
|
/** @format date */
|
|
@@ -2506,19 +2326,14 @@ export interface LoanBorrowerEmploymentPrevious {
|
|
|
2506
2326
|
address?: AddressV3 | null;
|
|
2507
2327
|
}
|
|
2508
2328
|
export interface LoanBorrowerEmploymentPreviousRequest {
|
|
2509
|
-
/** @maxLength 255 */
|
|
2510
2329
|
name?: string | null;
|
|
2511
|
-
/** @maxLength 100 */
|
|
2512
2330
|
title?: string | null;
|
|
2513
2331
|
phoneNumber?: string | null;
|
|
2514
2332
|
/** @format date */
|
|
2515
2333
|
startDate?: string | null;
|
|
2516
2334
|
/** @format date */
|
|
2517
2335
|
endDate?: string | null;
|
|
2518
|
-
/**
|
|
2519
|
-
* @format double
|
|
2520
|
-
* @min 0
|
|
2521
|
-
*/
|
|
2336
|
+
/** @format double */
|
|
2522
2337
|
grossIncome?: number | null;
|
|
2523
2338
|
isSelfEmployed?: boolean | null;
|
|
2524
2339
|
address?: AddressRequest | null;
|
|
@@ -2533,10 +2348,7 @@ export interface LoanBorrowerGift {
|
|
|
2533
2348
|
assetType?: LoanGiftAssetType | null;
|
|
2534
2349
|
}
|
|
2535
2350
|
export interface LoanBorrowerGiftRequest {
|
|
2536
|
-
/**
|
|
2537
|
-
* @format double
|
|
2538
|
-
* @min 0
|
|
2539
|
-
*/
|
|
2351
|
+
/** @format double */
|
|
2540
2352
|
value?: number | null;
|
|
2541
2353
|
isDeposited?: boolean | null;
|
|
2542
2354
|
source?: LoanGiftSource | null;
|
|
@@ -2559,7 +2371,6 @@ export interface LoanBorrowerHomeOwnershipProvider {
|
|
|
2559
2371
|
address?: AddressV3 | null;
|
|
2560
2372
|
}
|
|
2561
2373
|
export interface LoanBorrowerHomeOwnershipProviderRequest {
|
|
2562
|
-
/** @maxLength 255 */
|
|
2563
2374
|
name?: string | null;
|
|
2564
2375
|
phoneNumber?: string | null;
|
|
2565
2376
|
address?: AddressRequest | null;
|
|
@@ -2588,26 +2399,14 @@ export interface LoanBorrowerLiability {
|
|
|
2588
2399
|
}
|
|
2589
2400
|
export interface LoanBorrowerLiabilityRequest {
|
|
2590
2401
|
type?: LoanLiabilityType | null;
|
|
2591
|
-
/** @maxLength 255 */
|
|
2592
2402
|
name?: string | null;
|
|
2593
|
-
/** @maxLength 50 */
|
|
2594
2403
|
accountNumber?: string | null;
|
|
2595
|
-
/** @maxLength 255 */
|
|
2596
2404
|
financialInstitution?: string | null;
|
|
2597
|
-
/**
|
|
2598
|
-
* @format double
|
|
2599
|
-
* @min 0
|
|
2600
|
-
*/
|
|
2405
|
+
/** @format double */
|
|
2601
2406
|
balance?: number | null;
|
|
2602
|
-
/**
|
|
2603
|
-
* @format double
|
|
2604
|
-
* @min 0
|
|
2605
|
-
*/
|
|
2407
|
+
/** @format double */
|
|
2606
2408
|
monthlyPayment?: number | null;
|
|
2607
|
-
/**
|
|
2608
|
-
* @format int32
|
|
2609
|
-
* @min 0
|
|
2610
|
-
*/
|
|
2409
|
+
/** @format int32 */
|
|
2611
2410
|
monthsLeftToPay?: number | null;
|
|
2612
2411
|
isPaidOffBeforeClosing?: boolean | null;
|
|
2613
2412
|
}
|
|
@@ -2635,12 +2434,8 @@ export interface LoanBorrowerMoneyDeclaration {
|
|
|
2635
2434
|
}
|
|
2636
2435
|
export interface LoanBorrowerMoneyDeclarationRequest {
|
|
2637
2436
|
isAffirmative?: boolean | null;
|
|
2638
|
-
/** @maxLength 1000 */
|
|
2639
2437
|
description?: string | null;
|
|
2640
|
-
/**
|
|
2641
|
-
* @format double
|
|
2642
|
-
* @min 0
|
|
2643
|
-
*/
|
|
2438
|
+
/** @format double */
|
|
2644
2439
|
amount?: number | null;
|
|
2645
2440
|
}
|
|
2646
2441
|
export interface LoanBorrowerOtherAsset {
|
|
@@ -2653,12 +2448,8 @@ export interface LoanBorrowerOtherAsset {
|
|
|
2653
2448
|
}
|
|
2654
2449
|
export interface LoanBorrowerOtherAssetRequest {
|
|
2655
2450
|
type?: LoanOtherAssetType | null;
|
|
2656
|
-
/** @maxLength 255 */
|
|
2657
2451
|
other?: string | null;
|
|
2658
|
-
/**
|
|
2659
|
-
* @format double
|
|
2660
|
-
* @min 0
|
|
2661
|
-
*/
|
|
2452
|
+
/** @format double */
|
|
2662
2453
|
value?: number | null;
|
|
2663
2454
|
}
|
|
2664
2455
|
export interface LoanBorrowerOtherIncome {
|
|
@@ -2669,10 +2460,7 @@ export interface LoanBorrowerOtherIncome {
|
|
|
2669
2460
|
type?: LoanOtherIncomeType | null;
|
|
2670
2461
|
}
|
|
2671
2462
|
export interface LoanBorrowerOtherIncomeRequest {
|
|
2672
|
-
/**
|
|
2673
|
-
* @format double
|
|
2674
|
-
* @min 0
|
|
2675
|
-
*/
|
|
2463
|
+
/** @format double */
|
|
2676
2464
|
value?: number | null;
|
|
2677
2465
|
type?: LoanOtherIncomeType | null;
|
|
2678
2466
|
}
|
|
@@ -2684,10 +2472,7 @@ export interface LoanBorrowerOtherLiability {
|
|
|
2684
2472
|
type?: LoanOtherLiabilityType | null;
|
|
2685
2473
|
}
|
|
2686
2474
|
export interface LoanBorrowerOtherLiabilityRequest {
|
|
2687
|
-
/**
|
|
2688
|
-
* @format double
|
|
2689
|
-
* @min 0
|
|
2690
|
-
*/
|
|
2475
|
+
/** @format double */
|
|
2691
2476
|
monthlyPayment?: number | null;
|
|
2692
2477
|
type?: LoanOtherLiabilityType | null;
|
|
2693
2478
|
}
|
|
@@ -2699,7 +2484,6 @@ export interface LoanBorrowerPhoneNumber {
|
|
|
2699
2484
|
type?: LoanPhoneNumberType | null;
|
|
2700
2485
|
}
|
|
2701
2486
|
export interface LoanBorrowerPhoneNumberRequest {
|
|
2702
|
-
/** @maxLength 10 */
|
|
2703
2487
|
ext?: string | null;
|
|
2704
2488
|
number?: string | null;
|
|
2705
2489
|
type?: LoanPhoneNumberType | null;
|
|
@@ -2715,7 +2499,6 @@ export interface LoanBorrowerPrimaryResidenceDeclaration {
|
|
|
2715
2499
|
}
|
|
2716
2500
|
export interface LoanBorrowerPrimaryResidenceDeclarationRequest {
|
|
2717
2501
|
isAffirmative?: boolean | null;
|
|
2718
|
-
/** @maxLength 1000 */
|
|
2719
2502
|
description?: string | null;
|
|
2720
2503
|
hasInterestInLastThreeYears?: boolean | null;
|
|
2721
2504
|
titleHeld?: LoanTitleHeld | null;
|
|
@@ -2750,24 +2533,13 @@ export interface LoanBorrowerRealEstateAssetMortgage {
|
|
|
2750
2533
|
loanType?: LoanType | null;
|
|
2751
2534
|
}
|
|
2752
2535
|
export interface LoanBorrowerRealEstateAssetMortgageRequest {
|
|
2753
|
-
/** @maxLength 255 */
|
|
2754
2536
|
creditor?: string | null;
|
|
2755
|
-
/** @maxLength 50 */
|
|
2756
2537
|
accountNumber?: string | null;
|
|
2757
|
-
/**
|
|
2758
|
-
* @format double
|
|
2759
|
-
* @min 0
|
|
2760
|
-
*/
|
|
2538
|
+
/** @format double */
|
|
2761
2539
|
balance?: number | null;
|
|
2762
|
-
/**
|
|
2763
|
-
* @format double
|
|
2764
|
-
* @min 0
|
|
2765
|
-
*/
|
|
2540
|
+
/** @format double */
|
|
2766
2541
|
creditLimit?: number | null;
|
|
2767
|
-
/**
|
|
2768
|
-
* @format double
|
|
2769
|
-
* @min 0
|
|
2770
|
-
*/
|
|
2542
|
+
/** @format double */
|
|
2771
2543
|
monthlyMortgagePayment?: number | null;
|
|
2772
2544
|
isBalancePaidBeforeClosing?: boolean | null;
|
|
2773
2545
|
loanType?: LoanType | null;
|
|
@@ -2775,10 +2547,7 @@ export interface LoanBorrowerRealEstateAssetMortgageRequest {
|
|
|
2775
2547
|
export interface LoanBorrowerRealEstateAssetRequest {
|
|
2776
2548
|
status?: LoanRealEstateStatus | null;
|
|
2777
2549
|
occupancy?: LoanOccupancyType | null;
|
|
2778
|
-
/**
|
|
2779
|
-
* @format double
|
|
2780
|
-
* @min 0
|
|
2781
|
-
*/
|
|
2550
|
+
/** @format double */
|
|
2782
2551
|
marketValue?: number | null;
|
|
2783
2552
|
/** @format double */
|
|
2784
2553
|
purchasePrice?: number | null;
|
|
@@ -2786,15 +2555,9 @@ export interface LoanBorrowerRealEstateAssetRequest {
|
|
|
2786
2555
|
yearBuilt?: number | null;
|
|
2787
2556
|
/** @format int32 */
|
|
2788
2557
|
numberOfUnits?: number | null;
|
|
2789
|
-
/**
|
|
2790
|
-
* @format double
|
|
2791
|
-
* @min 0
|
|
2792
|
-
*/
|
|
2558
|
+
/** @format double */
|
|
2793
2559
|
monthlyRentalIncome?: number | null;
|
|
2794
|
-
/**
|
|
2795
|
-
* @format double
|
|
2796
|
-
* @min 0
|
|
2797
|
-
*/
|
|
2560
|
+
/** @format double */
|
|
2798
2561
|
maintenanceExpense?: number | null;
|
|
2799
2562
|
address?: AddressRequest | null;
|
|
2800
2563
|
mortgages?: LoanBorrowerRealEstateAssetMortgageRequest[] | null;
|
|
@@ -2802,11 +2565,8 @@ export interface LoanBorrowerRealEstateAssetRequest {
|
|
|
2802
2565
|
export interface LoanBorrowerRequest {
|
|
2803
2566
|
ssn?: string | null;
|
|
2804
2567
|
email?: string | null;
|
|
2805
|
-
/** @maxLength 100 */
|
|
2806
2568
|
lastName?: string | null;
|
|
2807
|
-
/** @maxLength 100 */
|
|
2808
2569
|
firstName?: string | null;
|
|
2809
|
-
/** @maxLength 100 */
|
|
2810
2570
|
middleName?: string | null;
|
|
2811
2571
|
prefix?: LoanNamePrefix | null;
|
|
2812
2572
|
suffix?: LoanNameSuffix | null;
|
|
@@ -2847,7 +2607,6 @@ export interface LoanBorrowerSimpleDeclaration {
|
|
|
2847
2607
|
}
|
|
2848
2608
|
export interface LoanBorrowerSimpleDeclarationRequest {
|
|
2849
2609
|
isAffirmative?: boolean | null;
|
|
2850
|
-
/** @maxLength 1000 */
|
|
2851
2610
|
description?: string | null;
|
|
2852
2611
|
}
|
|
2853
2612
|
export interface LoanComparison {
|
|
@@ -2874,61 +2633,29 @@ export interface LoanComparisonCalculatorLoan {
|
|
|
2874
2633
|
amortization: Amortization;
|
|
2875
2634
|
}
|
|
2876
2635
|
export interface LoanComparisonCalculatorLoanRequest {
|
|
2877
|
-
/**
|
|
2878
|
-
* @format double
|
|
2879
|
-
* @min 1
|
|
2880
|
-
* @max 25
|
|
2881
|
-
*/
|
|
2636
|
+
/** @format double */
|
|
2882
2637
|
interestRate: number;
|
|
2883
|
-
/**
|
|
2884
|
-
* @format int32
|
|
2885
|
-
* @min 1
|
|
2886
|
-
* @max 40
|
|
2887
|
-
*/
|
|
2638
|
+
/** @format int32 */
|
|
2888
2639
|
term: number;
|
|
2889
|
-
/**
|
|
2890
|
-
* @format double
|
|
2891
|
-
* @min 0
|
|
2892
|
-
* @max 3
|
|
2893
|
-
*/
|
|
2640
|
+
/** @format double */
|
|
2894
2641
|
points: number;
|
|
2895
|
-
/**
|
|
2896
|
-
* @format double
|
|
2897
|
-
* @min 0
|
|
2898
|
-
* @max 5
|
|
2899
|
-
*/
|
|
2642
|
+
/** @format double */
|
|
2900
2643
|
originationFees: number;
|
|
2901
|
-
/**
|
|
2902
|
-
* @format double
|
|
2903
|
-
* @min 500
|
|
2904
|
-
* @max 100000
|
|
2905
|
-
*/
|
|
2644
|
+
/** @format double */
|
|
2906
2645
|
closingCosts: number;
|
|
2907
|
-
/**
|
|
2908
|
-
* @format double
|
|
2909
|
-
* @min 25000
|
|
2910
|
-
* @max 10000000
|
|
2911
|
-
*/
|
|
2646
|
+
/** @format double */
|
|
2912
2647
|
homeValue: number;
|
|
2913
|
-
/**
|
|
2914
|
-
* @format double
|
|
2915
|
-
* @min 0
|
|
2916
|
-
* @max 10
|
|
2917
|
-
*/
|
|
2648
|
+
/** @format double */
|
|
2918
2649
|
pmi: number;
|
|
2919
2650
|
}
|
|
2920
2651
|
export interface LoanComparisonCalculatorRequest {
|
|
2921
|
-
/**
|
|
2922
|
-
* @format double
|
|
2923
|
-
* @min 30000
|
|
2924
|
-
*/
|
|
2652
|
+
/** @format double */
|
|
2925
2653
|
loanAmount: number;
|
|
2926
2654
|
loans: LoanComparisonCalculatorLoanRequest[];
|
|
2927
2655
|
}
|
|
2928
2656
|
export interface LoanComparisonScenario {
|
|
2929
2657
|
loanProgram?: string | null;
|
|
2930
|
-
|
|
2931
|
-
loanType: string;
|
|
2658
|
+
loanType?: string | null;
|
|
2932
2659
|
propertyValue?: string | null;
|
|
2933
2660
|
purchasePrice?: string | null;
|
|
2934
2661
|
downpaymentAmount?: string | null;
|
|
@@ -2957,7 +2684,6 @@ export interface LoanComparisonScenario {
|
|
|
2957
2684
|
fundingFee?: string | null;
|
|
2958
2685
|
}
|
|
2959
2686
|
export interface LoanConsentRequest {
|
|
2960
|
-
/** @format email */
|
|
2961
2687
|
borrowerEmail?: string | null;
|
|
2962
2688
|
borrowerEConsent?: boolean | null;
|
|
2963
2689
|
borrowerCreditAuth?: boolean | null;
|
|
@@ -3102,20 +2828,11 @@ export interface LoanFinancial {
|
|
|
3102
2828
|
}
|
|
3103
2829
|
export interface LoanFinancialRequest {
|
|
3104
2830
|
isDebtsAssetsReviewed?: boolean | null;
|
|
3105
|
-
/**
|
|
3106
|
-
* @format double
|
|
3107
|
-
* @min 0
|
|
3108
|
-
*/
|
|
2831
|
+
/** @format double */
|
|
3109
2832
|
cashToClose?: number | null;
|
|
3110
|
-
/**
|
|
3111
|
-
* @format double
|
|
3112
|
-
* @min 0
|
|
3113
|
-
*/
|
|
2833
|
+
/** @format double */
|
|
3114
2834
|
cashDownPayment?: number | null;
|
|
3115
|
-
/**
|
|
3116
|
-
* @format double
|
|
3117
|
-
* @min 0
|
|
3118
|
-
*/
|
|
2835
|
+
/** @format double */
|
|
3119
2836
|
maximumPurchasePrice?: number | null;
|
|
3120
2837
|
isDownPaymentGift?: boolean | null;
|
|
3121
2838
|
/** @format double */
|
|
@@ -3243,11 +2960,8 @@ export interface LoanNonOwningBorrower {
|
|
|
3243
2960
|
}
|
|
3244
2961
|
export interface LoanNonOwningBorrowerRequest {
|
|
3245
2962
|
email?: string | null;
|
|
3246
|
-
/** @maxLength 100 */
|
|
3247
2963
|
lastName?: string | null;
|
|
3248
|
-
/** @maxLength 100 */
|
|
3249
2964
|
firstName?: string | null;
|
|
3250
|
-
/** @maxLength 100 */
|
|
3251
2965
|
middleName?: string | null;
|
|
3252
2966
|
prefix?: LoanNamePrefix | null;
|
|
3253
2967
|
suffix?: LoanNameSuffix | null;
|
|
@@ -3286,6 +3000,12 @@ export interface LoanOfficerSearchCriteria {
|
|
|
3286
3000
|
export interface LoanOutstandingItems {
|
|
3287
3001
|
/** @format int32 */
|
|
3288
3002
|
pendingSignaturePackages: number;
|
|
3003
|
+
pendingTasks: PendingTasksSummary;
|
|
3004
|
+
pendingSignatures: PendingSignaturesSummary;
|
|
3005
|
+
pendingInvites: PendingInvitesSummary;
|
|
3006
|
+
creditAuthPending: CreditAuthPendingSummary;
|
|
3007
|
+
econsentPending: EconsentPendingSummary;
|
|
3008
|
+
borrowersNotUsingPos: BorrowersNotUsingPosSummary;
|
|
3289
3009
|
}
|
|
3290
3010
|
export interface LoanPatchRequestGuidPatchDocument {
|
|
3291
3011
|
operations: GuidPatchOperation[];
|
|
@@ -3332,22 +3052,12 @@ export interface LoanPropertyMortgage {
|
|
|
3332
3052
|
lienType?: LoanLienPosition | null;
|
|
3333
3053
|
}
|
|
3334
3054
|
export interface LoanPropertyMortgageRequest {
|
|
3335
|
-
/** @maxLength 255 */
|
|
3336
3055
|
creditor?: string | null;
|
|
3337
|
-
/**
|
|
3338
|
-
* @format double
|
|
3339
|
-
* @min 0
|
|
3340
|
-
*/
|
|
3056
|
+
/** @format double */
|
|
3341
3057
|
loanAmount?: number | null;
|
|
3342
|
-
/**
|
|
3343
|
-
* @format double
|
|
3344
|
-
* @min 0
|
|
3345
|
-
*/
|
|
3058
|
+
/** @format double */
|
|
3346
3059
|
creditLimit?: number | null;
|
|
3347
|
-
/**
|
|
3348
|
-
* @format double
|
|
3349
|
-
* @min 0
|
|
3350
|
-
*/
|
|
3060
|
+
/** @format double */
|
|
3351
3061
|
monthlyPayment?: number | null;
|
|
3352
3062
|
lienType?: LoanLienPosition | null;
|
|
3353
3063
|
}
|
|
@@ -3355,46 +3065,22 @@ export interface LoanPropertyRequest {
|
|
|
3355
3065
|
trustType?: LoanTrustType | null;
|
|
3356
3066
|
occupancy?: LoanOccupancyType | null;
|
|
3357
3067
|
propertyType?: LoanPropertyType | null;
|
|
3358
|
-
/** @maxLength 100 */
|
|
3359
3068
|
referenceId?: string | null;
|
|
3360
|
-
/**
|
|
3361
|
-
* @format int32
|
|
3362
|
-
* @min 1800
|
|
3363
|
-
* @max 2036
|
|
3364
|
-
*/
|
|
3069
|
+
/** @format int32 */
|
|
3365
3070
|
yearBuilt?: number | null;
|
|
3366
|
-
/**
|
|
3367
|
-
* @format int32
|
|
3368
|
-
* @min 1900
|
|
3369
|
-
* @max 2036
|
|
3370
|
-
*/
|
|
3071
|
+
/** @format int32 */
|
|
3371
3072
|
yearAcquired?: number | null;
|
|
3372
3073
|
/** @format int32 */
|
|
3373
3074
|
numberOfUnits?: number | null;
|
|
3374
|
-
/**
|
|
3375
|
-
* @format double
|
|
3376
|
-
* @min 0
|
|
3377
|
-
*/
|
|
3075
|
+
/** @format double */
|
|
3378
3076
|
salePrice?: number | null;
|
|
3379
|
-
/**
|
|
3380
|
-
* @format double
|
|
3381
|
-
* @min 0
|
|
3382
|
-
*/
|
|
3077
|
+
/** @format double */
|
|
3383
3078
|
propertyValue?: number | null;
|
|
3384
|
-
/**
|
|
3385
|
-
* @format double
|
|
3386
|
-
* @min 0
|
|
3387
|
-
*/
|
|
3079
|
+
/** @format double */
|
|
3388
3080
|
purchasePrice?: number | null;
|
|
3389
|
-
/**
|
|
3390
|
-
* @format double
|
|
3391
|
-
* @min 0
|
|
3392
|
-
*/
|
|
3081
|
+
/** @format double */
|
|
3393
3082
|
estimatedValue?: number | null;
|
|
3394
|
-
/**
|
|
3395
|
-
* @format double
|
|
3396
|
-
* @min 0
|
|
3397
|
-
*/
|
|
3083
|
+
/** @format double */
|
|
3398
3084
|
monthlyRentalIncome?: number | null;
|
|
3399
3085
|
isMixedUseProperty?: boolean | null;
|
|
3400
3086
|
isManufacturedHome?: boolean | null;
|
|
@@ -3510,7 +3196,7 @@ export interface LosCredentials {
|
|
|
3510
3196
|
export interface LosLoanCreationRequest {
|
|
3511
3197
|
loanOfficerUserName?: string | null;
|
|
3512
3198
|
loanTemplate?: string | null;
|
|
3513
|
-
additionalFields: Record<string, string
|
|
3199
|
+
additionalFields: Record<string, string>;
|
|
3514
3200
|
folder?: string | null;
|
|
3515
3201
|
/** @format int32 */
|
|
3516
3202
|
borrowerPair: number;
|
|
@@ -3627,18 +3313,11 @@ export interface MilestoneConfiguration {
|
|
|
3627
3313
|
notificationsEnabled: boolean;
|
|
3628
3314
|
}
|
|
3629
3315
|
export interface MilestoneConfigurationRequest {
|
|
3630
|
-
/** @minLength 1 */
|
|
3631
3316
|
name: string;
|
|
3632
3317
|
description?: string | null;
|
|
3633
|
-
/** @minLength 1 */
|
|
3634
3318
|
fieldID: string;
|
|
3635
|
-
/**
|
|
3636
|
-
* @format int32
|
|
3637
|
-
* @min -1000
|
|
3638
|
-
* @max 1000
|
|
3639
|
-
*/
|
|
3319
|
+
/** @format int32 */
|
|
3640
3320
|
weight?: number | null;
|
|
3641
|
-
/** @minLength 1 */
|
|
3642
3321
|
loanType: string;
|
|
3643
3322
|
notificationsEnabled: boolean;
|
|
3644
3323
|
}
|
|
@@ -3657,10 +3336,7 @@ export interface MobileAppReviewSeed {
|
|
|
3657
3336
|
borrowerCompleted: boolean;
|
|
3658
3337
|
}
|
|
3659
3338
|
export interface MobileAppReviewSeedRequest {
|
|
3660
|
-
/**
|
|
3661
|
-
* @format uuid
|
|
3662
|
-
* @minLength 1
|
|
3663
|
-
*/
|
|
3339
|
+
/** @format uuid */
|
|
3664
3340
|
accountID: string;
|
|
3665
3341
|
/** @format uuid */
|
|
3666
3342
|
branchID?: string | null;
|
|
@@ -3708,46 +3384,19 @@ export interface MonthlyPaymentCalculator {
|
|
|
3708
3384
|
amortization: Amortization;
|
|
3709
3385
|
}
|
|
3710
3386
|
export interface MonthlyPaymentCalculatorRequest {
|
|
3711
|
-
/**
|
|
3712
|
-
* @format double
|
|
3713
|
-
* @min 30000
|
|
3714
|
-
*/
|
|
3387
|
+
/** @format double */
|
|
3715
3388
|
loanAmount: number;
|
|
3716
|
-
/**
|
|
3717
|
-
* @format double
|
|
3718
|
-
* @min 25000
|
|
3719
|
-
* @max 10000000
|
|
3720
|
-
*/
|
|
3389
|
+
/** @format double */
|
|
3721
3390
|
homeValue: number;
|
|
3722
|
-
/**
|
|
3723
|
-
* @format double
|
|
3724
|
-
* @min 0
|
|
3725
|
-
* @max 10
|
|
3726
|
-
*/
|
|
3391
|
+
/** @format double */
|
|
3727
3392
|
pmi: number;
|
|
3728
|
-
/**
|
|
3729
|
-
* @format double
|
|
3730
|
-
* @min 0
|
|
3731
|
-
* @max 200000
|
|
3732
|
-
*/
|
|
3393
|
+
/** @format double */
|
|
3733
3394
|
annualTaxes: number;
|
|
3734
|
-
/**
|
|
3735
|
-
* @format double
|
|
3736
|
-
* @min 200
|
|
3737
|
-
* @max 50000
|
|
3738
|
-
*/
|
|
3395
|
+
/** @format double */
|
|
3739
3396
|
annualInsurance: number;
|
|
3740
|
-
/**
|
|
3741
|
-
* @format double
|
|
3742
|
-
* @min 1
|
|
3743
|
-
* @max 25
|
|
3744
|
-
*/
|
|
3397
|
+
/** @format double */
|
|
3745
3398
|
interestRate: number;
|
|
3746
|
-
/**
|
|
3747
|
-
* @format int32
|
|
3748
|
-
* @min 1
|
|
3749
|
-
* @max 40
|
|
3750
|
-
*/
|
|
3399
|
+
/** @format int32 */
|
|
3751
3400
|
term: number;
|
|
3752
3401
|
}
|
|
3753
3402
|
export interface NoContentResult {
|
|
@@ -3814,15 +3463,11 @@ export interface NotificationTemplateBasePaginated {
|
|
|
3814
3463
|
count: number;
|
|
3815
3464
|
}
|
|
3816
3465
|
export interface NotificationTemplateRequest {
|
|
3817
|
-
/** @minLength 1 */
|
|
3818
3466
|
htmlBody: string;
|
|
3819
|
-
/** @minLength 1 */
|
|
3820
3467
|
key: string;
|
|
3821
|
-
/** @minLength 1 */
|
|
3822
3468
|
name: string;
|
|
3823
3469
|
plainBody: string;
|
|
3824
3470
|
description?: string | null;
|
|
3825
|
-
/** @minLength 1 */
|
|
3826
3471
|
subject: string;
|
|
3827
3472
|
textEnabled: boolean;
|
|
3828
3473
|
pushNotificationEnabled: boolean;
|
|
@@ -3876,7 +3521,6 @@ export interface NotificationTemplateVersionBase {
|
|
|
3876
3521
|
pushNotificationBody?: string | null;
|
|
3877
3522
|
}
|
|
3878
3523
|
export interface NotificationTemplateVersionRequest {
|
|
3879
|
-
/** @maxLength 255 */
|
|
3880
3524
|
name?: string | null;
|
|
3881
3525
|
isActive: boolean;
|
|
3882
3526
|
htmlBody: string;
|
|
@@ -3885,15 +3529,9 @@ export interface NotificationTemplateVersionRequest {
|
|
|
3885
3529
|
pushNotificationBody?: string | null;
|
|
3886
3530
|
}
|
|
3887
3531
|
export interface NotificationTemplateVersionUpdateRequest {
|
|
3888
|
-
|
|
3889
|
-
* @minLength 1
|
|
3890
|
-
* @maxLength 255
|
|
3891
|
-
*/
|
|
3892
|
-
name: string;
|
|
3532
|
+
name?: string | null;
|
|
3893
3533
|
isActive: boolean;
|
|
3894
|
-
/** @minLength 1 */
|
|
3895
3534
|
htmlBody: string;
|
|
3896
|
-
/** @minLength 1 */
|
|
3897
3535
|
plainBody: string;
|
|
3898
3536
|
textBody?: string | null;
|
|
3899
3537
|
pushNotificationBody?: string | null;
|
|
@@ -3904,7 +3542,6 @@ export interface Operation {
|
|
|
3904
3542
|
path?: string;
|
|
3905
3543
|
}
|
|
3906
3544
|
export interface OverridePasswordRequest {
|
|
3907
|
-
/** @minLength 8 */
|
|
3908
3545
|
password: string;
|
|
3909
3546
|
}
|
|
3910
3547
|
export interface Pagination {
|
|
@@ -3919,11 +3556,35 @@ export interface PartnerSearchCriteria {
|
|
|
3919
3556
|
brands?: string[] | null;
|
|
3920
3557
|
roles?: UserRole[] | null;
|
|
3921
3558
|
}
|
|
3559
|
+
export interface PendingInvite {
|
|
3560
|
+
/** @format uuid */
|
|
3561
|
+
inviteId: string;
|
|
3562
|
+
firstName: string;
|
|
3563
|
+
lastName: string;
|
|
3564
|
+
email: string;
|
|
3565
|
+
phoneNumber?: string | null;
|
|
3566
|
+
role?: LoanRole | null;
|
|
3567
|
+
/** @format date-time */
|
|
3568
|
+
createdAt: string;
|
|
3569
|
+
url: string;
|
|
3570
|
+
}
|
|
3571
|
+
export interface PendingInvitesSummary {
|
|
3572
|
+
/** @format int32 */
|
|
3573
|
+
total: number;
|
|
3574
|
+
invites: PendingInvite[];
|
|
3575
|
+
}
|
|
3576
|
+
export interface PendingSignaturesSummary {
|
|
3577
|
+
/** @format int32 */
|
|
3578
|
+
total: number;
|
|
3579
|
+
borrowers: BorrowerCount[];
|
|
3580
|
+
}
|
|
3581
|
+
export interface PendingTasksSummary {
|
|
3582
|
+
/** @format int32 */
|
|
3583
|
+
total: number;
|
|
3584
|
+
borrowers: BorrowerCount[];
|
|
3585
|
+
}
|
|
3922
3586
|
export interface PostLoanComparisonPdfRequest {
|
|
3923
|
-
/**
|
|
3924
|
-
* @format uuid
|
|
3925
|
-
* @minLength 1
|
|
3926
|
-
*/
|
|
3587
|
+
/** @format uuid */
|
|
3927
3588
|
siteConfigurationID: string;
|
|
3928
3589
|
}
|
|
3929
3590
|
export interface PreferredLoanOfficer {
|
|
@@ -4001,45 +3662,22 @@ export interface RefinanceCalculator {
|
|
|
4001
3662
|
totalBenefit: number;
|
|
4002
3663
|
}
|
|
4003
3664
|
export interface RefinanceCalculatorRequest {
|
|
4004
|
-
/**
|
|
4005
|
-
* @format double
|
|
4006
|
-
* @min 25000
|
|
4007
|
-
* @max 10000000
|
|
4008
|
-
*/
|
|
3665
|
+
/** @format double */
|
|
4009
3666
|
homeValue: number;
|
|
4010
3667
|
currentLoan: RefinanceCurrentLoanRequest;
|
|
4011
3668
|
refinanceLoan: RefinanceRefinanceLoanRequest;
|
|
4012
3669
|
taxRates: TaxRatesRequest;
|
|
4013
3670
|
}
|
|
4014
3671
|
export interface RefinanceCurrentLoanRequest {
|
|
4015
|
-
/**
|
|
4016
|
-
* @format double
|
|
4017
|
-
* @min 1
|
|
4018
|
-
* @max 25
|
|
4019
|
-
*/
|
|
3672
|
+
/** @format double */
|
|
4020
3673
|
interestRate: number;
|
|
4021
|
-
/**
|
|
4022
|
-
* @format int32
|
|
4023
|
-
* @min 1
|
|
4024
|
-
* @max 40
|
|
4025
|
-
*/
|
|
3674
|
+
/** @format int32 */
|
|
4026
3675
|
term: number;
|
|
4027
|
-
/**
|
|
4028
|
-
* @format double
|
|
4029
|
-
* @min 0
|
|
4030
|
-
* @max 10
|
|
4031
|
-
*/
|
|
3676
|
+
/** @format double */
|
|
4032
3677
|
pmi: number;
|
|
4033
|
-
/**
|
|
4034
|
-
* @format double
|
|
4035
|
-
* @min 30000
|
|
4036
|
-
*/
|
|
3678
|
+
/** @format double */
|
|
4037
3679
|
originalLoanAmount: number;
|
|
4038
|
-
/**
|
|
4039
|
-
* @format int32
|
|
4040
|
-
* @min 0
|
|
4041
|
-
* @max 480
|
|
4042
|
-
*/
|
|
3680
|
+
/** @format int32 */
|
|
4043
3681
|
monthsPaid: number;
|
|
4044
3682
|
}
|
|
4045
3683
|
export interface RefinanceLoan {
|
|
@@ -4060,51 +3698,22 @@ export interface RefinanceLoan {
|
|
|
4060
3698
|
amortization: Amortization;
|
|
4061
3699
|
}
|
|
4062
3700
|
export interface RefinanceRefinanceLoanRequest {
|
|
4063
|
-
/**
|
|
4064
|
-
* @format double
|
|
4065
|
-
* @min 1
|
|
4066
|
-
* @max 25
|
|
4067
|
-
*/
|
|
3701
|
+
/** @format double */
|
|
4068
3702
|
interestRate: number;
|
|
4069
|
-
/**
|
|
4070
|
-
* @format int32
|
|
4071
|
-
* @min 1
|
|
4072
|
-
* @max 40
|
|
4073
|
-
*/
|
|
3703
|
+
/** @format int32 */
|
|
4074
3704
|
term: number;
|
|
4075
|
-
/**
|
|
4076
|
-
* @format double
|
|
4077
|
-
* @min 0
|
|
4078
|
-
* @max 10
|
|
4079
|
-
*/
|
|
3705
|
+
/** @format double */
|
|
4080
3706
|
pmi: number;
|
|
4081
|
-
/**
|
|
4082
|
-
* @format double
|
|
4083
|
-
* @min 0
|
|
4084
|
-
* @max 3
|
|
4085
|
-
*/
|
|
3707
|
+
/** @format double */
|
|
4086
3708
|
points: number;
|
|
4087
|
-
/**
|
|
4088
|
-
* @format double
|
|
4089
|
-
* @min 0
|
|
4090
|
-
* @max 5
|
|
4091
|
-
*/
|
|
3709
|
+
/** @format double */
|
|
4092
3710
|
originationFees: number;
|
|
4093
|
-
/**
|
|
4094
|
-
* @format double
|
|
4095
|
-
* @min 500
|
|
4096
|
-
* @max 100000
|
|
4097
|
-
*/
|
|
3711
|
+
/** @format double */
|
|
4098
3712
|
closingCosts: number;
|
|
4099
|
-
/**
|
|
4100
|
-
* @format int32
|
|
4101
|
-
* @min 0
|
|
4102
|
-
* @max 30
|
|
4103
|
-
*/
|
|
3713
|
+
/** @format int32 */
|
|
4104
3714
|
yearsBeforeSale: number;
|
|
4105
3715
|
}
|
|
4106
3716
|
export interface RefreshTokenRequest {
|
|
4107
|
-
/** @minLength 1 */
|
|
4108
3717
|
refreshToken: string;
|
|
4109
3718
|
/**
|
|
4110
3719
|
* @deprecated
|
|
@@ -4113,37 +3722,17 @@ export interface RefreshTokenRequest {
|
|
|
4113
3722
|
siteConfigurationId?: string | null;
|
|
4114
3723
|
}
|
|
4115
3724
|
export interface RegisterUserRequest {
|
|
4116
|
-
/**
|
|
4117
|
-
* @format email
|
|
4118
|
-
* @minLength 1
|
|
4119
|
-
*/
|
|
4120
3725
|
email: string;
|
|
4121
|
-
/** @minLength 8 */
|
|
4122
3726
|
password: string;
|
|
4123
3727
|
phone?: string | null;
|
|
4124
|
-
/**
|
|
4125
|
-
* @minLength 1
|
|
4126
|
-
* @maxLength 255
|
|
4127
|
-
*/
|
|
4128
3728
|
firstName: string;
|
|
4129
|
-
/**
|
|
4130
|
-
* @minLength 1
|
|
4131
|
-
* @maxLength 255
|
|
4132
|
-
*/
|
|
4133
3729
|
lastName: string;
|
|
4134
|
-
/**
|
|
4135
|
-
* @format uuid
|
|
4136
|
-
* @minLength 1
|
|
4137
|
-
*/
|
|
3730
|
+
/** @format uuid */
|
|
4138
3731
|
siteConfigurationId: string;
|
|
4139
3732
|
/** @format uuid */
|
|
4140
3733
|
inviteCode?: string | null;
|
|
4141
3734
|
}
|
|
4142
3735
|
export interface RequestImpersonationRequest {
|
|
4143
|
-
/**
|
|
4144
|
-
* @format email
|
|
4145
|
-
* @minLength 1
|
|
4146
|
-
*/
|
|
4147
3736
|
email: string;
|
|
4148
3737
|
}
|
|
4149
3738
|
export interface RunLOCalculation {
|
|
@@ -4189,34 +3778,26 @@ export interface RunLOCalculation {
|
|
|
4189
3778
|
lienType?: string | null;
|
|
4190
3779
|
}
|
|
4191
3780
|
export interface RunLOCalculationRequest {
|
|
4192
|
-
/** @minLength 1 */
|
|
4193
3781
|
loanID: string;
|
|
4194
|
-
/** @minLength 1 */
|
|
4195
3782
|
loanAmount: string;
|
|
4196
|
-
/** @minLength 1 */
|
|
4197
3783
|
propertyValue: string;
|
|
4198
3784
|
propertyType?: string | null;
|
|
4199
3785
|
zipCode?: string | null;
|
|
4200
3786
|
county?: string | null;
|
|
4201
|
-
/** @minLength 1 */
|
|
4202
3787
|
loanPurpose: string;
|
|
4203
3788
|
propertyOccupancy?: string | null;
|
|
4204
3789
|
escrow?: string | null;
|
|
4205
|
-
/** @minLength 1 */
|
|
4206
3790
|
loanTerm1: string;
|
|
4207
|
-
/** @minLength 1 */
|
|
4208
3791
|
loanTerm2: string;
|
|
4209
3792
|
creditScore?: string | null;
|
|
4210
3793
|
taxes?: string | null;
|
|
4211
3794
|
insurance?: string | null;
|
|
4212
3795
|
rate?: string | null;
|
|
4213
|
-
/** @minLength 1 */
|
|
4214
3796
|
loanType: string;
|
|
4215
3797
|
flood?: string | null;
|
|
4216
3798
|
hoa?: string | null;
|
|
4217
3799
|
miFactor?: string | null;
|
|
4218
3800
|
downpaymentAmount?: string | null;
|
|
4219
|
-
/** @minLength 1 */
|
|
4220
3801
|
lienType: string;
|
|
4221
3802
|
preApprovalNotes?: string | null;
|
|
4222
3803
|
additionalPreApprovalNotes?: string | null;
|
|
@@ -4227,22 +3808,10 @@ export interface SSOToken {
|
|
|
4227
3808
|
ssoRedirectUriForSignIn: string;
|
|
4228
3809
|
}
|
|
4229
3810
|
export interface SSOTokenRequest {
|
|
4230
|
-
/**
|
|
4231
|
-
* @format email
|
|
4232
|
-
* @minLength 1
|
|
4233
|
-
*/
|
|
4234
3811
|
email: string;
|
|
4235
|
-
|
|
4236
|
-
redirectUri: string;
|
|
4237
|
-
}
|
|
4238
|
-
export interface SamlMetadataRequest {
|
|
4239
|
-
ssoIntegration: SamlMetadataRequestSsoIntegrationEnum;
|
|
3812
|
+
redirectUri?: string | null;
|
|
4240
3813
|
}
|
|
4241
3814
|
export interface SendForgotPasswordRequest {
|
|
4242
|
-
/**
|
|
4243
|
-
* @format email
|
|
4244
|
-
* @minLength 1
|
|
4245
|
-
*/
|
|
4246
3815
|
email: string;
|
|
4247
3816
|
}
|
|
4248
3817
|
export interface SendLoanDocumentsRequest {
|
|
@@ -4251,22 +3820,17 @@ export interface SendLoanDocumentsRequest {
|
|
|
4251
3820
|
emailAddresses: string[];
|
|
4252
3821
|
}
|
|
4253
3822
|
export interface SendLoanTaskReminderRequest {
|
|
4254
|
-
/**
|
|
4255
|
-
* @format uuid
|
|
4256
|
-
* @minLength 1
|
|
4257
|
-
*/
|
|
3823
|
+
/** @format uuid */
|
|
4258
3824
|
templateId: string;
|
|
4259
3825
|
userIds?: string[] | null;
|
|
4260
3826
|
}
|
|
4261
3827
|
export interface SendNotificationForLoanRequest {
|
|
4262
|
-
/** @minLength 1 */
|
|
4263
3828
|
loanID: string;
|
|
4264
3829
|
templateKey: string;
|
|
4265
3830
|
loanOfficerEmail?: string | null;
|
|
4266
3831
|
/** @format uuid */
|
|
4267
3832
|
siteConfigurationId?: string | null;
|
|
4268
|
-
|
|
4269
|
-
email: string;
|
|
3833
|
+
email?: string | null;
|
|
4270
3834
|
phone?: string | null;
|
|
4271
3835
|
attachments: Attachment[];
|
|
4272
3836
|
}
|
|
@@ -4292,7 +3856,6 @@ export interface SiteConfiguration {
|
|
|
4292
3856
|
entityID: string;
|
|
4293
3857
|
/** @format int32 */
|
|
4294
3858
|
entityType: number;
|
|
4295
|
-
/** @minLength 1 */
|
|
4296
3859
|
url: string;
|
|
4297
3860
|
name: string;
|
|
4298
3861
|
introduction?: string | null;
|
|
@@ -4486,7 +4049,6 @@ export interface SiteConfigurationByUrl {
|
|
|
4486
4049
|
entityID: string;
|
|
4487
4050
|
/** @format int32 */
|
|
4488
4051
|
entityType: number;
|
|
4489
|
-
/** @minLength 1 */
|
|
4490
4052
|
url: string;
|
|
4491
4053
|
name: string;
|
|
4492
4054
|
introduction?: string | null;
|
|
@@ -4929,13 +4491,10 @@ export interface SocialSurveyRecord {
|
|
|
4929
4491
|
reviewCompletedTimeStamp?: string | null;
|
|
4930
4492
|
}
|
|
4931
4493
|
export interface SurveyEmailRequest {
|
|
4932
|
-
/** @minLength 1 */
|
|
4933
4494
|
loanOfficerEmailAddress: string;
|
|
4934
4495
|
}
|
|
4935
4496
|
export interface SystemTokenRequest {
|
|
4936
|
-
/** @minLength 1 */
|
|
4937
4497
|
clientId: string;
|
|
4938
|
-
/** @minLength 1 */
|
|
4939
4498
|
clientSecret: string;
|
|
4940
4499
|
}
|
|
4941
4500
|
export interface Task {
|
|
@@ -4990,16 +4549,12 @@ export interface TaskPaginated {
|
|
|
4990
4549
|
count: number;
|
|
4991
4550
|
}
|
|
4992
4551
|
export interface TaskRequest {
|
|
4993
|
-
/** @minLength 1 */
|
|
4994
4552
|
name: string;
|
|
4995
4553
|
description?: string | null;
|
|
4996
4554
|
losTarget?: string | null;
|
|
4997
4555
|
type: string;
|
|
4998
4556
|
targetUserRole?: string | null;
|
|
4999
|
-
/**
|
|
5000
|
-
* @format int32
|
|
5001
|
-
* @min 0
|
|
5002
|
-
*/
|
|
4557
|
+
/** @format int32 */
|
|
5003
4558
|
daysDueFromApplication?: number | null;
|
|
5004
4559
|
/** @format int32 */
|
|
5005
4560
|
weight: number;
|
|
@@ -5014,16 +4569,12 @@ export interface TaskSearchCriteria {
|
|
|
5014
4569
|
excludedIds?: string[] | null;
|
|
5015
4570
|
}
|
|
5016
4571
|
export interface TaskUpdateRequest {
|
|
5017
|
-
/** @minLength 1 */
|
|
5018
4572
|
name: string;
|
|
5019
4573
|
description?: string | null;
|
|
5020
4574
|
losTarget?: string | null;
|
|
5021
4575
|
type: string;
|
|
5022
4576
|
targetUserRole?: string | null;
|
|
5023
|
-
/**
|
|
5024
|
-
* @format int32
|
|
5025
|
-
* @min 0
|
|
5026
|
-
*/
|
|
4577
|
+
/** @format int32 */
|
|
5027
4578
|
daysDueFromApplication?: number | null;
|
|
5028
4579
|
/** @format int32 */
|
|
5029
4580
|
weight: number;
|
|
@@ -5034,17 +4585,9 @@ export interface TaskUpdateRequest {
|
|
|
5034
4585
|
id: string;
|
|
5035
4586
|
}
|
|
5036
4587
|
export interface TaxRatesRequest {
|
|
5037
|
-
/**
|
|
5038
|
-
* @format double
|
|
5039
|
-
* @min 0
|
|
5040
|
-
* @max 15
|
|
5041
|
-
*/
|
|
4588
|
+
/** @format double */
|
|
5042
4589
|
stateTaxRate: number;
|
|
5043
|
-
/**
|
|
5044
|
-
* @format double
|
|
5045
|
-
* @min 0
|
|
5046
|
-
* @max 50
|
|
5047
|
-
*/
|
|
4590
|
+
/** @format double */
|
|
5048
4591
|
marginalIncomeTaxRate: number;
|
|
5049
4592
|
}
|
|
5050
4593
|
export interface TestSendNotificationForLoanRequest {
|
|
@@ -5087,23 +4630,15 @@ export interface Token {
|
|
|
5087
4630
|
scope: string;
|
|
5088
4631
|
}
|
|
5089
4632
|
export interface TokenChallengeRequest {
|
|
5090
|
-
/** @format email */
|
|
5091
4633
|
username: string;
|
|
5092
|
-
/** @minLength 1 */
|
|
5093
4634
|
sessionId: string;
|
|
5094
|
-
/** @minLength 1 */
|
|
5095
4635
|
code: string;
|
|
5096
|
-
/**
|
|
5097
|
-
* @format uuid
|
|
5098
|
-
* @minLength 1
|
|
5099
|
-
*/
|
|
4636
|
+
/** @format uuid */
|
|
5100
4637
|
siteConfigurationId: string;
|
|
5101
4638
|
isSupport: boolean;
|
|
5102
4639
|
}
|
|
5103
4640
|
export interface TokenRequest {
|
|
5104
|
-
/** @format email */
|
|
5105
4641
|
username: string;
|
|
5106
|
-
/** @minLength 1 */
|
|
5107
4642
|
password: string;
|
|
5108
4643
|
/** @format uuid */
|
|
5109
4644
|
siteConfigurationId?: string | null;
|
|
@@ -5160,6 +4695,15 @@ export interface UnprocessableEntityError {
|
|
|
5160
4695
|
error: string;
|
|
5161
4696
|
property: string;
|
|
5162
4697
|
}
|
|
4698
|
+
export interface UnregisteredBorrower {
|
|
4699
|
+
/** @format uuid */
|
|
4700
|
+
contactId: string;
|
|
4701
|
+
firstName?: string | null;
|
|
4702
|
+
lastName?: string | null;
|
|
4703
|
+
fullName?: string | null;
|
|
4704
|
+
email?: string | null;
|
|
4705
|
+
role: UnregisteredBorrowerRoleEnum;
|
|
4706
|
+
}
|
|
5163
4707
|
export interface UpdateAccountRequest {
|
|
5164
4708
|
name: string;
|
|
5165
4709
|
mfaPreference: string;
|
|
@@ -5171,10 +4715,7 @@ export interface UpdateAccountRequest {
|
|
|
5171
4715
|
}
|
|
5172
4716
|
export interface UpdateCustomFieldDefinitionRequest {
|
|
5173
4717
|
isRequired: boolean;
|
|
5174
|
-
/**
|
|
5175
|
-
* @format int32
|
|
5176
|
-
* @min 0
|
|
5177
|
-
*/
|
|
4718
|
+
/** @format int32 */
|
|
5178
4719
|
displayOrder: number;
|
|
5179
4720
|
/** @format int32 */
|
|
5180
4721
|
minLength?: number | null;
|
|
@@ -5184,10 +4725,6 @@ export interface UpdateCustomFieldDefinitionRequest {
|
|
|
5184
4725
|
minValue?: number | null;
|
|
5185
4726
|
/** @format double */
|
|
5186
4727
|
maxValue?: number | null;
|
|
5187
|
-
/**
|
|
5188
|
-
* @minLength 1
|
|
5189
|
-
* @maxLength 250
|
|
5190
|
-
*/
|
|
5191
4728
|
name: string;
|
|
5192
4729
|
defaultValue?: string | null;
|
|
5193
4730
|
regexPattern?: string | null;
|
|
@@ -5195,12 +4732,7 @@ export interface UpdateCustomFieldDefinitionRequest {
|
|
|
5195
4732
|
permissions?: CustomFieldPermissionRequest[] | null;
|
|
5196
4733
|
}
|
|
5197
4734
|
export interface UpdateDocumentTemplateRequest {
|
|
5198
|
-
/** @minLength 1 */
|
|
5199
4735
|
htmlBody: string;
|
|
5200
|
-
/**
|
|
5201
|
-
* @minLength 1
|
|
5202
|
-
* @maxLength 255
|
|
5203
|
-
*/
|
|
5204
4736
|
name: string;
|
|
5205
4737
|
description?: string | null;
|
|
5206
4738
|
destinationBucket?: string | null;
|
|
@@ -5211,30 +4743,17 @@ export interface UpdateListingFileRequest {
|
|
|
5211
4743
|
id: string;
|
|
5212
4744
|
/** @format int32 */
|
|
5213
4745
|
weight: number;
|
|
5214
|
-
/**
|
|
5215
|
-
* @minLength 1
|
|
5216
|
-
* @maxLength 250
|
|
5217
|
-
*/
|
|
5218
4746
|
name: string;
|
|
5219
4747
|
}
|
|
5220
4748
|
export interface UpdateListingPhotoRequest {
|
|
5221
4749
|
/** @format uuid */
|
|
5222
4750
|
id: string;
|
|
5223
|
-
/**
|
|
5224
|
-
* @minLength 1
|
|
5225
|
-
* @maxLength 250
|
|
5226
|
-
*/
|
|
5227
4751
|
name: string;
|
|
5228
|
-
/** @maxLength 500 */
|
|
5229
4752
|
description?: string | null;
|
|
5230
4753
|
/** @format int32 */
|
|
5231
4754
|
weight: number;
|
|
5232
4755
|
}
|
|
5233
4756
|
export interface UpdateLoanDocumentFolderRequest {
|
|
5234
|
-
/**
|
|
5235
|
-
* @minLength 1
|
|
5236
|
-
* @maxLength 250
|
|
5237
|
-
*/
|
|
5238
4757
|
name: string;
|
|
5239
4758
|
permissions: LoanDocumentFolderPermissionRequest[];
|
|
5240
4759
|
}
|
|
@@ -5243,15 +4762,7 @@ export interface UpdateLoanQueueRequest {
|
|
|
5243
4762
|
}
|
|
5244
4763
|
export interface UpdateMeRequest {
|
|
5245
4764
|
phone?: string | null;
|
|
5246
|
-
/**
|
|
5247
|
-
* @minLength 1
|
|
5248
|
-
* @maxLength 255
|
|
5249
|
-
*/
|
|
5250
4765
|
firstName: string;
|
|
5251
|
-
/**
|
|
5252
|
-
* @minLength 1
|
|
5253
|
-
* @maxLength 255
|
|
5254
|
-
*/
|
|
5255
4766
|
lastName: string;
|
|
5256
4767
|
email: string;
|
|
5257
4768
|
title?: string | null;
|
|
@@ -5265,25 +4776,12 @@ export interface UpdateMobilePhoneRequest {
|
|
|
5265
4776
|
phone: string;
|
|
5266
4777
|
}
|
|
5267
4778
|
export interface UpdateUserGroupRequest {
|
|
5268
|
-
/**
|
|
5269
|
-
* @minLength 1
|
|
5270
|
-
* @maxLength 200
|
|
5271
|
-
*/
|
|
5272
4779
|
name: string;
|
|
5273
|
-
/** @maxLength 1000 */
|
|
5274
4780
|
description?: string | null;
|
|
5275
4781
|
}
|
|
5276
4782
|
export interface UpdateUserRequest {
|
|
5277
4783
|
phone?: string | null;
|
|
5278
|
-
/**
|
|
5279
|
-
* @minLength 1
|
|
5280
|
-
* @maxLength 255
|
|
5281
|
-
*/
|
|
5282
4784
|
firstName: string;
|
|
5283
|
-
/**
|
|
5284
|
-
* @minLength 1
|
|
5285
|
-
* @maxLength 255
|
|
5286
|
-
*/
|
|
5287
4785
|
lastName: string;
|
|
5288
4786
|
email: string;
|
|
5289
4787
|
title?: string | null;
|
|
@@ -5611,10 +5109,7 @@ export interface UserLoanTaskPaginated {
|
|
|
5611
5109
|
}
|
|
5612
5110
|
export interface UserLoanTaskRequest {
|
|
5613
5111
|
value?: string | null;
|
|
5614
|
-
/**
|
|
5615
|
-
* @format uuid
|
|
5616
|
-
* @minLength 1
|
|
5617
|
-
*/
|
|
5112
|
+
/** @format uuid */
|
|
5618
5113
|
userID: string;
|
|
5619
5114
|
}
|
|
5620
5115
|
export interface UserLoanTaskUpdateRequest {
|
|
@@ -5622,7 +5117,6 @@ export interface UserLoanTaskUpdateRequest {
|
|
|
5622
5117
|
value?: string | null;
|
|
5623
5118
|
}
|
|
5624
5119
|
export interface UserMobilePhoneVerificationRequest {
|
|
5625
|
-
/** @minLength 1 */
|
|
5626
5120
|
code: string;
|
|
5627
5121
|
}
|
|
5628
5122
|
export interface UserNotificationSettings {
|
|
@@ -5654,17 +5148,10 @@ export interface UserPublic {
|
|
|
5654
5148
|
title?: string | null;
|
|
5655
5149
|
}
|
|
5656
5150
|
export interface UserRelation {
|
|
5657
|
-
/**
|
|
5658
|
-
* @format uuid
|
|
5659
|
-
* @minLength 1
|
|
5660
|
-
*/
|
|
5151
|
+
/** @format uuid */
|
|
5661
5152
|
userId1: string;
|
|
5662
|
-
/**
|
|
5663
|
-
* @format uuid
|
|
5664
|
-
* @minLength 1
|
|
5665
|
-
*/
|
|
5153
|
+
/** @format uuid */
|
|
5666
5154
|
userId2: string;
|
|
5667
|
-
/** @minLength 1 */
|
|
5668
5155
|
relationType: string;
|
|
5669
5156
|
/** @format uuid */
|
|
5670
5157
|
id: string;
|
|
@@ -5717,14 +5204,8 @@ export interface UserSummary {
|
|
|
5717
5204
|
role: UserSummaryRoleEnum;
|
|
5718
5205
|
}
|
|
5719
5206
|
export interface VerifyPasswordRequest {
|
|
5720
|
-
/**
|
|
5721
|
-
* @format email
|
|
5722
|
-
* @minLength 1
|
|
5723
|
-
*/
|
|
5724
5207
|
email: string;
|
|
5725
|
-
/** @minLength 1 */
|
|
5726
5208
|
code: string;
|
|
5727
|
-
/** @minLength 8 */
|
|
5728
5209
|
password: string;
|
|
5729
5210
|
/** @format uuid */
|
|
5730
5211
|
siteConfigurationId?: string | null;
|
|
@@ -5749,6 +5230,8 @@ export interface Workflow {
|
|
|
5749
5230
|
}
|
|
5750
5231
|
export type AccountBillingRequestBillingTypeEnum = "ClosedLoan" | "LoanOfficer";
|
|
5751
5232
|
export type AuditLogEntryChangeTypeEnum = "Created" | "Modified" | "SoftDeleted" | "HardDeleted" | "Restored" | "Deactivated" | "Reactivated";
|
|
5233
|
+
export type BorrowerCountRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5234
|
+
export type BorrowerIdentityRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5752
5235
|
export type CreateAccessScopeRequestScopeTypeEnum = "User" | "Branch";
|
|
5753
5236
|
export type CreateAccountRequestEnvironmentEnum = "Development" | "Staging" | "UAT" | "Production";
|
|
5754
5237
|
export type CreateCustomFieldDefinitionRequestDataTypeEnum = "String" | "Number" | "Decimal" | "Boolean" | "Date" | "SingleSelect" | "MultiSelect";
|
|
@@ -5794,12 +5277,12 @@ export type LoanTaskStatusSummaryStatusEnum = "Outstanding" | "Pending" | "Compl
|
|
|
5794
5277
|
export type LoanUserLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5795
5278
|
export type LosOperationTrackingStatusEnum = "Pending" | "Success" | "Failed" | "ConfigurationError" | "PermanentFailure" | "Locked";
|
|
5796
5279
|
export type LosSyncStepSeverityEnum = "Success" | "Info" | "Warning" | "Error";
|
|
5797
|
-
export type SamlMetadataRequestSsoIntegrationEnum = "ConsumerConnect" | "TheBigPOS" | "POSF";
|
|
5798
5280
|
export type SiteConfigurationTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5799
5281
|
export type SiteConfigurationByUrlTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5800
5282
|
export type SiteConfigurationReducedTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5801
5283
|
export type SiteConfigurationRequestTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5802
5284
|
export type SiteConfigurationSummaryTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
5285
|
+
export type UnregisteredBorrowerRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5803
5286
|
export type UserDraftRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
5804
5287
|
export type UserGroupAccessScopeScopeTypeEnum = "User" | "Branch";
|
|
5805
5288
|
export type UserLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent" | "Admin";
|
|
@@ -5851,7 +5334,7 @@ export declare class HttpClient<SecurityDataType = unknown> {
|
|
|
5851
5334
|
}
|
|
5852
5335
|
/**
|
|
5853
5336
|
* @title The Big POS API
|
|
5854
|
-
* @version v2.
|
|
5337
|
+
* @version v2.43.0
|
|
5855
5338
|
* @termsOfService https://www.thebigpos.com/terms-of-use/
|
|
5856
5339
|
* @contact Mortgage Automation Technologies <support@thebigpos.com> (https://www.thebigpos.com/terms-of-use/)
|
|
5857
5340
|
*/
|
|
@@ -5863,7 +5346,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5863
5346
|
* @name PostRoot
|
|
5864
5347
|
* @request POST:/
|
|
5865
5348
|
* @secure
|
|
5866
|
-
* @response `200` `void`
|
|
5349
|
+
* @response `200` `void` OK
|
|
5867
5350
|
*/
|
|
5868
5351
|
postRoot: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
5869
5352
|
/**
|
|
@@ -5873,7 +5356,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5873
5356
|
* @name GetRoot
|
|
5874
5357
|
* @request GET:/
|
|
5875
5358
|
* @secure
|
|
5876
|
-
* @response `200` `string`
|
|
5359
|
+
* @response `200` `string` OK
|
|
5877
5360
|
*/
|
|
5878
5361
|
getRoot: (params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
5879
5362
|
api: {
|
|
@@ -5885,7 +5368,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5885
5368
|
* @summary Get
|
|
5886
5369
|
* @request GET:/api/account
|
|
5887
5370
|
* @secure
|
|
5888
|
-
* @response `200` `Account`
|
|
5371
|
+
* @response `200` `Account` OK
|
|
5889
5372
|
* @response `404` `ProblemDetails` Not Found
|
|
5890
5373
|
*/
|
|
5891
5374
|
getMyAccount: (params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
|
|
@@ -5897,9 +5380,9 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5897
5380
|
* @summary Replace
|
|
5898
5381
|
* @request PUT:/api/account
|
|
5899
5382
|
* @secure
|
|
5900
|
-
* @response `200` `Account`
|
|
5383
|
+
* @response `200` `Account` OK
|
|
5901
5384
|
* @response `404` `ProblemDetails` Not Found
|
|
5902
|
-
* @response `422` `ProblemDetails`
|
|
5385
|
+
* @response `422` `ProblemDetails` Unprocessable Content
|
|
5903
5386
|
*/
|
|
5904
5387
|
replaceMyAccount: (data: UpdateAccountRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
|
|
5905
5388
|
/**
|
|
@@ -5910,7 +5393,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5910
5393
|
* @summary Get Site Configuration
|
|
5911
5394
|
* @request GET:/api/account/site-configurations
|
|
5912
5395
|
* @secure
|
|
5913
|
-
* @response `200` `SiteConfiguration`
|
|
5396
|
+
* @response `200` `SiteConfiguration` OK
|
|
5914
5397
|
*/
|
|
5915
5398
|
getSiteConfigurationByAccount: (params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
5916
5399
|
/**
|
|
@@ -5921,8 +5404,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5921
5404
|
* @summary Update Site Configuration
|
|
5922
5405
|
* @request PUT:/api/account/site-configurations
|
|
5923
5406
|
* @secure
|
|
5924
|
-
* @response `200` `SiteConfiguration`
|
|
5925
|
-
* @response `422` `UnprocessableEntity`
|
|
5407
|
+
* @response `200` `SiteConfiguration` OK
|
|
5408
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
5926
5409
|
*/
|
|
5927
5410
|
updateSiteConfigurationForAccount: (data: SiteConfiguration, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
5928
5411
|
/**
|
|
@@ -5956,7 +5439,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5956
5439
|
* @summary Get All
|
|
5957
5440
|
* @request GET:/api/accounts
|
|
5958
5441
|
* @secure
|
|
5959
|
-
* @response `200` `(Account)[]`
|
|
5442
|
+
* @response `200` `(Account)[]` OK
|
|
5960
5443
|
*/
|
|
5961
5444
|
getAccounts: (params?: RequestParams) => Promise<AxiosResponse<Account[], any, {}>>;
|
|
5962
5445
|
/**
|
|
@@ -5968,7 +5451,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5968
5451
|
* @request POST:/api/accounts
|
|
5969
5452
|
* @secure
|
|
5970
5453
|
* @response `201` `Account` Created
|
|
5971
|
-
* @response `422` `ProblemDetails`
|
|
5454
|
+
* @response `422` `ProblemDetails` Unprocessable Content
|
|
5972
5455
|
*/
|
|
5973
5456
|
createAccount: (data: CreateAccountRequest, params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
|
|
5974
5457
|
/**
|
|
@@ -5980,7 +5463,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5980
5463
|
* @request GET:/api/accounts/{id}
|
|
5981
5464
|
* @secure
|
|
5982
5465
|
* @response `201` `Account` Created
|
|
5983
|
-
* @response `422` `ProblemDetails`
|
|
5466
|
+
* @response `422` `ProblemDetails` Unprocessable Content
|
|
5984
5467
|
*/
|
|
5985
5468
|
getAccount: (id: string, params?: RequestParams) => Promise<AxiosResponse<Account, any, {}>>;
|
|
5986
5469
|
/**
|
|
@@ -5993,7 +5476,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5993
5476
|
* @secure
|
|
5994
5477
|
* @response `204` `Account` No Content
|
|
5995
5478
|
* @response `404` `ProblemDetails` Not Found
|
|
5996
|
-
* @response `422` `ProblemDetails`
|
|
5479
|
+
* @response `422` `ProblemDetails` Unprocessable Content
|
|
5997
5480
|
*/
|
|
5998
5481
|
deleteAccount: (id: string, query?: {
|
|
5999
5482
|
/** @default false */
|
|
@@ -6007,9 +5490,9 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6007
5490
|
* @summary Update billing configuration
|
|
6008
5491
|
* @request PUT:/api/accounts/{id}/billing
|
|
6009
5492
|
* @secure
|
|
6010
|
-
* @response `200` `AccountBilling`
|
|
5493
|
+
* @response `200` `AccountBilling` OK
|
|
6011
5494
|
* @response `404` `ProblemDetails` Not Found
|
|
6012
|
-
* @response `422` `ProblemDetails`
|
|
5495
|
+
* @response `422` `ProblemDetails` Unprocessable Content
|
|
6013
5496
|
*/
|
|
6014
5497
|
updateAccountBilling: (id: string, data: AccountBillingRequest, params?: RequestParams) => Promise<AxiosResponse<AccountBilling, any, {}>>;
|
|
6015
5498
|
/**
|
|
@@ -6020,7 +5503,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6020
5503
|
* @summary Search
|
|
6021
5504
|
* @request POST:/api/audit-logs/search
|
|
6022
5505
|
* @secure
|
|
6023
|
-
* @response `200` `AuditLogEntryPaginated`
|
|
5506
|
+
* @response `200` `AuditLogEntryPaginated` OK
|
|
6024
5507
|
*/
|
|
6025
5508
|
searchAuditLogs: (data: AuditLogSearchCriteria, query?: {
|
|
6026
5509
|
/** @format int32 */
|
|
@@ -6038,7 +5521,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6038
5521
|
* @summary Get entity types
|
|
6039
5522
|
* @request GET:/api/audit-logs/entity-types
|
|
6040
5523
|
* @secure
|
|
6041
|
-
* @response `200` `(AuditEntityType)[]`
|
|
5524
|
+
* @response `200` `(AuditEntityType)[]` OK
|
|
6042
5525
|
*/
|
|
6043
5526
|
getAuditLogEntityTypes: (params?: RequestParams) => Promise<AxiosResponse<AuditEntityType[], any, {}>>;
|
|
6044
5527
|
/**
|
|
@@ -6049,7 +5532,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6049
5532
|
* @summary Get by ID
|
|
6050
5533
|
* @request GET:/api/audit-logs/{id}
|
|
6051
5534
|
* @secure
|
|
6052
|
-
* @response `200` `AuditLogEntry`
|
|
5535
|
+
* @response `200` `AuditLogEntry` OK
|
|
6053
5536
|
* @response `404` `ProblemDetails` Not Found
|
|
6054
5537
|
*/
|
|
6055
5538
|
getAuditLogById: (id: string, params?: RequestParams) => Promise<AxiosResponse<AuditLogEntry, any, {}>>;
|
|
@@ -6061,9 +5544,9 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6061
5544
|
* @summary Generate Token From Refresh Token
|
|
6062
5545
|
* @request POST:/api/refresh-token
|
|
6063
5546
|
* @secure
|
|
6064
|
-
* @response `200` `Token`
|
|
5547
|
+
* @response `200` `Token` OK
|
|
6065
5548
|
* @response `401` `ProblemDetails` Unauthorized
|
|
6066
|
-
* @response `422` `UnprocessableEntity`
|
|
5549
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
6067
5550
|
*/
|
|
6068
5551
|
getTokenFromRefreshToken: (data: RefreshTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any, {}>>;
|
|
6069
5552
|
/**
|
|
@@ -6074,8 +5557,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6074
5557
|
* @summary Get Token
|
|
6075
5558
|
* @request POST:/api/token
|
|
6076
5559
|
* @secure
|
|
6077
|
-
* @response `200` `AccountDeactivated`
|
|
6078
|
-
* @response `422` `UnprocessableEntity`
|
|
5560
|
+
* @response `200` `AccountDeactivated` OK
|
|
5561
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
6079
5562
|
*/
|
|
6080
5563
|
getToken: (data: TokenRequest, params?: RequestParams) => Promise<AxiosResponse<AccountDeactivated, any, {}>>;
|
|
6081
5564
|
/**
|
|
@@ -6086,8 +5569,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6086
5569
|
* @summary Get Token From Challenge Code
|
|
6087
5570
|
* @request POST:/api/token/code
|
|
6088
5571
|
* @secure
|
|
6089
|
-
* @response `200` `AccountDeactivated`
|
|
6090
|
-
* @response `422` `UnprocessableEntity`
|
|
5572
|
+
* @response `200` `AccountDeactivated` OK
|
|
5573
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
6091
5574
|
*/
|
|
6092
5575
|
getTokenFromChallengeCode: (data: TokenChallengeRequest, params?: RequestParams) => Promise<AxiosResponse<AccountDeactivated, any, {}>>;
|
|
6093
5576
|
/**
|
|
@@ -6098,8 +5581,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6098
5581
|
* @summary Get System Token
|
|
6099
5582
|
* @request POST:/api/oauth2/token
|
|
6100
5583
|
* @secure
|
|
6101
|
-
* @response `200` `Token`
|
|
6102
|
-
* @response `422` `UnprocessableEntity`
|
|
5584
|
+
* @response `200` `Token` OK
|
|
5585
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
6103
5586
|
*/
|
|
6104
5587
|
getSystemToken: (data: SystemTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any, {}>>;
|
|
6105
5588
|
/**
|
|
@@ -6110,8 +5593,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6110
5593
|
* @summary Get SSO Guid Token
|
|
6111
5594
|
* @request POST:/api/token/sso
|
|
6112
5595
|
* @secure
|
|
6113
|
-
* @response `200` `SSOToken`
|
|
6114
|
-
* @response `422` `UnprocessableEntity`
|
|
5596
|
+
* @response `200` `SSOToken` OK
|
|
5597
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
6115
5598
|
*/
|
|
6116
5599
|
getSsoToken: (data: SSOTokenRequest, params?: RequestParams) => Promise<AxiosResponse<SSOToken, any, {}>>;
|
|
6117
5600
|
/**
|
|
@@ -6123,7 +5606,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6123
5606
|
* @request POST:/api/logout
|
|
6124
5607
|
* @secure
|
|
6125
5608
|
* @response `204` `NoContentResult` No Content
|
|
6126
|
-
* @response `422` `UnprocessableEntity`
|
|
5609
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
6127
5610
|
*/
|
|
6128
5611
|
logOut: (params?: RequestParams) => Promise<AxiosResponse<NoContentResult, any, {}>>;
|
|
6129
5612
|
/**
|
|
@@ -6134,7 +5617,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6134
5617
|
* @summary Get All
|
|
6135
5618
|
* @request GET:/api/branches
|
|
6136
5619
|
* @secure
|
|
6137
|
-
* @response `200` `GetBranchPaginated`
|
|
5620
|
+
* @response `200` `GetBranchPaginated` OK
|
|
6138
5621
|
*/
|
|
6139
5622
|
getBranches: (query?: {
|
|
6140
5623
|
showAll?: boolean;
|
|
@@ -6153,8 +5636,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6153
5636
|
* @summary Create
|
|
6154
5637
|
* @request POST:/api/branches
|
|
6155
5638
|
* @secure
|
|
6156
|
-
* @response `200` `GetBranch`
|
|
6157
|
-
* @response `422` `UnprocessableEntity`
|
|
5639
|
+
* @response `200` `GetBranch` OK
|
|
5640
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
6158
5641
|
*/
|
|
6159
5642
|
createBranch: (data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any, {}>>;
|
|
6160
5643
|
/**
|
|
@@ -6165,7 +5648,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6165
5648
|
* @summary Search
|
|
6166
5649
|
* @request POST:/api/branches/search
|
|
6167
5650
|
* @secure
|
|
6168
|
-
* @response `200` `GetBranchPaginated`
|
|
5651
|
+
* @response `200` `GetBranchPaginated` OK
|
|
6169
5652
|
*/
|
|
6170
5653
|
searchBranches: (data: BranchSearchCriteria, query?: {
|
|
6171
5654
|
/** @format int32 */
|
|
@@ -6183,7 +5666,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6183
5666
|
* @summary Get by ID
|
|
6184
5667
|
* @request GET:/api/branches/{branchId}
|
|
6185
5668
|
* @secure
|
|
6186
|
-
* @response `200` `GetBranch`
|
|
5669
|
+
* @response `200` `GetBranch` OK
|
|
6187
5670
|
*/
|
|
6188
5671
|
getBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any, {}>>;
|
|
6189
5672
|
/**
|
|
@@ -6194,8 +5677,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6194
5677
|
* @summary Replace
|
|
6195
5678
|
* @request PUT:/api/branches/{branchId}
|
|
6196
5679
|
* @secure
|
|
6197
|
-
* @response `200` `GetBranch`
|
|
6198
|
-
* @response `422` `UnprocessableEntity`
|
|
5680
|
+
* @response `200` `GetBranch` OK
|
|
5681
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
6199
5682
|
*/
|
|
6200
5683
|
replaceBranch: (branchId: string, data: CreateBranchRequest, params?: RequestParams) => Promise<AxiosResponse<GetBranch, any, {}>>;
|
|
6201
5684
|
/**
|
|
@@ -6229,8 +5712,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6229
5712
|
* @summary Create Branch Site Configuration
|
|
6230
5713
|
* @request POST:/api/branches/{branchId}/site-configurations
|
|
6231
5714
|
* @secure
|
|
6232
|
-
* @response `200` `SiteConfiguration`
|
|
6233
|
-
* @response `422` `UnprocessableEntity`
|
|
5715
|
+
* @response `200` `SiteConfiguration` OK
|
|
5716
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
6234
5717
|
*/
|
|
6235
5718
|
createBranchSiteConfiguration: (branchId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
6236
5719
|
/**
|
|
@@ -6241,7 +5724,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6241
5724
|
* @summary Get Branch Site Configuration
|
|
6242
5725
|
* @request GET:/api/branches/{branchId}/site-configurations/{siteConfigurationId}
|
|
6243
5726
|
* @secure
|
|
6244
|
-
* @response `200` `SiteConfigurationWithInherited`
|
|
5727
|
+
* @response `200` `SiteConfigurationWithInherited` OK
|
|
6245
5728
|
*/
|
|
6246
5729
|
getBranchSiteConfiguration: (branchId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any, {}>>;
|
|
6247
5730
|
/**
|
|
@@ -6252,8 +5735,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6252
5735
|
* @summary Replace Branch Site Configuration
|
|
6253
5736
|
* @request PUT:/api/branches/{branchId}/site-configurations/{siteConfigurationId}
|
|
6254
5737
|
* @secure
|
|
6255
|
-
* @response `200` `SiteConfiguration`
|
|
6256
|
-
* @response `422` `UnprocessableEntity`
|
|
5738
|
+
* @response `200` `SiteConfiguration` OK
|
|
5739
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
6257
5740
|
*/
|
|
6258
5741
|
replaceBranchSiteConfiguration: (branchId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
|
|
6259
5742
|
applyToChildren?: boolean;
|
|
@@ -6266,7 +5749,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6266
5749
|
* @summary Get Branch Loan Officers
|
|
6267
5750
|
* @request GET:/api/branches/{branchId}/loan-officers
|
|
6268
5751
|
* @secure
|
|
6269
|
-
* @response `200` `(LoanOfficerPublic)[]`
|
|
5752
|
+
* @response `200` `(LoanOfficerPublic)[]` OK
|
|
6270
5753
|
*/
|
|
6271
5754
|
getLoanOfficersByBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic[], any, {}>>;
|
|
6272
5755
|
/**
|
|
@@ -6277,7 +5760,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6277
5760
|
* @summary Get All
|
|
6278
5761
|
* @request GET:/api/business-rules
|
|
6279
5762
|
* @secure
|
|
6280
|
-
* @response `200` `(BusinessRule)[]`
|
|
5763
|
+
* @response `200` `(BusinessRule)[]` OK
|
|
6281
5764
|
*/
|
|
6282
5765
|
getBusinessRules: (query?: {
|
|
6283
5766
|
showAll?: boolean;
|
|
@@ -6290,8 +5773,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6290
5773
|
* @summary Create
|
|
6291
5774
|
* @request POST:/api/business-rules
|
|
6292
5775
|
* @secure
|
|
6293
|
-
* @response `200` `BusinessRule`
|
|
6294
|
-
* @response `422` `UnprocessableEntity`
|
|
5776
|
+
* @response `200` `BusinessRule` OK
|
|
5777
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
6295
5778
|
*/
|
|
6296
5779
|
createBusinessRule: (data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any, {}>>;
|
|
6297
5780
|
/**
|
|
@@ -6302,7 +5785,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6302
5785
|
* @summary Get by ID
|
|
6303
5786
|
* @request GET:/api/business-rules/{id}
|
|
6304
5787
|
* @secure
|
|
6305
|
-
* @response `200` `BusinessRule`
|
|
5788
|
+
* @response `200` `BusinessRule` OK
|
|
6306
5789
|
*/
|
|
6307
5790
|
getBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any, {}>>;
|
|
6308
5791
|
/**
|
|
@@ -6313,8 +5796,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6313
5796
|
* @summary Replace
|
|
6314
5797
|
* @request PUT:/api/business-rules/{id}
|
|
6315
5798
|
* @secure
|
|
6316
|
-
* @response `200` `BusinessRule`
|
|
6317
|
-
* @response `422` `UnprocessableEntity`
|
|
5799
|
+
* @response `200` `BusinessRule` OK
|
|
5800
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
6318
5801
|
*/
|
|
6319
5802
|
replaceBusinessRule: (id: string, data: BusinessRuleRequest, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any, {}>>;
|
|
6320
5803
|
/**
|
|
@@ -6336,7 +5819,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6336
5819
|
* @summary Restore
|
|
6337
5820
|
* @request POST:/api/business-rules/{id}/restore
|
|
6338
5821
|
* @secure
|
|
6339
|
-
* @response `200` `BusinessRule`
|
|
5822
|
+
* @response `200` `BusinessRule` OK
|
|
6340
5823
|
*/
|
|
6341
5824
|
restoreBusinessRule: (id: string, params?: RequestParams) => Promise<AxiosResponse<BusinessRule, any, {}>>;
|
|
6342
5825
|
/**
|
|
@@ -6347,7 +5830,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6347
5830
|
* @summary Get Closed Loans Report
|
|
6348
5831
|
* @request POST:/api/loans/reports/closed-loans
|
|
6349
5832
|
* @secure
|
|
6350
|
-
* @response `200` `ClosedLoansReport`
|
|
5833
|
+
* @response `200` `ClosedLoansReport` OK
|
|
6351
5834
|
*/
|
|
6352
5835
|
getClosedLoansReport: (data: ClosedLoansReportRequest, params?: RequestParams) => Promise<AxiosResponse<ClosedLoansReport, any, {}>>;
|
|
6353
5836
|
/**
|
|
@@ -6358,7 +5841,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6358
5841
|
* @summary Get Consumer Connect association status for all borrowers on a loan
|
|
6359
5842
|
* @request GET:/api/loans/{loanId}/consumer-connect/status
|
|
6360
5843
|
* @secure
|
|
6361
|
-
* @response `200` `(ConsumerConnectStatus)[]`
|
|
5844
|
+
* @response `200` `(ConsumerConnectStatus)[]` OK
|
|
6362
5845
|
*/
|
|
6363
5846
|
getConsumerConnectStatus: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<ConsumerConnectStatus[], any, {}>>;
|
|
6364
5847
|
/**
|
|
@@ -6369,7 +5852,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6369
5852
|
* @summary Manually retry Consumer Connect association for failed borrowers on a loan. Returns per-borrower results; check individual Success fields for partial failures.
|
|
6370
5853
|
* @request POST:/api/loans/{loanId}/consumer-connect/retry
|
|
6371
5854
|
* @secure
|
|
6372
|
-
* @response `200` `(ConsumerConnectRetry)[]`
|
|
5855
|
+
* @response `200` `(ConsumerConnectRetry)[]` OK
|
|
6373
5856
|
*/
|
|
6374
5857
|
retryConsumerConnectAssociation: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<ConsumerConnectRetry[], any, {}>>;
|
|
6375
5858
|
/**
|
|
@@ -6380,7 +5863,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6380
5863
|
* @summary Get All
|
|
6381
5864
|
* @request GET:/api/corporates
|
|
6382
5865
|
* @secure
|
|
6383
|
-
* @response `200` `CorporatePaginated`
|
|
5866
|
+
* @response `200` `CorporatePaginated` OK
|
|
6384
5867
|
*/
|
|
6385
5868
|
getCorporates: (query?: {
|
|
6386
5869
|
showAll?: boolean;
|
|
@@ -6399,8 +5882,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6399
5882
|
* @summary Create
|
|
6400
5883
|
* @request POST:/api/corporates
|
|
6401
5884
|
* @secure
|
|
6402
|
-
* @response `200` `Corporate`
|
|
6403
|
-
* @response `422` `UnprocessableEntity`
|
|
5885
|
+
* @response `200` `Corporate` OK
|
|
5886
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
6404
5887
|
*/
|
|
6405
5888
|
createCorporate: (data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any, {}>>;
|
|
6406
5889
|
/**
|
|
@@ -6411,7 +5894,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6411
5894
|
* @summary Search
|
|
6412
5895
|
* @request POST:/api/corporates/search
|
|
6413
5896
|
* @secure
|
|
6414
|
-
* @response `200` `CorporatePaginated`
|
|
5897
|
+
* @response `200` `CorporatePaginated` OK
|
|
6415
5898
|
*/
|
|
6416
5899
|
searchCorporate: (data: CorporateSearchCriteria, query?: {
|
|
6417
5900
|
/** @format int32 */
|
|
@@ -6429,7 +5912,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6429
5912
|
* @summary Get by ID
|
|
6430
5913
|
* @request GET:/api/corporates/{id}
|
|
6431
5914
|
* @secure
|
|
6432
|
-
* @response `200` `Corporate`
|
|
5915
|
+
* @response `200` `Corporate` OK
|
|
6433
5916
|
*/
|
|
6434
5917
|
getCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<Corporate, any, {}>>;
|
|
6435
5918
|
/**
|
|
@@ -6440,8 +5923,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6440
5923
|
* @summary Replace
|
|
6441
5924
|
* @request PUT:/api/corporates/{id}
|
|
6442
5925
|
* @secure
|
|
6443
|
-
* @response `200` `Corporate`
|
|
6444
|
-
* @response `422` `UnprocessableEntity`
|
|
5926
|
+
* @response `200` `Corporate` OK
|
|
5927
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
6445
5928
|
*/
|
|
6446
5929
|
replaceCorporate: (id: string, data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any, {}>>;
|
|
6447
5930
|
/**
|
|
@@ -6474,8 +5957,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6474
5957
|
* @summary Create Site Configuration
|
|
6475
5958
|
* @request POST:/api/corporates/{corporateId}/site-configurations
|
|
6476
5959
|
* @secure
|
|
6477
|
-
* @response `200` `SiteConfiguration`
|
|
6478
|
-
* @response `422` `UnprocessableEntity`
|
|
5960
|
+
* @response `200` `SiteConfiguration` OK
|
|
5961
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
6479
5962
|
*/
|
|
6480
5963
|
createCorporateSiteConfiguration: (corporateId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
6481
5964
|
/**
|
|
@@ -6486,7 +5969,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6486
5969
|
* @summary Get Site Configuration
|
|
6487
5970
|
* @request GET:/api/corporates/{corporateId}/site-configurations/{siteConfigurationId}
|
|
6488
5971
|
* @secure
|
|
6489
|
-
* @response `200` `SiteConfigurationWithInherited`
|
|
5972
|
+
* @response `200` `SiteConfigurationWithInherited` OK
|
|
6490
5973
|
*/
|
|
6491
5974
|
getCorporateSiteConfiguration: (corporateId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any, {}>>;
|
|
6492
5975
|
/**
|
|
@@ -6497,8 +5980,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6497
5980
|
* @summary Replace Site Configuration
|
|
6498
5981
|
* @request PUT:/api/corporates/{corporateId}/site-configurations/{siteConfigurationId}
|
|
6499
5982
|
* @secure
|
|
6500
|
-
* @response `200` `SiteConfiguration`
|
|
6501
|
-
* @response `422` `UnprocessableEntity`
|
|
5983
|
+
* @response `200` `SiteConfiguration` OK
|
|
5984
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
6502
5985
|
*/
|
|
6503
5986
|
replaceCorporateSiteConfiguration: (corporateId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
|
|
6504
5987
|
applyToChildren?: boolean;
|
|
@@ -6511,7 +5994,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6511
5994
|
* @summary Get Branches
|
|
6512
5995
|
* @request GET:/api/corporates/{id}/branches
|
|
6513
5996
|
* @secure
|
|
6514
|
-
* @response `200` `(BranchReduced)[]`
|
|
5997
|
+
* @response `200` `(BranchReduced)[]` OK
|
|
6515
5998
|
*/
|
|
6516
5999
|
getBranchesByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchReduced[], any, {}>>;
|
|
6517
6000
|
/**
|
|
@@ -6522,7 +6005,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6522
6005
|
* @summary Get Loan Officers
|
|
6523
6006
|
* @request GET:/api/corporates/{id}/loan-officers
|
|
6524
6007
|
* @secure
|
|
6525
|
-
* @response `200` `(LoanOfficerPublic)[]`
|
|
6008
|
+
* @response `200` `(LoanOfficerPublic)[]` OK
|
|
6526
6009
|
*/
|
|
6527
6010
|
getLoanOfficersByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic[], any, {}>>;
|
|
6528
6011
|
/**
|
|
@@ -6533,7 +6016,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6533
6016
|
* @summary Get all custom field definitions by entity type
|
|
6534
6017
|
* @request GET:/api/custom-field-definitions
|
|
6535
6018
|
* @secure
|
|
6536
|
-
* @response `200` `(CustomFieldDefinition)[]`
|
|
6019
|
+
* @response `200` `(CustomFieldDefinition)[]` OK
|
|
6537
6020
|
*/
|
|
6538
6021
|
getCustomFieldDefinitions: (query?: {
|
|
6539
6022
|
entityType?: GetCustomFieldDefinitionsParamsEntityTypeEnum;
|
|
@@ -6548,7 +6031,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6548
6031
|
* @secure
|
|
6549
6032
|
* @response `201` `CustomFieldDefinition` Created
|
|
6550
6033
|
* @response `409` `ProblemDetails` Conflict
|
|
6551
|
-
* @response `422` `ProblemDetails`
|
|
6034
|
+
* @response `422` `ProblemDetails` Unprocessable Content
|
|
6552
6035
|
*/
|
|
6553
6036
|
createCustomFieldDefinition: (data: CreateCustomFieldDefinitionRequest, params?: RequestParams) => Promise<AxiosResponse<CustomFieldDefinition, any, {}>>;
|
|
6554
6037
|
/**
|
|
@@ -6559,7 +6042,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6559
6042
|
* @summary Get a custom field definition by ID
|
|
6560
6043
|
* @request GET:/api/custom-field-definitions/{id}
|
|
6561
6044
|
* @secure
|
|
6562
|
-
* @response `200` `CustomFieldDefinition`
|
|
6045
|
+
* @response `200` `CustomFieldDefinition` OK
|
|
6563
6046
|
* @response `404` `ProblemDetails` Not Found
|
|
6564
6047
|
*/
|
|
6565
6048
|
getCustomFieldDefinitionById: (id: string, params?: RequestParams) => Promise<AxiosResponse<CustomFieldDefinition, any, {}>>;
|
|
@@ -6571,11 +6054,11 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6571
6054
|
* @summary Update a custom field definition
|
|
6572
6055
|
* @request PUT:/api/custom-field-definitions/{id}
|
|
6573
6056
|
* @secure
|
|
6574
|
-
* @response `200` `CustomFieldDefinition`
|
|
6057
|
+
* @response `200` `CustomFieldDefinition` OK
|
|
6575
6058
|
* @response `400` `ProblemDetails` Bad Request
|
|
6576
6059
|
* @response `404` `ProblemDetails` Not Found
|
|
6577
6060
|
* @response `409` `ProblemDetails` Conflict
|
|
6578
|
-
* @response `422` `ProblemDetails`
|
|
6061
|
+
* @response `422` `ProblemDetails` Unprocessable Content
|
|
6579
6062
|
*/
|
|
6580
6063
|
updateCustomFieldDefinition: (id: string, data: UpdateCustomFieldDefinitionRequest, params?: RequestParams) => Promise<AxiosResponse<CustomFieldDefinition, any, {}>>;
|
|
6581
6064
|
/**
|
|
@@ -6623,7 +6106,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6623
6106
|
* @summary Get All
|
|
6624
6107
|
* @request GET:/api/devices
|
|
6625
6108
|
* @secure
|
|
6626
|
-
* @response `200` `DevicePaginated`
|
|
6109
|
+
* @response `200` `DevicePaginated` OK
|
|
6627
6110
|
*/
|
|
6628
6111
|
getDevices: (query?: {
|
|
6629
6112
|
/** @format uuid */
|
|
@@ -6643,7 +6126,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6643
6126
|
* @summary Get by ID
|
|
6644
6127
|
* @request GET:/api/devices/{id}
|
|
6645
6128
|
* @secure
|
|
6646
|
-
* @response `200` `Device`
|
|
6129
|
+
* @response `200` `Device` OK
|
|
6647
6130
|
*/
|
|
6648
6131
|
getDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<Device, any, {}>>;
|
|
6649
6132
|
/**
|
|
@@ -6654,7 +6137,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6654
6137
|
* @summary Update
|
|
6655
6138
|
* @request PUT:/api/devices/{id}
|
|
6656
6139
|
* @secure
|
|
6657
|
-
* @response `200` `Device`
|
|
6140
|
+
* @response `200` `Device` OK
|
|
6658
6141
|
*/
|
|
6659
6142
|
updateDevice: (id: string, data: DeviceRequest, params?: RequestParams) => Promise<AxiosResponse<Device, any, {}>>;
|
|
6660
6143
|
/**
|
|
@@ -6665,7 +6148,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6665
6148
|
* @summary Get by Serial Number
|
|
6666
6149
|
* @request GET:/api/devices/{sn}/profile
|
|
6667
6150
|
* @secure
|
|
6668
|
-
* @response `200` `DeviceMDM`
|
|
6151
|
+
* @response `200` `DeviceMDM` OK
|
|
6669
6152
|
*/
|
|
6670
6153
|
getDeviceBySerialNumber: (sn: string, params?: RequestParams) => Promise<AxiosResponse<DeviceMDM, any, {}>>;
|
|
6671
6154
|
/**
|
|
@@ -6676,7 +6159,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6676
6159
|
* @summary Create Action by Serial Number
|
|
6677
6160
|
* @request POST:/api/devices/{sn}/actions/{actionName}
|
|
6678
6161
|
* @secure
|
|
6679
|
-
* @response `200` `Action`
|
|
6162
|
+
* @response `200` `Action` OK
|
|
6680
6163
|
*/
|
|
6681
6164
|
createDeviceActionBySerialNumber: (sn: string, actionName: string, params?: RequestParams) => Promise<AxiosResponse<Action, any, {}>>;
|
|
6682
6165
|
/**
|
|
@@ -6687,7 +6170,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6687
6170
|
* @summary Get All
|
|
6688
6171
|
* @request GET:/api/document-buckets
|
|
6689
6172
|
* @secure
|
|
6690
|
-
* @response `200` `(string)[]`
|
|
6173
|
+
* @response `200` `(string)[]` OK
|
|
6691
6174
|
*/
|
|
6692
6175
|
getDocumentBuckets: (query?: {
|
|
6693
6176
|
/** @default false */
|
|
@@ -6701,7 +6184,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6701
6184
|
* @summary Get All
|
|
6702
6185
|
* @request GET:/api/document-templates
|
|
6703
6186
|
* @secure
|
|
6704
|
-
* @response `200` `(DocumentTemplateBase)[]`
|
|
6187
|
+
* @response `200` `(DocumentTemplateBase)[]` OK
|
|
6705
6188
|
*/
|
|
6706
6189
|
getDocumentTemplates: (query?: {
|
|
6707
6190
|
showAll?: boolean;
|
|
@@ -6716,7 +6199,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6716
6199
|
* @secure
|
|
6717
6200
|
* @response `201` `DocumentTemplateBase` Created
|
|
6718
6201
|
* @response `404` `ProblemDetails` Not Found
|
|
6719
|
-
* @response `422` `UnprocessableEntity`
|
|
6202
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
6720
6203
|
*/
|
|
6721
6204
|
createDocumentTemplate: (data: CreateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any, {}>>;
|
|
6722
6205
|
/**
|
|
@@ -6727,7 +6210,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6727
6210
|
* @summary Get Custom
|
|
6728
6211
|
* @request GET:/api/document-templates/{type}
|
|
6729
6212
|
* @secure
|
|
6730
|
-
* @response `200` `(DocumentTemplateBase)[]`
|
|
6213
|
+
* @response `200` `(DocumentTemplateBase)[]` OK
|
|
6731
6214
|
*/
|
|
6732
6215
|
getCustomDocumentTemplates: (type: string, query?: {
|
|
6733
6216
|
/** @default false */
|
|
@@ -6743,7 +6226,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6743
6226
|
* @summary Get By ID
|
|
6744
6227
|
* @request GET:/api/document-templates/{id}
|
|
6745
6228
|
* @secure
|
|
6746
|
-
* @response `200` `DocumentTemplate`
|
|
6229
|
+
* @response `200` `DocumentTemplate` OK
|
|
6747
6230
|
* @response `404` `ProblemDetails` Not Found
|
|
6748
6231
|
*/
|
|
6749
6232
|
getDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplate, any, {}>>;
|
|
@@ -6755,10 +6238,10 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6755
6238
|
* @summary Replace
|
|
6756
6239
|
* @request PUT:/api/document-templates/{id}
|
|
6757
6240
|
* @secure
|
|
6758
|
-
* @response `200` `DocumentTemplateBase`
|
|
6241
|
+
* @response `200` `DocumentTemplateBase` OK
|
|
6759
6242
|
* @response `401` `ProblemDetails` Unauthorized
|
|
6760
6243
|
* @response `404` `ProblemDetails` Not Found
|
|
6761
|
-
* @response `422` `UnprocessableEntity`
|
|
6244
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
6762
6245
|
*/
|
|
6763
6246
|
replaceDocumentTemplate: (id: string, data: UpdateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any, {}>>;
|
|
6764
6247
|
/**
|
|
@@ -6795,7 +6278,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6795
6278
|
* @summary Get All
|
|
6796
6279
|
* @request GET:/api/document-templates/{documentId}/versions
|
|
6797
6280
|
* @secure
|
|
6798
|
-
* @response `200` `(DocumentTemplateVersion)[]`
|
|
6281
|
+
* @response `200` `(DocumentTemplateVersion)[]` OK
|
|
6799
6282
|
*/
|
|
6800
6283
|
getDocumentTemplateVersions: (documentId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion[], any, {}>>;
|
|
6801
6284
|
/**
|
|
@@ -6806,7 +6289,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6806
6289
|
* @summary Create
|
|
6807
6290
|
* @request POST:/api/document-templates/{documentId}/versions
|
|
6808
6291
|
* @secure
|
|
6809
|
-
* @response `200` `DocumentTemplateVersion`
|
|
6292
|
+
* @response `200` `DocumentTemplateVersion` OK
|
|
6810
6293
|
*/
|
|
6811
6294
|
createDocumentTemplateVersion: (documentId: string, data: DocumentTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any, {}>>;
|
|
6812
6295
|
/**
|
|
@@ -6817,7 +6300,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6817
6300
|
* @summary Get by ID
|
|
6818
6301
|
* @request GET:/api/document-templates/{documentId}/versions/{id}
|
|
6819
6302
|
* @secure
|
|
6820
|
-
* @response `200` `DocumentTemplateVersion`
|
|
6303
|
+
* @response `200` `DocumentTemplateVersion` OK
|
|
6821
6304
|
*/
|
|
6822
6305
|
getDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any, {}>>;
|
|
6823
6306
|
/**
|
|
@@ -6828,7 +6311,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6828
6311
|
* @summary Replace
|
|
6829
6312
|
* @request PUT:/api/document-templates/{documentId}/versions/{id}
|
|
6830
6313
|
* @secure
|
|
6831
|
-
* @response `200` `DocumentTemplateVersion`
|
|
6314
|
+
* @response `200` `DocumentTemplateVersion` OK
|
|
6832
6315
|
*/
|
|
6833
6316
|
replaceDocumentTemplateVersion: (documentId: string, id: string, data: DocumentTemplateVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any, {}>>;
|
|
6834
6317
|
/**
|
|
@@ -6839,7 +6322,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6839
6322
|
* @summary Delete
|
|
6840
6323
|
* @request DELETE:/api/document-templates/{documentId}/versions/{id}
|
|
6841
6324
|
* @secure
|
|
6842
|
-
* @response `200` `DocumentTemplateVersion`
|
|
6325
|
+
* @response `200` `DocumentTemplateVersion` OK
|
|
6843
6326
|
*/
|
|
6844
6327
|
deleteDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any, {}>>;
|
|
6845
6328
|
/**
|
|
@@ -6847,9 +6330,10 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6847
6330
|
*
|
|
6848
6331
|
* @tags Encompass Custom Field Mappings
|
|
6849
6332
|
* @name GetEncompassCustomFieldMapping
|
|
6333
|
+
* @summary Get Encompass field mapping for a custom field definition
|
|
6850
6334
|
* @request GET:/api/los/encompass/custom-field-mappings/{definitionId}
|
|
6851
6335
|
* @secure
|
|
6852
|
-
* @response `200` `EncompassCustomFieldMapping`
|
|
6336
|
+
* @response `200` `EncompassCustomFieldMapping` OK
|
|
6853
6337
|
* @response `404` `void` Not Found
|
|
6854
6338
|
*/
|
|
6855
6339
|
getEncompassCustomFieldMapping: (definitionId: string, params?: RequestParams) => Promise<AxiosResponse<EncompassCustomFieldMapping, any, {}>>;
|
|
@@ -6858,13 +6342,14 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6858
6342
|
*
|
|
6859
6343
|
* @tags Encompass Custom Field Mappings
|
|
6860
6344
|
* @name AddEncompassCustomFieldMapping
|
|
6345
|
+
* @summary Add an Encompass field mapping to a custom field definition
|
|
6861
6346
|
* @request POST:/api/los/encompass/custom-field-mappings/{definitionId}
|
|
6862
6347
|
* @secure
|
|
6863
6348
|
* @response `201` `EncompassCustomFieldMapping` Created
|
|
6864
6349
|
* @response `400` `void` Bad Request
|
|
6865
6350
|
* @response `404` `void` Not Found
|
|
6866
6351
|
* @response `409` `void` Conflict
|
|
6867
|
-
* @response `422` `ProblemDetails`
|
|
6352
|
+
* @response `422` `ProblemDetails` Unprocessable Content
|
|
6868
6353
|
*/
|
|
6869
6354
|
addEncompassCustomFieldMapping: (definitionId: string, data: EncompassCustomFieldMappingRequest, params?: RequestParams) => Promise<AxiosResponse<EncompassCustomFieldMapping, any, {}>>;
|
|
6870
6355
|
/**
|
|
@@ -6872,6 +6357,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6872
6357
|
*
|
|
6873
6358
|
* @tags Encompass Custom Field Mappings
|
|
6874
6359
|
* @name DeleteEncompassCustomFieldMapping
|
|
6360
|
+
* @summary Delete the Encompass field mapping (only if no values exist)
|
|
6875
6361
|
* @request DELETE:/api/los/encompass/custom-field-mappings/{definitionId}
|
|
6876
6362
|
* @secure
|
|
6877
6363
|
* @response `204` `void` No Content
|
|
@@ -6884,6 +6370,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6884
6370
|
*
|
|
6885
6371
|
* @tags Encompass Custom Field Mappings
|
|
6886
6372
|
* @name DisableEncompassCustomFieldMapping
|
|
6373
|
+
* @summary Disable the Encompass field mapping (stops sync)
|
|
6887
6374
|
* @request POST:/api/los/encompass/custom-field-mappings/{definitionId}/disable
|
|
6888
6375
|
* @secure
|
|
6889
6376
|
* @response `204` `void` No Content
|
|
@@ -6895,6 +6382,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6895
6382
|
*
|
|
6896
6383
|
* @tags Encompass Custom Field Mappings
|
|
6897
6384
|
* @name EnableEncompassCustomFieldMapping
|
|
6385
|
+
* @summary Re-enable the Encompass field mapping (resumes sync)
|
|
6898
6386
|
* @request POST:/api/los/encompass/custom-field-mappings/{definitionId}/enable
|
|
6899
6387
|
* @secure
|
|
6900
6388
|
* @response `204` `void` No Content
|
|
@@ -6906,10 +6394,11 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6906
6394
|
*
|
|
6907
6395
|
* @tags Encompass Custom Fields
|
|
6908
6396
|
* @name GetEncompassFields
|
|
6397
|
+
* @summary Fetch available Encompass custom fields with type metadata
|
|
6909
6398
|
* @request GET:/api/los/encompass/custom-fields
|
|
6910
6399
|
* @secure
|
|
6911
|
-
* @response `200` `(EncompassFieldListItem)[]`
|
|
6912
|
-
* @response `502` `ProblemDetails`
|
|
6400
|
+
* @response `200` `(EncompassFieldListItem)[]` OK
|
|
6401
|
+
* @response `502` `ProblemDetails` Bad Gateway
|
|
6913
6402
|
*/
|
|
6914
6403
|
getEncompassFields: (params?: RequestParams) => Promise<AxiosResponse<EncompassFieldListItem[], any, {}>>;
|
|
6915
6404
|
/**
|
|
@@ -6919,10 +6408,10 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6919
6408
|
* @name GetUserPackages
|
|
6920
6409
|
* @request GET:/api/los/encompass/eclose/packages
|
|
6921
6410
|
* @secure
|
|
6922
|
-
* @response `200` `EncompassPackageList`
|
|
6411
|
+
* @response `200` `EncompassPackageList` OK
|
|
6923
6412
|
* @response `400` `EncompassError` Bad Request
|
|
6924
6413
|
* @response `401` `EncompassError` Unauthorized
|
|
6925
|
-
* @response `500` `EncompassError` Server Error
|
|
6414
|
+
* @response `500` `EncompassError` Internal Server Error
|
|
6926
6415
|
*/
|
|
6927
6416
|
getUserPackages: (query?: {
|
|
6928
6417
|
status?: string;
|
|
@@ -6948,9 +6437,9 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6948
6437
|
* @name GetUserRecipients
|
|
6949
6438
|
* @request GET:/api/los/encompass/eclose/recipients
|
|
6950
6439
|
* @secure
|
|
6951
|
-
* @response `200` `(EncompassRecipientItem)[]`
|
|
6440
|
+
* @response `200` `(EncompassRecipientItem)[]` OK
|
|
6952
6441
|
* @response `401` `EncompassError` Unauthorized
|
|
6953
|
-
* @response `500` `EncompassError` Server Error
|
|
6442
|
+
* @response `500` `EncompassError` Internal Server Error
|
|
6954
6443
|
*/
|
|
6955
6444
|
getUserRecipients: (params?: RequestParams) => Promise<AxiosResponse<EncompassRecipientItem[], any, {}>>;
|
|
6956
6445
|
/**
|
|
@@ -6960,12 +6449,12 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6960
6449
|
* @name CreateEncompassSession
|
|
6961
6450
|
* @request POST:/api/los/encompass/eclose/sessions
|
|
6962
6451
|
* @secure
|
|
6963
|
-
* @response `200` `CreateSession`
|
|
6452
|
+
* @response `200` `CreateSession` OK
|
|
6964
6453
|
* @response `400` `EncompassError` Bad Request
|
|
6965
6454
|
* @response `401` `EncompassError` Unauthorized
|
|
6966
6455
|
* @response `403` `EncompassError` Forbidden
|
|
6967
6456
|
* @response `404` `EncompassError` Not Found
|
|
6968
|
-
* @response `500` `EncompassError` Server Error
|
|
6457
|
+
* @response `500` `EncompassError` Internal Server Error
|
|
6969
6458
|
*/
|
|
6970
6459
|
createEncompassSession: (data: CreateSessionRequest, params?: RequestParams) => Promise<AxiosResponse<CreateSession, any, {}>>;
|
|
6971
6460
|
/**
|
|
@@ -6976,7 +6465,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6976
6465
|
* @summary Get All
|
|
6977
6466
|
* @request GET:/api/files
|
|
6978
6467
|
* @secure
|
|
6979
|
-
* @response `200` `FilePaginated`
|
|
6468
|
+
* @response `200` `FilePaginated` OK
|
|
6980
6469
|
*/
|
|
6981
6470
|
getAllFiles: (query?: {
|
|
6982
6471
|
/** @format int32 */
|
|
@@ -6997,7 +6486,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6997
6486
|
* @request POST:/api/files
|
|
6998
6487
|
* @secure
|
|
6999
6488
|
* @response `201` `File` Created
|
|
7000
|
-
* @response `422` `UnprocessableEntity`
|
|
6489
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
7001
6490
|
*/
|
|
7002
6491
|
uploadFile: (data: {
|
|
7003
6492
|
name?: string;
|
|
@@ -7025,8 +6514,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7025
6514
|
* @summary Replace
|
|
7026
6515
|
* @request PUT:/api/files/{id}
|
|
7027
6516
|
* @secure
|
|
7028
|
-
* @response `200` `string`
|
|
7029
|
-
* @response `422` `UnprocessableEntity`
|
|
6517
|
+
* @response `200` `string` OK
|
|
6518
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
7030
6519
|
*/
|
|
7031
6520
|
replaceFile: (id: string, data: FileRequest, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
7032
6521
|
/**
|
|
@@ -7048,7 +6537,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7048
6537
|
* @summary Search
|
|
7049
6538
|
* @request POST:/api/files/search
|
|
7050
6539
|
* @secure
|
|
7051
|
-
* @response `200` `FilePaginated`
|
|
6540
|
+
* @response `200` `FilePaginated` OK
|
|
7052
6541
|
*/
|
|
7053
6542
|
searchFiles: (data: FileSearchCriteria, query?: {
|
|
7054
6543
|
/** @format int32 */
|
|
@@ -7066,7 +6555,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7066
6555
|
* @summary Get All
|
|
7067
6556
|
* @request GET:/api/forms
|
|
7068
6557
|
* @secure
|
|
7069
|
-
* @response `200` `(AdminAccessGetForms)[]`
|
|
6558
|
+
* @response `200` `(AdminAccessGetForms)[]` OK
|
|
7070
6559
|
*/
|
|
7071
6560
|
getForms: (query?: {
|
|
7072
6561
|
showAll?: boolean;
|
|
@@ -7080,7 +6569,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7080
6569
|
* @request POST:/api/forms
|
|
7081
6570
|
* @secure
|
|
7082
6571
|
* @response `201` `Form` Created
|
|
7083
|
-
* @response `422` `UnprocessableEntity`
|
|
6572
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
7084
6573
|
*/
|
|
7085
6574
|
createForm: (data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<Form, any, {}>>;
|
|
7086
6575
|
/**
|
|
@@ -7091,7 +6580,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7091
6580
|
* @summary Get By ID
|
|
7092
6581
|
* @request GET:/api/forms/{id}
|
|
7093
6582
|
* @secure
|
|
7094
|
-
* @response `200` `Form`
|
|
6583
|
+
* @response `200` `Form` OK
|
|
7095
6584
|
*/
|
|
7096
6585
|
getForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<Form, any, {}>>;
|
|
7097
6586
|
/**
|
|
@@ -7102,8 +6591,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7102
6591
|
* @summary Replace
|
|
7103
6592
|
* @request PUT:/api/forms/{id}
|
|
7104
6593
|
* @secure
|
|
7105
|
-
* @response `200` `Form`
|
|
7106
|
-
* @response `422` `UnprocessableEntity`
|
|
6594
|
+
* @response `200` `Form` OK
|
|
6595
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
7107
6596
|
*/
|
|
7108
6597
|
replaceForm: (id: string, data: FormRequest, params?: RequestParams) => Promise<AxiosResponse<Form, any, {}>>;
|
|
7109
6598
|
/**
|
|
@@ -7125,7 +6614,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7125
6614
|
* @summary Restore
|
|
7126
6615
|
* @request POST:/api/forms/{id}/restore
|
|
7127
6616
|
* @secure
|
|
7128
|
-
* @response `200` `Form`
|
|
6617
|
+
* @response `200` `Form` OK
|
|
7129
6618
|
*/
|
|
7130
6619
|
restoreForm: (id: string, params?: RequestParams) => Promise<AxiosResponse<Form, any, {}>>;
|
|
7131
6620
|
/**
|
|
@@ -7136,7 +6625,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7136
6625
|
* @summary Add
|
|
7137
6626
|
* @request POST:/api/form-submissions/{formSubmissionId}/files
|
|
7138
6627
|
* @secure
|
|
7139
|
-
* @response `200` `FormSubmissionFile`
|
|
6628
|
+
* @response `200` `FormSubmissionFile` OK
|
|
7140
6629
|
*/
|
|
7141
6630
|
addFormSubmissionFile: (formSubmissionId: string, data: {
|
|
7142
6631
|
/** @format binary */
|
|
@@ -7162,7 +6651,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7162
6651
|
* @summary Download by Id
|
|
7163
6652
|
* @request GET:/api/form-submissions/{formSubmissionId}/files/{formSubmissionFileId}/download
|
|
7164
6653
|
* @secure
|
|
7165
|
-
* @response `200` `FileWithBytes`
|
|
6654
|
+
* @response `200` `FileWithBytes` OK
|
|
7166
6655
|
*/
|
|
7167
6656
|
downloadFormSubmissionFile: (formSubmissionFileId: string, formSubmissionId: string, query?: {
|
|
7168
6657
|
/** @format uuid */
|
|
@@ -7176,7 +6665,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7176
6665
|
* @summary Get All
|
|
7177
6666
|
* @request GET:/api/form-submissions
|
|
7178
6667
|
* @secure
|
|
7179
|
-
* @response `200` `FormSubmissionPaginated`
|
|
6668
|
+
* @response `200` `FormSubmissionPaginated` OK
|
|
7180
6669
|
*/
|
|
7181
6670
|
getFormSubmissions: (query?: {
|
|
7182
6671
|
/** @format int32 */
|
|
@@ -7207,7 +6696,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7207
6696
|
* @summary Get by ID
|
|
7208
6697
|
* @request GET:/api/form-submissions/{id}
|
|
7209
6698
|
* @secure
|
|
7210
|
-
* @response `200` `FormSubmission`
|
|
6699
|
+
* @response `200` `FormSubmission` OK
|
|
7211
6700
|
*/
|
|
7212
6701
|
getFormSubmission: (id: string, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any, {}>>;
|
|
7213
6702
|
/**
|
|
@@ -7218,7 +6707,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7218
6707
|
* @summary Replace
|
|
7219
6708
|
* @request PUT:/api/form-submissions/{id}
|
|
7220
6709
|
* @secure
|
|
7221
|
-
* @response `200` `FormSubmission`
|
|
6710
|
+
* @response `200` `FormSubmission` OK
|
|
7222
6711
|
*/
|
|
7223
6712
|
replaceFormSubmission: (id: string, data: FormSubmissionRequest, params?: RequestParams) => Promise<AxiosResponse<FormSubmission, any, {}>>;
|
|
7224
6713
|
/**
|
|
@@ -7240,7 +6729,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7240
6729
|
* @summary Search
|
|
7241
6730
|
* @request POST:/api/form-submissions/search
|
|
7242
6731
|
* @secure
|
|
7243
|
-
* @response `200` `FormSubmissionPaginated`
|
|
6732
|
+
* @response `200` `FormSubmissionPaginated` OK
|
|
7244
6733
|
*/
|
|
7245
6734
|
searchFormSubmissions: (data: FormSubmissionSearchCriteria, query?: {
|
|
7246
6735
|
/** @format int32 */
|
|
@@ -7258,7 +6747,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7258
6747
|
* @summary Get All
|
|
7259
6748
|
* @request GET:/api/forms/{formId}/versions
|
|
7260
6749
|
* @secure
|
|
7261
|
-
* @response `200` `(FormVersion)[]`
|
|
6750
|
+
* @response `200` `(FormVersion)[]` OK
|
|
7262
6751
|
*/
|
|
7263
6752
|
getFormVersions: (formId: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion[], any, {}>>;
|
|
7264
6753
|
/**
|
|
@@ -7269,7 +6758,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7269
6758
|
* @summary Create
|
|
7270
6759
|
* @request POST:/api/forms/{formId}/versions
|
|
7271
6760
|
* @secure
|
|
7272
|
-
* @response `200` `FormVersion`
|
|
6761
|
+
* @response `200` `FormVersion` OK
|
|
7273
6762
|
*/
|
|
7274
6763
|
createFormVersion: (formId: string, data: FormVersionRequest, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any, {}>>;
|
|
7275
6764
|
/**
|
|
@@ -7280,7 +6769,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7280
6769
|
* @summary Get by ID
|
|
7281
6770
|
* @request GET:/api/forms/{formId}/versions/{id}
|
|
7282
6771
|
* @secure
|
|
7283
|
-
* @response `200` `FormVersion`
|
|
6772
|
+
* @response `200` `FormVersion` OK
|
|
7284
6773
|
*/
|
|
7285
6774
|
getFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any, {}>>;
|
|
7286
6775
|
/**
|
|
@@ -7291,7 +6780,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7291
6780
|
* @summary Replace
|
|
7292
6781
|
* @request PUT:/api/forms/{formId}/versions/{id}
|
|
7293
6782
|
* @secure
|
|
7294
|
-
* @response `200` `FormVersion`
|
|
6783
|
+
* @response `200` `FormVersion` OK
|
|
7295
6784
|
*/
|
|
7296
6785
|
replaceFormVersion: (formId: string, id: string, data: FormVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any, {}>>;
|
|
7297
6786
|
/**
|
|
@@ -7302,7 +6791,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7302
6791
|
* @summary Delete
|
|
7303
6792
|
* @request DELETE:/api/forms/{formId}/versions/{id}
|
|
7304
6793
|
* @secure
|
|
7305
|
-
* @response `200` `FormVersion`
|
|
6794
|
+
* @response `200` `FormVersion` OK
|
|
7306
6795
|
*/
|
|
7307
6796
|
deleteFormVersion: (formId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<FormVersion, any, {}>>;
|
|
7308
6797
|
/**
|
|
@@ -7313,7 +6802,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7313
6802
|
* @summary Get Integration Settings
|
|
7314
6803
|
* @request GET:/api/integrations/settings
|
|
7315
6804
|
* @secure
|
|
7316
|
-
* @response `200` `IntegrationSettings`
|
|
6805
|
+
* @response `200` `IntegrationSettings` OK
|
|
7317
6806
|
*/
|
|
7318
6807
|
getIntegrationSettings: (params?: RequestParams) => Promise<AxiosResponse<IntegrationSettings, any, {}>>;
|
|
7319
6808
|
/**
|
|
@@ -7324,7 +6813,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7324
6813
|
* @summary Get By ID
|
|
7325
6814
|
* @request GET:/api/los/loan/application/{loanID}
|
|
7326
6815
|
* @secure
|
|
7327
|
-
* @response `200` `Record<string,any>`
|
|
6816
|
+
* @response `200` `Record<string,any>` OK
|
|
7328
6817
|
*/
|
|
7329
6818
|
getLoanData: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Record<string, any>, any, {}>>;
|
|
7330
6819
|
/**
|
|
@@ -7336,8 +6825,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7336
6825
|
* @request PATCH:/api/los/loan/application/{loanID}
|
|
7337
6826
|
* @deprecated
|
|
7338
6827
|
* @secure
|
|
7339
|
-
* @response `200` `string`
|
|
7340
|
-
* @response `422` `UnprocessableEntity`
|
|
6828
|
+
* @response `200` `string` OK
|
|
6829
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
7341
6830
|
*/
|
|
7342
6831
|
updateLoanConsentAndCustomFieldsObsolete: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
7343
6832
|
/**
|
|
@@ -7348,7 +6837,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7348
6837
|
* @summary Get Report
|
|
7349
6838
|
* @request POST:/api/los/loan/reports
|
|
7350
6839
|
* @secure
|
|
7351
|
-
* @response `200` `GetReport`
|
|
6840
|
+
* @response `200` `GetReport` OK
|
|
7352
6841
|
*/
|
|
7353
6842
|
getLoansReport: (data: GetReportRequest, params?: RequestParams) => Promise<AxiosResponse<GetReport, any, {}>>;
|
|
7354
6843
|
/**
|
|
@@ -7360,9 +6849,9 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7360
6849
|
* @request POST:/api/los/loan/application
|
|
7361
6850
|
* @deprecated
|
|
7362
6851
|
* @secure
|
|
7363
|
-
* @response `200` `string`
|
|
7364
|
-
* @response `422` `UnprocessableEntity`
|
|
7365
|
-
* @response `423` `UnprocessableEntity`
|
|
6852
|
+
* @response `200` `string` OK
|
|
6853
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
6854
|
+
* @response `423` `UnprocessableEntity` Locked
|
|
7366
6855
|
*/
|
|
7367
6856
|
createLoan: (data: any, query?: {
|
|
7368
6857
|
/** @default false */
|
|
@@ -7376,9 +6865,9 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7376
6865
|
* @summary Create Loan Returning Internal Loan ID
|
|
7377
6866
|
* @request POST:/api/los/loan/application/internal
|
|
7378
6867
|
* @secure
|
|
7379
|
-
* @response `200` `string`
|
|
7380
|
-
* @response `422` `UnprocessableEntity`
|
|
7381
|
-
* @response `423` `UnprocessableEntity`
|
|
6868
|
+
* @response `200` `string` OK
|
|
6869
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
6870
|
+
* @response `423` `UnprocessableEntity` Locked
|
|
7382
6871
|
*/
|
|
7383
6872
|
createLoanInternal: (data: any, query?: {
|
|
7384
6873
|
/** @default false */
|
|
@@ -7392,8 +6881,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7392
6881
|
* @summary Update Loan Custom Fields
|
|
7393
6882
|
* @request PATCH:/api/los/loan/application/{loanID}/custom-fields
|
|
7394
6883
|
* @secure
|
|
7395
|
-
* @response `200` `string`
|
|
7396
|
-
* @response `422` `UnprocessableEntity`
|
|
6884
|
+
* @response `200` `string` OK
|
|
6885
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
7397
6886
|
*/
|
|
7398
6887
|
updateLoanCustomFields: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
7399
6888
|
/**
|
|
@@ -7404,9 +6893,9 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7404
6893
|
* @summary Update Loan Consent and Custom Fields
|
|
7405
6894
|
* @request PATCH:/api/los/loan/application/{loanID}/consent
|
|
7406
6895
|
* @secure
|
|
7407
|
-
* @response `200` `string`
|
|
6896
|
+
* @response `200` `string` OK
|
|
7408
6897
|
* @response `202` `string` Accepted
|
|
7409
|
-
* @response `422` `UnprocessableEntity`
|
|
6898
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
7410
6899
|
*/
|
|
7411
6900
|
updateLoanConsent: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
7412
6901
|
/**
|
|
@@ -7417,7 +6906,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7417
6906
|
* @summary Get Documents
|
|
7418
6907
|
* @request GET:/api/los/loan/tasks/documents/{loanID}
|
|
7419
6908
|
* @secure
|
|
7420
|
-
* @response `200` `(DocumentData)[]`
|
|
6909
|
+
* @response `200` `(DocumentData)[]` OK
|
|
7421
6910
|
*/
|
|
7422
6911
|
getTaskDocumentsByLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentData[], any, {}>>;
|
|
7423
6912
|
/**
|
|
@@ -7428,7 +6917,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7428
6917
|
* @summary Get Document Content
|
|
7429
6918
|
* @request GET:/api/los/loan/{loanID}/document/{documentId}/content
|
|
7430
6919
|
* @secure
|
|
7431
|
-
* @response `200` `void`
|
|
6920
|
+
* @response `200` `void` OK
|
|
7432
6921
|
*/
|
|
7433
6922
|
getLoanDocumentContent: (loanId: string, documentId: string, query?: {
|
|
7434
6923
|
/** @default "base64" */
|
|
@@ -7453,7 +6942,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7453
6942
|
* @summary Get Preliminary Conditions
|
|
7454
6943
|
* @request GET:/api/los/loan/{loanID}/conditions/preliminary
|
|
7455
6944
|
* @secure
|
|
7456
|
-
* @response `200` `(PreliminaryCondition)[]`
|
|
6945
|
+
* @response `200` `(PreliminaryCondition)[]` OK
|
|
7457
6946
|
*/
|
|
7458
6947
|
getPreliminaryConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<PreliminaryCondition[], any, {}>>;
|
|
7459
6948
|
/**
|
|
@@ -7464,7 +6953,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7464
6953
|
* @summary Get Underwriting Conditions
|
|
7465
6954
|
* @request GET:/api/los/loan/{loanID}/conditions/underwriting
|
|
7466
6955
|
* @secure
|
|
7467
|
-
* @response `200` `(UnderwritingCondition)[]`
|
|
6956
|
+
* @response `200` `(UnderwritingCondition)[]` OK
|
|
7468
6957
|
*/
|
|
7469
6958
|
getUnderwritingConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UnderwritingCondition[], any, {}>>;
|
|
7470
6959
|
/**
|
|
@@ -7475,7 +6964,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7475
6964
|
* @summary Get Embedded Signing Link
|
|
7476
6965
|
* @request POST:/api/los/loan/embeddedsigning/{envelopeId}/{userName}/{email}
|
|
7477
6966
|
* @secure
|
|
7478
|
-
* @response `200` `string`
|
|
6967
|
+
* @response `200` `string` OK
|
|
7479
6968
|
*/
|
|
7480
6969
|
getLoanEmbeddedSigningLink: (envelopeId: string, userName: string, email: string, params?: RequestParams) => Promise<AxiosResponse<string, any, {}>>;
|
|
7481
6970
|
/**
|
|
@@ -7487,7 +6976,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7487
6976
|
* @request POST:/api/los/loan/generatedocument
|
|
7488
6977
|
* @deprecated
|
|
7489
6978
|
* @secure
|
|
7490
|
-
* @response `200` `DocumentDataRequest`
|
|
6979
|
+
* @response `200` `DocumentDataRequest` OK
|
|
7491
6980
|
*/
|
|
7492
6981
|
createLegacyLoanDocument: (data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any, {}>>;
|
|
7493
6982
|
/**
|
|
@@ -7498,10 +6987,10 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7498
6987
|
* @summary Create Edit Draft for Loan
|
|
7499
6988
|
* @request PUT:/api/los/loan/{loanID}/edit
|
|
7500
6989
|
* @secure
|
|
7501
|
-
* @response `200` `Draft`
|
|
6990
|
+
* @response `200` `Draft` OK
|
|
7502
6991
|
* @response `400` `ProblemDetails` Bad Request
|
|
7503
6992
|
* @response `404` `ProblemDetails` Not Found
|
|
7504
|
-
* @response `423` `ProblemDetails`
|
|
6993
|
+
* @response `423` `ProblemDetails` Locked
|
|
7505
6994
|
*/
|
|
7506
6995
|
createEditDraftForLoan: (loanId: string, query?: {
|
|
7507
6996
|
/** @default false */
|
|
@@ -7515,7 +7004,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7515
7004
|
* @summary Add
|
|
7516
7005
|
* @request POST:/api/listings/{listingId}/files
|
|
7517
7006
|
* @secure
|
|
7518
|
-
* @response `200` `ListingFile`
|
|
7007
|
+
* @response `200` `ListingFile` OK
|
|
7519
7008
|
*/
|
|
7520
7009
|
addListingFile: (listingId: string, data: {
|
|
7521
7010
|
/** @format binary */
|
|
@@ -7531,7 +7020,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7531
7020
|
* @summary Update
|
|
7532
7021
|
* @request PATCH:/api/listings/{listingId}/files
|
|
7533
7022
|
* @secure
|
|
7534
|
-
* @response `200` `ListingFile`
|
|
7023
|
+
* @response `200` `ListingFile` OK
|
|
7535
7024
|
*/
|
|
7536
7025
|
updateListingFiles: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingFile, any, {}>>;
|
|
7537
7026
|
/**
|
|
@@ -7553,7 +7042,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7553
7042
|
* @summary Add
|
|
7554
7043
|
* @request POST:/api/listings/{listingId}/photos
|
|
7555
7044
|
* @secure
|
|
7556
|
-
* @response `200` `ListingPhoto`
|
|
7045
|
+
* @response `200` `ListingPhoto` OK
|
|
7557
7046
|
*/
|
|
7558
7047
|
addListingPhoto: (listingId: string, data: {
|
|
7559
7048
|
name?: string;
|
|
@@ -7571,7 +7060,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7571
7060
|
* @summary Update
|
|
7572
7061
|
* @request PATCH:/api/listings/{listingId}/photos
|
|
7573
7062
|
* @secure
|
|
7574
|
-
* @response `200` `(ListingPhoto)[]`
|
|
7063
|
+
* @response `200` `(ListingPhoto)[]` OK
|
|
7575
7064
|
*/
|
|
7576
7065
|
updateListingPhotos: (listingId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<ListingPhoto[], any, {}>>;
|
|
7577
7066
|
/**
|
|
@@ -7593,7 +7082,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7593
7082
|
* @summary Get All
|
|
7594
7083
|
* @request GET:/api/listings
|
|
7595
7084
|
* @secure
|
|
7596
|
-
* @response `200` `ListingPaginated`
|
|
7085
|
+
* @response `200` `ListingPaginated` OK
|
|
7597
7086
|
*/
|
|
7598
7087
|
getListings: (query?: {
|
|
7599
7088
|
/** @format int32 */
|
|
@@ -7622,7 +7111,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7622
7111
|
* @summary Get by Slug
|
|
7623
7112
|
* @request GET:/api/listings/slug/{slug}
|
|
7624
7113
|
* @secure
|
|
7625
|
-
* @response `200` `Listing`
|
|
7114
|
+
* @response `200` `Listing` OK
|
|
7626
7115
|
*/
|
|
7627
7116
|
getListingBySlug: (slug: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
|
|
7628
7117
|
/**
|
|
@@ -7633,7 +7122,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7633
7122
|
* @summary Get by ID
|
|
7634
7123
|
* @request GET:/api/listings/{id}
|
|
7635
7124
|
* @secure
|
|
7636
|
-
* @response `200` `Listing`
|
|
7125
|
+
* @response `200` `Listing` OK
|
|
7637
7126
|
*/
|
|
7638
7127
|
getListing: (id: string, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
|
|
7639
7128
|
/**
|
|
@@ -7644,7 +7133,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7644
7133
|
* @summary Replace
|
|
7645
7134
|
* @request PUT:/api/listings/{id}
|
|
7646
7135
|
* @secure
|
|
7647
|
-
* @response `200` `Listing`
|
|
7136
|
+
* @response `200` `Listing` OK
|
|
7648
7137
|
*/
|
|
7649
7138
|
replaceListing: (id: string, data: ListingRequest, params?: RequestParams) => Promise<AxiosResponse<Listing, any, {}>>;
|
|
7650
7139
|
/**
|
|
@@ -7666,7 +7155,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7666
7155
|
* @summary Search
|
|
7667
7156
|
* @request POST:/api/listings/search
|
|
7668
7157
|
* @secure
|
|
7669
|
-
* @response `200` `ListingPaginated`
|
|
7158
|
+
* @response `200` `ListingPaginated` OK
|
|
7670
7159
|
*/
|
|
7671
7160
|
searchListings: (data: ListingSearchCriteria, query?: {
|
|
7672
7161
|
/** @format int32 */
|
|
@@ -7684,7 +7173,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7684
7173
|
* @summary Update Background Image
|
|
7685
7174
|
* @request PUT:/api/listings/{id}/background-image
|
|
7686
7175
|
* @secure
|
|
7687
|
-
* @response `200` `File`
|
|
7176
|
+
* @response `200` `File` OK
|
|
7688
7177
|
*/
|
|
7689
7178
|
updateListingBackgroundImage: (id: string, data: {
|
|
7690
7179
|
/** @format binary */
|
|
@@ -7709,7 +7198,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7709
7198
|
* @summary Get Open House Flyer
|
|
7710
7199
|
* @request GET:/api/listings/{id}/open-house-flyer
|
|
7711
7200
|
* @secure
|
|
7712
|
-
* @response `200` `File`
|
|
7201
|
+
* @response `200` `File` OK
|
|
7713
7202
|
*/
|
|
7714
7203
|
getListingOpenHouseFlyer: (id: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
|
|
7715
7204
|
/**
|
|
@@ -7720,7 +7209,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7720
7209
|
* @summary Get
|
|
7721
7210
|
* @request GET:/api/loans/{loanID}/calculators/loan-calculator
|
|
7722
7211
|
* @secure
|
|
7723
|
-
* @response `200` `RunLOCalculation`
|
|
7212
|
+
* @response `200` `RunLOCalculation` OK
|
|
7724
7213
|
*/
|
|
7725
7214
|
getLoanCalculator: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any, {}>>;
|
|
7726
7215
|
/**
|
|
@@ -7731,9 +7220,9 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7731
7220
|
* @summary Run
|
|
7732
7221
|
* @request POST:/api/loans/{loanID}/calculators/loan-calculator
|
|
7733
7222
|
* @secure
|
|
7734
|
-
* @response `200` `RunLOCalculation`
|
|
7735
|
-
* @response `422` `UnprocessableEntity`
|
|
7736
|
-
* @response `423` `UnprocessableEntity`
|
|
7223
|
+
* @response `200` `RunLOCalculation` OK
|
|
7224
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
7225
|
+
* @response `423` `UnprocessableEntity` Locked
|
|
7737
7226
|
*/
|
|
7738
7227
|
runLoanCalculator: (loanId: string, data: RunLOCalculationRequest, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any, {}>>;
|
|
7739
7228
|
/**
|
|
@@ -7744,7 +7233,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7744
7233
|
* @summary Get All
|
|
7745
7234
|
* @request GET:/api/loans/{loanID}/loan-comparison
|
|
7746
7235
|
* @secure
|
|
7747
|
-
* @response `200` `LoanComparison`
|
|
7236
|
+
* @response `200` `LoanComparison` OK
|
|
7748
7237
|
*/
|
|
7749
7238
|
getLoanComparisons: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<LoanComparison, any, {}>>;
|
|
7750
7239
|
/**
|
|
@@ -7756,8 +7245,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7756
7245
|
* @request POST:/api/loans/{loanID}/loan-comparison/{index}
|
|
7757
7246
|
* @secure
|
|
7758
7247
|
* @response `201` `LoanComparisonScenario` Created
|
|
7759
|
-
* @response `422` `UnprocessableEntity`
|
|
7760
|
-
* @response `423` `UnprocessableEntity`
|
|
7248
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
7249
|
+
* @response `423` `UnprocessableEntity` Locked
|
|
7761
7250
|
*/
|
|
7762
7251
|
createLoanComparison: (loanId: string, index: number, data: LoanComparisonScenario, params?: RequestParams) => Promise<AxiosResponse<LoanComparisonScenario, any, {}>>;
|
|
7763
7252
|
/**
|
|
@@ -7780,7 +7269,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7780
7269
|
* @request POST:/api/loans/{loanID}/loan-comparison/pdf
|
|
7781
7270
|
* @secure
|
|
7782
7271
|
* @response `204` `void` No Content
|
|
7783
|
-
* @response `422` `UnprocessableEntity`
|
|
7272
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
7784
7273
|
*/
|
|
7785
7274
|
createLoanComparisonPdf: (loanId: string, data: PostLoanComparisonPdfRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7786
7275
|
/**
|
|
@@ -7793,7 +7282,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7793
7282
|
* @secure
|
|
7794
7283
|
* @response `204` `void` No Content
|
|
7795
7284
|
* @response `404` `ProblemDetails` Not Found
|
|
7796
|
-
* @response `422` `ProblemDetails`
|
|
7285
|
+
* @response `422` `ProblemDetails` Unprocessable Content
|
|
7797
7286
|
*/
|
|
7798
7287
|
resyncLoanConsents: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7799
7288
|
/**
|
|
@@ -7804,7 +7293,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7804
7293
|
* @summary Get all custom field values for a loan
|
|
7805
7294
|
* @request GET:/api/loans/{loanId}/custom-fields
|
|
7806
7295
|
* @secure
|
|
7807
|
-
* @response `200` `(CustomFieldValue)[]`
|
|
7296
|
+
* @response `200` `(CustomFieldValue)[]` OK
|
|
7808
7297
|
*/
|
|
7809
7298
|
getLoanCustomFieldValues: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<CustomFieldValue[], any, {}>>;
|
|
7810
7299
|
/**
|
|
@@ -7817,7 +7306,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7817
7306
|
* @secure
|
|
7818
7307
|
* @response `204` `void` No Content
|
|
7819
7308
|
* @response `400` `ProblemDetails` Bad Request
|
|
7820
|
-
* @response `422` `ProblemDetails`
|
|
7309
|
+
* @response `422` `ProblemDetails` Unprocessable Content
|
|
7821
7310
|
*/
|
|
7822
7311
|
bulkSetLoanCustomFieldValues: (loanId: string, data: SetCustomFieldValueRequest[], params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7823
7312
|
/**
|
|
@@ -7831,7 +7320,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7831
7320
|
* @response `204` `void` No Content
|
|
7832
7321
|
* @response `400` `ProblemDetails` Bad Request
|
|
7833
7322
|
* @response `404` `ProblemDetails` Not Found
|
|
7834
|
-
* @response `422` `ProblemDetails`
|
|
7323
|
+
* @response `422` `ProblemDetails` Unprocessable Content
|
|
7835
7324
|
*/
|
|
7836
7325
|
setLoanCustomFieldValue: (loanId: string, definitionId: string, data: SetSingleCustomFieldValueRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
7837
7326
|
/**
|
|
@@ -7854,7 +7343,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7854
7343
|
* @summary Get All
|
|
7855
7344
|
* @request GET:/api/loans/{loanId}/documents/buckets
|
|
7856
7345
|
* @secure
|
|
7857
|
-
* @response `200` `(string)[]`
|
|
7346
|
+
* @response `200` `(string)[]` OK
|
|
7858
7347
|
*/
|
|
7859
7348
|
getLoanDocumentBuckets: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<string[], any, {}>>;
|
|
7860
7349
|
/**
|
|
@@ -7876,7 +7365,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7876
7365
|
* @summary Get all loan document folders for the current account
|
|
7877
7366
|
* @request GET:/api/loan-document-folders
|
|
7878
7367
|
* @secure
|
|
7879
|
-
* @response `200` `(LoanDocumentFolder)[]`
|
|
7368
|
+
* @response `200` `(LoanDocumentFolder)[]` OK
|
|
7880
7369
|
*/
|
|
7881
7370
|
getAllLoanDocumentFolders: (params?: RequestParams) => Promise<AxiosResponse<LoanDocumentFolder[], any, {}>>;
|
|
7882
7371
|
/**
|
|
@@ -7889,7 +7378,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7889
7378
|
* @secure
|
|
7890
7379
|
* @response `201` `LoanDocumentFolder` Created
|
|
7891
7380
|
* @response `409` `ProblemDetails` Conflict
|
|
7892
|
-
* @response `422` `ProblemDetails`
|
|
7381
|
+
* @response `422` `ProblemDetails` Unprocessable Content
|
|
7893
7382
|
*/
|
|
7894
7383
|
createLoanDocumentFolder: (data: CreateLoanDocumentFolderRequest, params?: RequestParams) => Promise<AxiosResponse<LoanDocumentFolder, any, {}>>;
|
|
7895
7384
|
/**
|
|
@@ -7900,7 +7389,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7900
7389
|
* @summary Get a loan document folder by ID
|
|
7901
7390
|
* @request GET:/api/loan-document-folders/{id}
|
|
7902
7391
|
* @secure
|
|
7903
|
-
* @response `200` `LoanDocumentFolder`
|
|
7392
|
+
* @response `200` `LoanDocumentFolder` OK
|
|
7904
7393
|
* @response `404` `ProblemDetails` Not Found
|
|
7905
7394
|
*/
|
|
7906
7395
|
getLoanDocumentFolderById: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanDocumentFolder, any, {}>>;
|
|
@@ -7912,11 +7401,11 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7912
7401
|
* @summary Update a loan document folder. Blocked when folder has ever been referenced, except for permission edits on the system-default Unassigned folder.
|
|
7913
7402
|
* @request PUT:/api/loan-document-folders/{id}
|
|
7914
7403
|
* @secure
|
|
7915
|
-
* @response `200` `LoanDocumentFolder`
|
|
7404
|
+
* @response `200` `LoanDocumentFolder` OK
|
|
7916
7405
|
* @response `400` `ProblemDetails` Bad Request
|
|
7917
7406
|
* @response `404` `ProblemDetails` Not Found
|
|
7918
7407
|
* @response `409` `ProblemDetails` Conflict
|
|
7919
|
-
* @response `422` `ProblemDetails`
|
|
7408
|
+
* @response `422` `ProblemDetails` Unprocessable Content
|
|
7920
7409
|
*/
|
|
7921
7410
|
updateLoanDocumentFolder: (id: string, data: UpdateLoanDocumentFolderRequest, params?: RequestParams) => Promise<AxiosResponse<LoanDocumentFolder, any, {}>>;
|
|
7922
7411
|
/**
|
|
@@ -7966,7 +7455,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7966
7455
|
* @summary Get folder usage. Returns HasEverBeenReferenced including soft-deleted documents and tasks.
|
|
7967
7456
|
* @request GET:/api/loan-document-folders/{id}/usage
|
|
7968
7457
|
* @secure
|
|
7969
|
-
* @response `200` `LoanDocumentFolderUsage`
|
|
7458
|
+
* @response `200` `LoanDocumentFolderUsage` OK
|
|
7970
7459
|
* @response `404` `ProblemDetails` Not Found
|
|
7971
7460
|
*/
|
|
7972
7461
|
getLoanDocumentFolderUsage: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanDocumentFolderUsage, any, {}>>;
|
|
@@ -7978,7 +7467,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7978
7467
|
* @summary Get By ID
|
|
7979
7468
|
* @request GET:/api/loans/{loanId}/documents/{documentId}
|
|
7980
7469
|
* @secure
|
|
7981
|
-
* @response `200` `LoanDocument`
|
|
7470
|
+
* @response `200` `LoanDocument` OK
|
|
7982
7471
|
* @response `404` `ProblemDetails` Not Found
|
|
7983
7472
|
*/
|
|
7984
7473
|
getLoanDocument: (loanId: string, documentId: string, query?: {
|
|
@@ -7993,7 +7482,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7993
7482
|
* @summary Get document previews in batch
|
|
7994
7483
|
* @request POST:/api/loans/{loanId}/documents/previews
|
|
7995
7484
|
* @secure
|
|
7996
|
-
* @response `200` `Record<string,string>`
|
|
7485
|
+
* @response `200` `Record<string,string>` OK
|
|
7997
7486
|
* @response `400` `ProblemDetails` Bad Request
|
|
7998
7487
|
*/
|
|
7999
7488
|
getLoanDocumentPreviews: (loanId: string, data: LoanDocumentPreviewsRequest, params?: RequestParams) => Promise<AxiosResponse<Record<string, string>, any, {}>>;
|
|
@@ -8005,7 +7494,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8005
7494
|
* @summary Search loan documents
|
|
8006
7495
|
* @request POST:/api/loans/{loanId}/documents/search
|
|
8007
7496
|
* @secure
|
|
8008
|
-
* @response `200` `LoanDocumentSearchPaginated`
|
|
7497
|
+
* @response `200` `LoanDocumentSearchPaginated` OK
|
|
8009
7498
|
*/
|
|
8010
7499
|
searchLoanDocuments: (loanId: string, data: LoanDocumentSearchCriteria, query?: {
|
|
8011
7500
|
/** @format int32 */
|
|
@@ -8023,7 +7512,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8023
7512
|
* @summary Get document folder hierarchy
|
|
8024
7513
|
* @request POST:/api/loans/{loanId}/documents/folders
|
|
8025
7514
|
* @secure
|
|
8026
|
-
* @response `200` `(DocumentFolder)[]`
|
|
7515
|
+
* @response `200` `(DocumentFolder)[]` OK
|
|
8027
7516
|
*/
|
|
8028
7517
|
getLoanDocumentFolders: (loanId: string, data: DocumentFoldersRequest, query?: {
|
|
8029
7518
|
/** @default false */
|
|
@@ -8037,7 +7526,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8037
7526
|
* @summary Download By ID
|
|
8038
7527
|
* @request GET:/api/loans/{loanId}/documents/{documentId}/download
|
|
8039
7528
|
* @secure
|
|
8040
|
-
* @response `200` `Blob`
|
|
7529
|
+
* @response `200` `Blob` OK
|
|
8041
7530
|
* @response `404` `ProblemDetails` Not Found
|
|
8042
7531
|
*/
|
|
8043
7532
|
downloadLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<Blob, any, {}>>;
|
|
@@ -8051,7 +7540,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8051
7540
|
* @secure
|
|
8052
7541
|
* @response `201` `LoanDocument` Created
|
|
8053
7542
|
* @response `404` `ProblemDetails` Not Found
|
|
8054
|
-
* @response `422` `UnprocessableEntity`
|
|
7543
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
8055
7544
|
*/
|
|
8056
7545
|
createLoanDocument: (loanId: string, data: {
|
|
8057
7546
|
name?: string;
|
|
@@ -8069,9 +7558,9 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8069
7558
|
* @summary Retry
|
|
8070
7559
|
* @request POST:/api/loans/{loanId}/documents/{documentId}/retry
|
|
8071
7560
|
* @secure
|
|
8072
|
-
* @response `200` `LoanDocument`
|
|
7561
|
+
* @response `200` `LoanDocument` OK
|
|
8073
7562
|
* @response `404` `ProblemDetails` Not Found
|
|
8074
|
-
* @response `422` `UnprocessableEntity`
|
|
7563
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
8075
7564
|
*/
|
|
8076
7565
|
retryFailedLoanDocument: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<LoanDocument, any, {}>>;
|
|
8077
7566
|
/**
|
|
@@ -8082,7 +7571,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8082
7571
|
* @summary Generate PDF Document
|
|
8083
7572
|
* @request POST:/api/loans/{loanId}/documents/generate
|
|
8084
7573
|
* @secure
|
|
8085
|
-
* @response `200` `DocumentDataRequest`
|
|
7574
|
+
* @response `200` `DocumentDataRequest` OK
|
|
8086
7575
|
*/
|
|
8087
7576
|
generateLoanDocument: (loanId: string, data: GenerateDocumentRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentDataRequest, any, {}>>;
|
|
8088
7577
|
/**
|
|
@@ -8093,7 +7582,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8093
7582
|
* @summary Send existing documents to loan users or external emails
|
|
8094
7583
|
* @request POST:/api/loans/{loanId}/documents/distribute
|
|
8095
7584
|
* @secure
|
|
8096
|
-
* @response `200` `void`
|
|
7585
|
+
* @response `200` `void` OK
|
|
8097
7586
|
* @response `400` `ProblemDetails` Bad Request
|
|
8098
7587
|
* @response `404` `ProblemDetails` Not Found
|
|
8099
7588
|
*/
|
|
@@ -8106,7 +7595,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8106
7595
|
* @summary Sync documents from LOS
|
|
8107
7596
|
* @request POST:/api/loans/{loanId}/documents/sync
|
|
8108
7597
|
* @secure
|
|
8109
|
-
* @response `200` `DocumentSync`
|
|
7598
|
+
* @response `200` `DocumentSync` OK
|
|
8110
7599
|
* @response `404` `ProblemDetails` Not Found
|
|
8111
7600
|
*/
|
|
8112
7601
|
syncLoanDocumentsFromLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentSync, any, {}>>;
|
|
@@ -8118,9 +7607,9 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8118
7607
|
* @summary Retry syncing a document to LOS
|
|
8119
7608
|
* @request POST:/api/loans/{loanId}/documents/{documentId}/sync/retry
|
|
8120
7609
|
* @secure
|
|
8121
|
-
* @response `200` `void`
|
|
7610
|
+
* @response `200` `void` OK
|
|
8122
7611
|
* @response `404` `ProblemDetails` Not Found
|
|
8123
|
-
* @response `423` `ProblemDetails`
|
|
7612
|
+
* @response `423` `ProblemDetails` Locked
|
|
8124
7613
|
*/
|
|
8125
7614
|
retrySyncLoanDocumentToLos: (loanId: string, documentId: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
8126
7615
|
/**
|
|
@@ -8142,7 +7631,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8142
7631
|
* @summary Get All
|
|
8143
7632
|
* @request GET:/api/loans/drafts
|
|
8144
7633
|
* @secure
|
|
8145
|
-
* @response `200` `(DraftContent)[]`
|
|
7634
|
+
* @response `200` `(DraftContent)[]` OK
|
|
8146
7635
|
*/
|
|
8147
7636
|
getLoanDrafts: (params?: RequestParams) => Promise<AxiosResponse<DraftContent[], any, {}>>;
|
|
8148
7637
|
/**
|
|
@@ -8153,7 +7642,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8153
7642
|
* @summary Get by ID
|
|
8154
7643
|
* @request GET:/api/loans/drafts/{draftId}
|
|
8155
7644
|
* @secure
|
|
8156
|
-
* @response `200` `DraftContent`
|
|
7645
|
+
* @response `200` `DraftContent` OK
|
|
8157
7646
|
*/
|
|
8158
7647
|
getLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<DraftContent, any, {}>>;
|
|
8159
7648
|
/**
|
|
@@ -8164,7 +7653,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8164
7653
|
* @summary Replace
|
|
8165
7654
|
* @request PUT:/api/loans/drafts/{draftId}
|
|
8166
7655
|
* @secure
|
|
8167
|
-
* @response `200` `Draft`
|
|
7656
|
+
* @response `200` `Draft` OK
|
|
8168
7657
|
*/
|
|
8169
7658
|
replaceLoanDraft: (draftId: string, data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
|
|
8170
7659
|
/**
|
|
@@ -8204,7 +7693,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8204
7693
|
* @summary Reassign Loan officer
|
|
8205
7694
|
* @request PUT:/api/loans/drafts/{draftId}/reassign
|
|
8206
7695
|
* @secure
|
|
8207
|
-
* @response `200` `Draft`
|
|
7696
|
+
* @response `200` `Draft` OK
|
|
8208
7697
|
*/
|
|
8209
7698
|
reassignLoanOfficer: (draftId: string, data: DraftLoanOfficerReassignRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
|
|
8210
7699
|
/**
|
|
@@ -8215,7 +7704,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8215
7704
|
* @summary Restore deleted draft
|
|
8216
7705
|
* @request POST:/api/loans/drafts/{draftId}/restore
|
|
8217
7706
|
* @secure
|
|
8218
|
-
* @response `200` `Draft`
|
|
7707
|
+
* @response `200` `Draft` OK
|
|
8219
7708
|
*/
|
|
8220
7709
|
restoreLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<Draft, any, {}>>;
|
|
8221
7710
|
/**
|
|
@@ -8226,7 +7715,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8226
7715
|
* @summary Get Loan Imports
|
|
8227
7716
|
* @request GET:/api/loan-imports
|
|
8228
7717
|
* @secure
|
|
8229
|
-
* @response `200` `LoanImportPaginated`
|
|
7718
|
+
* @response `200` `LoanImportPaginated` OK
|
|
8230
7719
|
*/
|
|
8231
7720
|
getLoanImports: (query?: {
|
|
8232
7721
|
status?: LoanImportStatus;
|
|
@@ -8257,7 +7746,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8257
7746
|
* @summary Get Loan Import
|
|
8258
7747
|
* @request GET:/api/loan-imports/{id}
|
|
8259
7748
|
* @secure
|
|
8260
|
-
* @response `200` `LoanImport`
|
|
7749
|
+
* @response `200` `LoanImport` OK
|
|
8261
7750
|
*/
|
|
8262
7751
|
getLoanImport: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanImport, any, {}>>;
|
|
8263
7752
|
/**
|
|
@@ -8268,7 +7757,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8268
7757
|
* @summary Get Loan Import Logs
|
|
8269
7758
|
* @request GET:/api/loan-imports/{id}/logs
|
|
8270
7759
|
* @secure
|
|
8271
|
-
* @response `200` `LoanImportLogPaginated`
|
|
7760
|
+
* @response `200` `LoanImportLogPaginated` OK
|
|
8272
7761
|
*/
|
|
8273
7762
|
getLoanImportLogs: (id: string, query?: {
|
|
8274
7763
|
/** @format int32 */
|
|
@@ -8286,7 +7775,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8286
7775
|
* @summary Get Invites
|
|
8287
7776
|
* @request GET:/api/loans/{loanId}/invites
|
|
8288
7777
|
* @secure
|
|
8289
|
-
* @response `200` `(Invite)[]`
|
|
7778
|
+
* @response `200` `(Invite)[]` OK
|
|
8290
7779
|
* @response `404` `ProblemDetails` Not Found
|
|
8291
7780
|
*/
|
|
8292
7781
|
getLoanInvites: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Invite[], any, {}>>;
|
|
@@ -8298,7 +7787,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8298
7787
|
* @summary Invite Contacts
|
|
8299
7788
|
* @request POST:/api/loans/{loanId}/invites
|
|
8300
7789
|
* @secure
|
|
8301
|
-
* @response `200` `(Invite)[]`
|
|
7790
|
+
* @response `200` `(Invite)[]` OK
|
|
8302
7791
|
* @response `404` `ProblemDetails` Not Found
|
|
8303
7792
|
*/
|
|
8304
7793
|
inviteLoanContacts: (loanId: string, data: string[], params?: RequestParams) => Promise<AxiosResponse<Invite[], any, {}>>;
|
|
@@ -8310,7 +7799,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8310
7799
|
* @summary Search loan logs
|
|
8311
7800
|
* @request POST:/api/loans/{loanId}/logs/search
|
|
8312
7801
|
* @secure
|
|
8313
|
-
* @response `200` `LoanLogPaginated`
|
|
7802
|
+
* @response `200` `LoanLogPaginated` OK
|
|
8314
7803
|
*/
|
|
8315
7804
|
searchLoanLogs: (loanId: string, data: LoanLogSearchCriteria, query?: {
|
|
8316
7805
|
/** @format int32 */
|
|
@@ -8328,7 +7817,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8328
7817
|
* @summary Get loan log by ID
|
|
8329
7818
|
* @request GET:/api/loans/{loanId}/logs/{loanLogId}
|
|
8330
7819
|
* @secure
|
|
8331
|
-
* @response `200` `LoanLogDetail`
|
|
7820
|
+
* @response `200` `LoanLogDetail` OK
|
|
8332
7821
|
* @response `404` `ProblemDetails` Not Found
|
|
8333
7822
|
*/
|
|
8334
7823
|
getLoanLogById: (loanId: string, loanLogId: string, params?: RequestParams) => Promise<AxiosResponse<LoanLogDetail, any, {}>>;
|
|
@@ -8340,7 +7829,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8340
7829
|
* @summary Get All
|
|
8341
7830
|
* @request GET:/api/loan-officers
|
|
8342
7831
|
* @secure
|
|
8343
|
-
* @response `200` `BranchUserPaginated`
|
|
7832
|
+
* @response `200` `BranchUserPaginated` OK
|
|
8344
7833
|
*/
|
|
8345
7834
|
getLoanOfficers: (query?: {
|
|
8346
7835
|
showAll?: boolean;
|
|
@@ -8359,7 +7848,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8359
7848
|
* @summary Search
|
|
8360
7849
|
* @request POST:/api/loan-officers/search
|
|
8361
7850
|
* @secure
|
|
8362
|
-
* @response `200` `BranchUserPaginated`
|
|
7851
|
+
* @response `200` `BranchUserPaginated` OK
|
|
8363
7852
|
*/
|
|
8364
7853
|
searchLoanOfficers: (data: LoanOfficerSearchCriteria, query?: {
|
|
8365
7854
|
/** @format int32 */
|
|
@@ -8377,7 +7866,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8377
7866
|
* @summary Get by ID
|
|
8378
7867
|
* @request GET:/api/loan-officers/{id}
|
|
8379
7868
|
* @secure
|
|
8380
|
-
* @response `200` `BranchUser`
|
|
7869
|
+
* @response `200` `BranchUser` OK
|
|
8381
7870
|
*/
|
|
8382
7871
|
getLoanOfficer: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any, {}>>;
|
|
8383
7872
|
/**
|
|
@@ -8388,8 +7877,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8388
7877
|
* @summary Create Site Configuration
|
|
8389
7878
|
* @request POST:/api/loan-officers/{loanOfficerId}/site-configurations
|
|
8390
7879
|
* @secure
|
|
8391
|
-
* @response `200` `SiteConfiguration`
|
|
8392
|
-
* @response `422` `UnprocessableEntity`
|
|
7880
|
+
* @response `200` `SiteConfiguration` OK
|
|
7881
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
8393
7882
|
*/
|
|
8394
7883
|
createLoanOfficerSiteConfiguration: (loanOfficerId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
8395
7884
|
/**
|
|
@@ -8400,7 +7889,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8400
7889
|
* @summary Get Site Configuration
|
|
8401
7890
|
* @request GET:/api/loan-officers/{loanOfficerId}/site-configurations/{siteConfigurationId}
|
|
8402
7891
|
* @secure
|
|
8403
|
-
* @response `200` `SiteConfigurationWithInherited`
|
|
7892
|
+
* @response `200` `SiteConfigurationWithInherited` OK
|
|
8404
7893
|
*/
|
|
8405
7894
|
getLoanOfficerSiteConfiguration: (loanOfficerId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any, {}>>;
|
|
8406
7895
|
/**
|
|
@@ -8411,8 +7900,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8411
7900
|
* @summary Replace Site Configuration
|
|
8412
7901
|
* @request PUT:/api/loan-officers/{loanOfficerId}/site-configurations/{siteConfigurationId}
|
|
8413
7902
|
* @secure
|
|
8414
|
-
* @response `200` `SiteConfiguration`
|
|
8415
|
-
* @response `422` `UnprocessableEntity`
|
|
7903
|
+
* @response `200` `SiteConfiguration` OK
|
|
7904
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
8416
7905
|
*/
|
|
8417
7906
|
replaceLoanOfficerSiteConfiguration: (loanOfficerId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
|
|
8418
7907
|
applyToChildren?: boolean;
|
|
@@ -8425,7 +7914,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8425
7914
|
* @summary Search
|
|
8426
7915
|
* @request POST:/api/loans/queue/search
|
|
8427
7916
|
* @secure
|
|
8428
|
-
* @response `200` `LoanQueuePaginated`
|
|
7917
|
+
* @response `200` `LoanQueuePaginated` OK
|
|
8429
7918
|
*/
|
|
8430
7919
|
searchLoanQueue: (data: LoanQueueSearchCriteria, query?: {
|
|
8431
7920
|
/** @format int32 */
|
|
@@ -8443,7 +7932,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8443
7932
|
* @summary Get Loan Queue Record
|
|
8444
7933
|
* @request GET:/api/loans/queue/{loanQueueId}
|
|
8445
7934
|
* @secure
|
|
8446
|
-
* @response `200` `any`
|
|
7935
|
+
* @response `200` `any` OK
|
|
8447
7936
|
* @response `404` `ProblemDetails` Not Found
|
|
8448
7937
|
*/
|
|
8449
7938
|
getLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
@@ -8455,7 +7944,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8455
7944
|
* @summary Replace Loan Queue Record
|
|
8456
7945
|
* @request PUT:/api/loans/queue/{loanQueueId}
|
|
8457
7946
|
* @secure
|
|
8458
|
-
* @response `200` `LoanQueueWithData`
|
|
7947
|
+
* @response `200` `LoanQueueWithData` OK
|
|
8459
7948
|
* @response `404` `ProblemDetails` Not Found
|
|
8460
7949
|
*/
|
|
8461
7950
|
replaceLoanQueue: (loanQueueId: string, data: UpdateLoanQueueRequest, params?: RequestParams) => Promise<AxiosResponse<LoanQueueWithData, any, {}>>;
|
|
@@ -8491,7 +7980,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8491
7980
|
* @summary Get By ID
|
|
8492
7981
|
* @request GET:/api/loans/{loanID}
|
|
8493
7982
|
* @secure
|
|
8494
|
-
* @response `200` `Loan`
|
|
7983
|
+
* @response `200` `Loan` OK
|
|
8495
7984
|
* @response `404` `ProblemDetails` Not Found
|
|
8496
7985
|
*/
|
|
8497
7986
|
getLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any, {}>>;
|
|
@@ -8503,7 +7992,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8503
7992
|
* @summary Get Loans
|
|
8504
7993
|
* @request GET:/api/loans
|
|
8505
7994
|
* @secure
|
|
8506
|
-
* @response `200` `GetApplications`
|
|
7995
|
+
* @response `200` `GetApplications` OK
|
|
8507
7996
|
*/
|
|
8508
7997
|
getLoans: (params?: RequestParams) => Promise<AxiosResponse<GetApplications, any, {}>>;
|
|
8509
7998
|
/**
|
|
@@ -8528,7 +8017,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8528
8017
|
* @summary Search
|
|
8529
8018
|
* @request POST:/api/loans/search
|
|
8530
8019
|
* @secure
|
|
8531
|
-
* @response `200` `LoanListPaginated`
|
|
8020
|
+
* @response `200` `LoanListPaginated` OK
|
|
8532
8021
|
*/
|
|
8533
8022
|
searchLoans: (data: LoanSearchCriteria, query?: {
|
|
8534
8023
|
/** @format int32 */
|
|
@@ -8546,7 +8035,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8546
8035
|
* @summary Update loan fields
|
|
8547
8036
|
* @request PATCH:/api/loans/{loanId}
|
|
8548
8037
|
* @secure
|
|
8549
|
-
* @response `200` `Loan`
|
|
8038
|
+
* @response `200` `Loan` OK
|
|
8550
8039
|
* @response `400` `any` Bad Request
|
|
8551
8040
|
* @response `401` `ProblemDetails` Unauthorized
|
|
8552
8041
|
* @response `403` `ProblemDetails` Forbidden
|
|
@@ -8575,7 +8064,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8575
8064
|
* @summary Import from LOS
|
|
8576
8065
|
* @request POST:/api/loans/import-from-los/{loanId}
|
|
8577
8066
|
* @secure
|
|
8578
|
-
* @response `200` `Loan`
|
|
8067
|
+
* @response `200` `Loan` OK
|
|
8579
8068
|
*/
|
|
8580
8069
|
importLoanFromLos: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<Loan, any, {}>>;
|
|
8581
8070
|
/**
|
|
@@ -8598,7 +8087,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8598
8087
|
* @summary Get outstanding items
|
|
8599
8088
|
* @request GET:/api/loans/{loanId}/outstanding-items
|
|
8600
8089
|
* @secure
|
|
8601
|
-
* @response `200` `LoanOutstandingItems`
|
|
8090
|
+
* @response `200` `LoanOutstandingItems` OK
|
|
8602
8091
|
* @response `401` `ProblemDetails` Unauthorized
|
|
8603
8092
|
* @response `403` `ProblemDetails` Forbidden
|
|
8604
8093
|
*/
|
|
@@ -8611,7 +8100,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8611
8100
|
* @summary Trigger ASO services
|
|
8612
8101
|
* @request POST:/api/loans/{loanId}/aso
|
|
8613
8102
|
* @secure
|
|
8614
|
-
* @response `200` `AutomatedService`
|
|
8103
|
+
* @response `200` `AutomatedService` OK
|
|
8615
8104
|
* @response `400` `ProblemDetails` Bad Request
|
|
8616
8105
|
* @response `404` `ProblemDetails` Not Found
|
|
8617
8106
|
*/
|
|
@@ -8624,7 +8113,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8624
8113
|
* @summary Search
|
|
8625
8114
|
* @request POST:/api/loans/{loanId}/tasks/{userLoanTaskId}/comments/search
|
|
8626
8115
|
* @secure
|
|
8627
|
-
* @response `200` `TaskCommentPaginated`
|
|
8116
|
+
* @response `200` `TaskCommentPaginated` OK
|
|
8628
8117
|
* @response `404` `ProblemDetails` Not Found
|
|
8629
8118
|
*/
|
|
8630
8119
|
searchLoanTaskComments: (loanId: string, userLoanTaskId: string, data: TaskCommentSearchCriteria, query?: {
|
|
@@ -8643,7 +8132,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8643
8132
|
* @summary Get by ID
|
|
8644
8133
|
* @request GET:/api/loans/{loanId}/tasks/{userLoanTaskId}/comments/{id}
|
|
8645
8134
|
* @secure
|
|
8646
|
-
* @response `200` `TaskComment`
|
|
8135
|
+
* @response `200` `TaskComment` OK
|
|
8647
8136
|
* @response `404` `ProblemDetails` Not Found
|
|
8648
8137
|
*/
|
|
8649
8138
|
getLoanTaskComment: (id: string, loanId: string, userLoanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any, {}>>;
|
|
@@ -8667,7 +8156,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8667
8156
|
* @summary Replace
|
|
8668
8157
|
* @request PUT:/api/loans/{loanId}/tasks/{userLoanTaskId}/comments/{commentId}
|
|
8669
8158
|
* @secure
|
|
8670
|
-
* @response `200` `TaskComment`
|
|
8159
|
+
* @response `200` `TaskComment` OK
|
|
8671
8160
|
* @response `404` `ProblemDetails` Not Found
|
|
8672
8161
|
*/
|
|
8673
8162
|
replaceLoanTaskComment: (loanId: string, userLoanTaskId: string, commentId: string, data: TaskCommentRequest, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any, {}>>;
|
|
@@ -8693,7 +8182,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8693
8182
|
* @secure
|
|
8694
8183
|
* @response `201` `UserLoanTask` Created
|
|
8695
8184
|
* @response `404` `ProblemDetails` Not Found
|
|
8696
|
-
* @response `422` `UnprocessableEntity`
|
|
8185
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
8697
8186
|
*/
|
|
8698
8187
|
createLoanTaskDocument: (loanId: string, loanTaskId: string, data: {
|
|
8699
8188
|
name?: string;
|
|
@@ -8712,7 +8201,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8712
8201
|
* @request POST:/api/loans/{loanID}/tasks/{loanTaskId}/documents/bucket
|
|
8713
8202
|
* @secure
|
|
8714
8203
|
* @response `204` `UserLoanTask` No Content
|
|
8715
|
-
* @response `422` `UnprocessableEntity`
|
|
8204
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
8716
8205
|
*/
|
|
8717
8206
|
createLoanTaskDocumentBucket: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
|
|
8718
8207
|
/**
|
|
@@ -8748,7 +8237,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8748
8237
|
* @summary Search
|
|
8749
8238
|
* @request POST:/api/loans/tasks/search
|
|
8750
8239
|
* @secure
|
|
8751
|
-
* @response `200` `UserLoanTaskPaginated`
|
|
8240
|
+
* @response `200` `UserLoanTaskPaginated` OK
|
|
8752
8241
|
*/
|
|
8753
8242
|
searchLoanTasks: (data: LoanTaskSearchRequest, query?: {
|
|
8754
8243
|
/** @format int32 */
|
|
@@ -8766,8 +8255,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8766
8255
|
* @summary Search Summary
|
|
8767
8256
|
* @request POST:/api/loans/tasks/search/summary
|
|
8768
8257
|
* @secure
|
|
8769
|
-
* @response `200` `(LoanTaskStatusSummary)[]`
|
|
8770
|
-
* @response `422` `UnprocessableEntity`
|
|
8258
|
+
* @response `200` `(LoanTaskStatusSummary)[]` OK
|
|
8259
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
8771
8260
|
*/
|
|
8772
8261
|
searchLoanTasksSummary: (data: LoanTaskSearchRequest, params?: RequestParams) => Promise<AxiosResponse<LoanTaskStatusSummary[], any, {}>>;
|
|
8773
8262
|
/**
|
|
@@ -8778,7 +8267,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8778
8267
|
* @summary Get All
|
|
8779
8268
|
* @request GET:/api/loans/{loanID}/tasks
|
|
8780
8269
|
* @secure
|
|
8781
|
-
* @response `200` `(UserLoanTask)[]`
|
|
8270
|
+
* @response `200` `(UserLoanTask)[]` OK
|
|
8782
8271
|
* @response `404` `ProblemDetails` Not Found
|
|
8783
8272
|
*/
|
|
8784
8273
|
getLoanTasks: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any, {}>>;
|
|
@@ -8790,7 +8279,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8790
8279
|
* @summary Get by ID
|
|
8791
8280
|
* @request GET:/api/loans/{loanID}/tasks/{id}
|
|
8792
8281
|
* @secure
|
|
8793
|
-
* @response `200` `UserLoanTask`
|
|
8282
|
+
* @response `200` `UserLoanTask` OK
|
|
8794
8283
|
* @response `404` `ProblemDetails` Not Found
|
|
8795
8284
|
*/
|
|
8796
8285
|
getLoanTask: (id: string, loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
|
|
@@ -8802,7 +8291,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8802
8291
|
* @summary Get Difference
|
|
8803
8292
|
* @request GET:/api/loans/{loanID}/tasks/diff
|
|
8804
8293
|
* @secure
|
|
8805
|
-
* @response `200` `(UserLoanTask)[]`
|
|
8294
|
+
* @response `200` `(UserLoanTask)[]` OK
|
|
8806
8295
|
* @response `404` `ProblemDetails` Not Found
|
|
8807
8296
|
*/
|
|
8808
8297
|
getLoanTaskDifference: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask[], any, {}>>;
|
|
@@ -8838,7 +8327,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8838
8327
|
* @summary Replace
|
|
8839
8328
|
* @request PUT:/api/loans/{loanID}/tasks/{userLoanTaskID}
|
|
8840
8329
|
* @secure
|
|
8841
|
-
* @response `200` `UserLoanTask`
|
|
8330
|
+
* @response `200` `UserLoanTask` OK
|
|
8842
8331
|
* @response `404` `ProblemDetails` Not Found
|
|
8843
8332
|
*/
|
|
8844
8333
|
replaceLoanTask: (loanId: string, userLoanTaskId: string, data: UserLoanTaskUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
|
|
@@ -8862,9 +8351,9 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8862
8351
|
* @summary Create
|
|
8863
8352
|
* @request POST:/api/loans/{loanID}/tasks/{loanTaskId}/verifications
|
|
8864
8353
|
* @secure
|
|
8865
|
-
* @response `200` `UserLoanTask`
|
|
8354
|
+
* @response `200` `UserLoanTask` OK
|
|
8866
8355
|
* @response `404` `ProblemDetails` Not Found
|
|
8867
|
-
* @response `422` `UnprocessableEntity`
|
|
8356
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
8868
8357
|
*/
|
|
8869
8358
|
createLoanTaskVerification: (loanId: string, loanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanTask, any, {}>>;
|
|
8870
8359
|
/**
|
|
@@ -8875,7 +8364,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8875
8364
|
* @summary Get User Loan Consents
|
|
8876
8365
|
* @request GET:/api/loans/{loanId}/users/{userId}/consents
|
|
8877
8366
|
* @secure
|
|
8878
|
-
* @response `200` `(UserLoanConsent)[]`
|
|
8367
|
+
* @response `200` `(UserLoanConsent)[]` OK
|
|
8879
8368
|
* @response `403` `ProblemDetails` Forbidden
|
|
8880
8369
|
*/
|
|
8881
8370
|
getLoanUserConsents: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<UserLoanConsent[], any, {}>>;
|
|
@@ -8887,7 +8376,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8887
8376
|
* @summary Get Loan User
|
|
8888
8377
|
* @request GET:/api/loans/{loanId}/users/{userId}
|
|
8889
8378
|
* @secure
|
|
8890
|
-
* @response `200` `LoanUser`
|
|
8379
|
+
* @response `200` `LoanUser` OK
|
|
8891
8380
|
*/
|
|
8892
8381
|
getLoanUser: (loanId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<LoanUser, any, {}>>;
|
|
8893
8382
|
/**
|
|
@@ -8931,7 +8420,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8931
8420
|
* @summary Search LOS operation tracking
|
|
8932
8421
|
* @request POST:/api/los-operation-tracking/search
|
|
8933
8422
|
* @secure
|
|
8934
|
-
* @response `200` `LosOperationTrackingPaginated`
|
|
8423
|
+
* @response `200` `LosOperationTrackingPaginated` OK
|
|
8935
8424
|
*/
|
|
8936
8425
|
searchLosOperationTracking: (data: LosOperationTrackingSearchCriteria, query?: {
|
|
8937
8426
|
/** @format int32 */
|
|
@@ -8949,7 +8438,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8949
8438
|
* @summary Get All
|
|
8950
8439
|
* @request GET:/api/milestones
|
|
8951
8440
|
* @secure
|
|
8952
|
-
* @response `200` `(MilestoneConfiguration)[]`
|
|
8441
|
+
* @response `200` `(MilestoneConfiguration)[]` OK
|
|
8953
8442
|
*/
|
|
8954
8443
|
getMilestones: (params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration[], any, {}>>;
|
|
8955
8444
|
/**
|
|
@@ -8961,7 +8450,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8961
8450
|
* @request POST:/api/milestones
|
|
8962
8451
|
* @secure
|
|
8963
8452
|
* @response `201` `MilestoneConfiguration` Created
|
|
8964
|
-
* @response `422` `UnprocessableEntity`
|
|
8453
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
8965
8454
|
*/
|
|
8966
8455
|
createMilestone: (data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any, {}>>;
|
|
8967
8456
|
/**
|
|
@@ -8972,7 +8461,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8972
8461
|
* @summary Get By ID
|
|
8973
8462
|
* @request GET:/api/milestones/{id}
|
|
8974
8463
|
* @secure
|
|
8975
|
-
* @response `200` `MilestoneConfiguration`
|
|
8464
|
+
* @response `200` `MilestoneConfiguration` OK
|
|
8976
8465
|
* @response `404` `Error` Not Found
|
|
8977
8466
|
*/
|
|
8978
8467
|
getMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any, {}>>;
|
|
@@ -8984,9 +8473,9 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
8984
8473
|
* @summary Replace
|
|
8985
8474
|
* @request PUT:/api/milestones/{id}
|
|
8986
8475
|
* @secure
|
|
8987
|
-
* @response `200` `MilestoneConfiguration`
|
|
8476
|
+
* @response `200` `MilestoneConfiguration` OK
|
|
8988
8477
|
* @response `404` `Error` Not Found
|
|
8989
|
-
* @response `422` `UnprocessableEntity`
|
|
8478
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
8990
8479
|
*/
|
|
8991
8480
|
replaceMilestone: (id: string, data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any, {}>>;
|
|
8992
8481
|
/**
|
|
@@ -9009,10 +8498,10 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9009
8498
|
* @summary Idempotently seed the test loan officer, site configuration, loan and completed borrower used by mobile app store reviewers.
|
|
9010
8499
|
* @request POST:/api/mobile-app-review/seed
|
|
9011
8500
|
* @secure
|
|
9012
|
-
* @response `200` `MobileAppReviewSeed`
|
|
8501
|
+
* @response `200` `MobileAppReviewSeed` OK
|
|
9013
8502
|
* @response `400` `ProblemDetails` Bad Request
|
|
9014
8503
|
* @response `404` `ProblemDetails` Not Found
|
|
9015
|
-
* @response `422` `ProblemDetails`
|
|
8504
|
+
* @response `422` `ProblemDetails` Unprocessable Content
|
|
9016
8505
|
*/
|
|
9017
8506
|
seedMobileAppReview: (data: MobileAppReviewSeedRequest, params?: RequestParams) => Promise<AxiosResponse<MobileAppReviewSeed, any, {}>>;
|
|
9018
8507
|
/**
|
|
@@ -9023,8 +8512,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9023
8512
|
* @summary Calculate Monthly Payment
|
|
9024
8513
|
* @request POST:/api/mortgage-calculators/monthly-payment
|
|
9025
8514
|
* @secure
|
|
9026
|
-
* @response `200` `MonthlyPaymentCalculator`
|
|
9027
|
-
* @response `422` `ProblemDetails`
|
|
8515
|
+
* @response `200` `MonthlyPaymentCalculator` OK
|
|
8516
|
+
* @response `422` `ProblemDetails` Unprocessable Content
|
|
9028
8517
|
*/
|
|
9029
8518
|
calculateMortgageMonthlyPayment: (data: MonthlyPaymentCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<MonthlyPaymentCalculator, any, {}>>;
|
|
9030
8519
|
/**
|
|
@@ -9035,8 +8524,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9035
8524
|
* @summary Calculate Affordability
|
|
9036
8525
|
* @request POST:/api/mortgage-calculators/affordability
|
|
9037
8526
|
* @secure
|
|
9038
|
-
* @response `200` `AffordabilityCalculator`
|
|
9039
|
-
* @response `422` `ProblemDetails`
|
|
8527
|
+
* @response `200` `AffordabilityCalculator` OK
|
|
8528
|
+
* @response `422` `ProblemDetails` Unprocessable Content
|
|
9040
8529
|
*/
|
|
9041
8530
|
calculateMortgageAffordability: (data: AffordabilityCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<AffordabilityCalculator, any, {}>>;
|
|
9042
8531
|
/**
|
|
@@ -9047,8 +8536,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9047
8536
|
* @summary Calculate Loan Comparison
|
|
9048
8537
|
* @request POST:/api/mortgage-calculators/loan-comparison
|
|
9049
8538
|
* @secure
|
|
9050
|
-
* @response `200` `LoanComparisonCalculator`
|
|
9051
|
-
* @response `422` `ProblemDetails`
|
|
8539
|
+
* @response `200` `LoanComparisonCalculator` OK
|
|
8540
|
+
* @response `422` `ProblemDetails` Unprocessable Content
|
|
9052
8541
|
*/
|
|
9053
8542
|
calculateMortgageLoanComparison: (data: LoanComparisonCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<LoanComparisonCalculator, any, {}>>;
|
|
9054
8543
|
/**
|
|
@@ -9059,8 +8548,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9059
8548
|
* @summary Calculate Refinance
|
|
9060
8549
|
* @request POST:/api/mortgage-calculators/refinance
|
|
9061
8550
|
* @secure
|
|
9062
|
-
* @response `200` `RefinanceCalculator`
|
|
9063
|
-
* @response `422` `ProblemDetails`
|
|
8551
|
+
* @response `200` `RefinanceCalculator` OK
|
|
8552
|
+
* @response `422` `ProblemDetails` Unprocessable Content
|
|
9064
8553
|
*/
|
|
9065
8554
|
calculateMortgageRefinance: (data: RefinanceCalculatorRequest, params?: RequestParams) => Promise<AxiosResponse<RefinanceCalculator, any, {}>>;
|
|
9066
8555
|
/**
|
|
@@ -9071,8 +8560,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9071
8560
|
* @summary Send Notification for Loan
|
|
9072
8561
|
* @request POST:/api/notifications
|
|
9073
8562
|
* @secure
|
|
9074
|
-
* @response `200` `void`
|
|
9075
|
-
* @response `422` `UnprocessableEntity`
|
|
8563
|
+
* @response `200` `void` OK
|
|
8564
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
9076
8565
|
*/
|
|
9077
8566
|
sendNotificationForLoan: (data: SendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9078
8567
|
/**
|
|
@@ -9083,8 +8572,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9083
8572
|
* @summary Send Test Notification for Loan
|
|
9084
8573
|
* @request POST:/api/notifications/test
|
|
9085
8574
|
* @secure
|
|
9086
|
-
* @response `200` `void`
|
|
9087
|
-
* @response `422` `UnprocessableEntity`
|
|
8575
|
+
* @response `200` `void` OK
|
|
8576
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
9088
8577
|
*/
|
|
9089
8578
|
sendTestNotificationForLoan: (data: TestSendNotificationForLoanRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9090
8579
|
/**
|
|
@@ -9095,7 +8584,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9095
8584
|
* @summary Get All
|
|
9096
8585
|
* @request GET:/api/notification-templates
|
|
9097
8586
|
* @secure
|
|
9098
|
-
* @response `200` `(NotificationTemplateBase)[]`
|
|
8587
|
+
* @response `200` `(NotificationTemplateBase)[]` OK
|
|
9099
8588
|
*/
|
|
9100
8589
|
getNotificationTemplates: (query?: {
|
|
9101
8590
|
showAll?: boolean;
|
|
@@ -9109,7 +8598,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9109
8598
|
* @request POST:/api/notification-templates
|
|
9110
8599
|
* @secure
|
|
9111
8600
|
* @response `201` `NotificationTemplate` Created
|
|
9112
|
-
* @response `422` `UnprocessableEntity`
|
|
8601
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
9113
8602
|
*/
|
|
9114
8603
|
createNotificationTemplate: (data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any, {}>>;
|
|
9115
8604
|
/**
|
|
@@ -9120,7 +8609,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9120
8609
|
* @summary Search
|
|
9121
8610
|
* @request POST:/api/notification-templates/search
|
|
9122
8611
|
* @secure
|
|
9123
|
-
* @response `200` `NotificationTemplateBasePaginated`
|
|
8612
|
+
* @response `200` `NotificationTemplateBasePaginated` OK
|
|
9124
8613
|
*/
|
|
9125
8614
|
searchNotificationTemplates: (data: NotificationTemplateSearchCriteria, query?: {
|
|
9126
8615
|
/** @format int32 */
|
|
@@ -9138,7 +8627,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9138
8627
|
* @summary Get by ID
|
|
9139
8628
|
* @request GET:/api/notification-templates/{id}
|
|
9140
8629
|
* @secure
|
|
9141
|
-
* @response `200` `NotificationTemplate`
|
|
8630
|
+
* @response `200` `NotificationTemplate` OK
|
|
9142
8631
|
*/
|
|
9143
8632
|
getNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any, {}>>;
|
|
9144
8633
|
/**
|
|
@@ -9149,8 +8638,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9149
8638
|
* @summary Replace
|
|
9150
8639
|
* @request PUT:/api/notification-templates/{id}
|
|
9151
8640
|
* @secure
|
|
9152
|
-
* @response `200` `NotificationTemplate`
|
|
9153
|
-
* @response `422` `UnprocessableEntity`
|
|
8641
|
+
* @response `200` `NotificationTemplate` OK
|
|
8642
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
9154
8643
|
*/
|
|
9155
8644
|
replaceNotificationTemplate: (id: string, data: NotificationTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any, {}>>;
|
|
9156
8645
|
/**
|
|
@@ -9172,7 +8661,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9172
8661
|
* @summary Restore
|
|
9173
8662
|
* @request POST:/api/notification-templates/{id}/restore
|
|
9174
8663
|
* @secure
|
|
9175
|
-
* @response `200` `NotificationTemplate`
|
|
8664
|
+
* @response `200` `NotificationTemplate` OK
|
|
9176
8665
|
*/
|
|
9177
8666
|
restoreNotificationTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplate, any, {}>>;
|
|
9178
8667
|
/**
|
|
@@ -9183,7 +8672,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9183
8672
|
* @summary Get All
|
|
9184
8673
|
* @request GET:/api/notification-templates/{notificationId}/versions
|
|
9185
8674
|
* @secure
|
|
9186
|
-
* @response `200` `(NotificationTemplateVersion)[]`
|
|
8675
|
+
* @response `200` `(NotificationTemplateVersion)[]` OK
|
|
9187
8676
|
*/
|
|
9188
8677
|
getNotificationTemplateVersions: (notificationId: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion[], any, {}>>;
|
|
9189
8678
|
/**
|
|
@@ -9194,7 +8683,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9194
8683
|
* @summary Create
|
|
9195
8684
|
* @request POST:/api/notification-templates/{notificationId}/versions
|
|
9196
8685
|
* @secure
|
|
9197
|
-
* @response `200` `NotificationTemplateVersion`
|
|
8686
|
+
* @response `200` `NotificationTemplateVersion` OK
|
|
9198
8687
|
*/
|
|
9199
8688
|
createNotificationTemplateVersion: (notificationId: string, data: NotificationTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any, {}>>;
|
|
9200
8689
|
/**
|
|
@@ -9205,7 +8694,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9205
8694
|
* @summary Get by ID
|
|
9206
8695
|
* @request GET:/api/notification-templates/{notificationId}/versions/{id}
|
|
9207
8696
|
* @secure
|
|
9208
|
-
* @response `200` `NotificationTemplateVersion`
|
|
8697
|
+
* @response `200` `NotificationTemplateVersion` OK
|
|
9209
8698
|
*/
|
|
9210
8699
|
getNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any, {}>>;
|
|
9211
8700
|
/**
|
|
@@ -9216,7 +8705,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9216
8705
|
* @summary Replace
|
|
9217
8706
|
* @request PUT:/api/notification-templates/{notificationId}/versions/{id}
|
|
9218
8707
|
* @secure
|
|
9219
|
-
* @response `200` `NotificationTemplateVersion`
|
|
8708
|
+
* @response `200` `NotificationTemplateVersion` OK
|
|
9220
8709
|
*/
|
|
9221
8710
|
replaceNotificationTemplateVersion: (notificationId: string, id: string, data: NotificationTemplateVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any, {}>>;
|
|
9222
8711
|
/**
|
|
@@ -9227,7 +8716,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9227
8716
|
* @summary Delete
|
|
9228
8717
|
* @request DELETE:/api/notification-templates/{notificationId}/versions/{id}
|
|
9229
8718
|
* @secure
|
|
9230
|
-
* @response `200` `NotificationTemplateVersion`
|
|
8719
|
+
* @response `200` `NotificationTemplateVersion` OK
|
|
9231
8720
|
*/
|
|
9232
8721
|
deleteNotificationTemplateVersion: (notificationId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<NotificationTemplateVersion, any, {}>>;
|
|
9233
8722
|
/**
|
|
@@ -9238,7 +8727,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9238
8727
|
* @summary Get All
|
|
9239
8728
|
* @request GET:/api/partners
|
|
9240
8729
|
* @secure
|
|
9241
|
-
* @response `200` `BranchUserPaginated`
|
|
8730
|
+
* @response `200` `BranchUserPaginated` OK
|
|
9242
8731
|
*/
|
|
9243
8732
|
getPartners: (query?: {
|
|
9244
8733
|
showAll?: boolean;
|
|
@@ -9259,7 +8748,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9259
8748
|
* @summary Search
|
|
9260
8749
|
* @request POST:/api/partners/search
|
|
9261
8750
|
* @secure
|
|
9262
|
-
* @response `200` `BranchUserPaginated`
|
|
8751
|
+
* @response `200` `BranchUserPaginated` OK
|
|
9263
8752
|
*/
|
|
9264
8753
|
searchPartners: (data: PartnerSearchCriteria, query?: {
|
|
9265
8754
|
/** @format int32 */
|
|
@@ -9277,7 +8766,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9277
8766
|
* @summary Get by ID
|
|
9278
8767
|
* @request GET:/api/partners/{id}
|
|
9279
8768
|
* @secure
|
|
9280
|
-
* @response `200` `BranchUser`
|
|
8769
|
+
* @response `200` `BranchUser` OK
|
|
9281
8770
|
*/
|
|
9282
8771
|
getPartner: (id: string, params?: RequestParams) => Promise<AxiosResponse<BranchUser, any, {}>>;
|
|
9283
8772
|
/**
|
|
@@ -9288,8 +8777,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9288
8777
|
* @summary Create Site Configuration
|
|
9289
8778
|
* @request POST:/api/partners/{realtorId}/site-configurations
|
|
9290
8779
|
* @secure
|
|
9291
|
-
* @response `200` `SiteConfiguration`
|
|
9292
|
-
* @response `422` `UnprocessableEntity`
|
|
8780
|
+
* @response `200` `SiteConfiguration` OK
|
|
8781
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
9293
8782
|
*/
|
|
9294
8783
|
createPartnerSiteConfiguration: (realtorId: string, data: SiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
9295
8784
|
/**
|
|
@@ -9300,7 +8789,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9300
8789
|
* @summary Get Site Configuration
|
|
9301
8790
|
* @request GET:/api/partners/{realtorId}/site-configurations/{siteConfigurationId}
|
|
9302
8791
|
* @secure
|
|
9303
|
-
* @response `200` `SiteConfigurationWithInherited`
|
|
8792
|
+
* @response `200` `SiteConfigurationWithInherited` OK
|
|
9304
8793
|
*/
|
|
9305
8794
|
getPartnerSiteConfiguration: (realtorId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any, {}>>;
|
|
9306
8795
|
/**
|
|
@@ -9311,8 +8800,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9311
8800
|
* @summary Replace Site Configuration
|
|
9312
8801
|
* @request PUT:/api/partners/{realtorId}/site-configurations/{siteConfigurationId}
|
|
9313
8802
|
* @secure
|
|
9314
|
-
* @response `200` `SiteConfiguration`
|
|
9315
|
-
* @response `422` `UnprocessableEntity`
|
|
8803
|
+
* @response `200` `SiteConfiguration` OK
|
|
8804
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
9316
8805
|
*/
|
|
9317
8806
|
replacePartnerSiteConfiguration: (realtorId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
|
|
9318
8807
|
applyToChildren?: boolean;
|
|
@@ -9325,7 +8814,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9325
8814
|
* @summary Get By ID
|
|
9326
8815
|
* @request GET:/api/site-configurations/{id}
|
|
9327
8816
|
* @secure
|
|
9328
|
-
* @response `200` `SiteConfiguration`
|
|
8817
|
+
* @response `200` `SiteConfiguration` OK
|
|
9329
8818
|
*/
|
|
9330
8819
|
getSiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
9331
8820
|
/**
|
|
@@ -9337,8 +8826,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9337
8826
|
* @request POST:/api/site-configurations/url
|
|
9338
8827
|
* @deprecated
|
|
9339
8828
|
* @secure
|
|
9340
|
-
* @response `200` `SiteConfigurationByUrl`
|
|
9341
|
-
* @response `422` `UnprocessableEntity`
|
|
8829
|
+
* @response `200` `SiteConfigurationByUrl` OK
|
|
8830
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
9342
8831
|
*/
|
|
9343
8832
|
searchSiteConfigurationByUrl: (data: GetSiteConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationByUrl, any, {}>>;
|
|
9344
8833
|
/**
|
|
@@ -9349,8 +8838,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9349
8838
|
* @summary Get By URL
|
|
9350
8839
|
* @request GET:/api/site-configurations
|
|
9351
8840
|
* @secure
|
|
9352
|
-
* @response `200` `SiteConfigurationByUrl`
|
|
9353
|
-
* @response `422` `UnprocessableEntity`
|
|
8841
|
+
* @response `200` `SiteConfigurationByUrl` OK
|
|
8842
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
9354
8843
|
*/
|
|
9355
8844
|
getSiteConfigurationByUrl: (query?: {
|
|
9356
8845
|
url?: string;
|
|
@@ -9364,8 +8853,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9364
8853
|
* @request POST:/api/site-configurations/louser
|
|
9365
8854
|
* @deprecated
|
|
9366
8855
|
* @secure
|
|
9367
|
-
* @response `200` `SiteConfiguration`
|
|
9368
|
-
* @response `422` `UnprocessableEntity`
|
|
8856
|
+
* @response `200` `SiteConfiguration` OK
|
|
8857
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
9369
8858
|
*/
|
|
9370
8859
|
searchSiteConfigurationByLoanOfficerUser: (data: GetSiteConfigurationByLOUserIDRequest, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
9371
8860
|
/**
|
|
@@ -9376,8 +8865,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9376
8865
|
* @summary Get By Loan Officer User
|
|
9377
8866
|
* @request GET:/api/site-configurations/louser/{loUserId}
|
|
9378
8867
|
* @secure
|
|
9379
|
-
* @response `200` `SiteConfiguration`
|
|
9380
|
-
* @response `422` `UnprocessableEntity`
|
|
8868
|
+
* @response `200` `SiteConfiguration` OK
|
|
8869
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
9381
8870
|
*/
|
|
9382
8871
|
getSiteConfigurationByLoanOfficerUser: (loUserId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any, {}>>;
|
|
9383
8872
|
/**
|
|
@@ -9388,8 +8877,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9388
8877
|
* @summary Search
|
|
9389
8878
|
* @request POST:/api/site-configurations/search
|
|
9390
8879
|
* @secure
|
|
9391
|
-
* @response `200` `SiteConfigurationSummaryPaginated`
|
|
9392
|
-
* @response `422` `UnprocessableEntity`
|
|
8880
|
+
* @response `200` `SiteConfigurationSummaryPaginated` OK
|
|
8881
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
9393
8882
|
*/
|
|
9394
8883
|
searchSiteConfigurations: (data: SiteConfigurationSearchCriteria, query?: {
|
|
9395
8884
|
/** @format int32 */
|
|
@@ -9407,7 +8896,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9407
8896
|
* @summary Get Forms by Site Configuration
|
|
9408
8897
|
* @request GET:/api/site-configurations/{id}/forms
|
|
9409
8898
|
* @secure
|
|
9410
|
-
* @response `200` `(AdminAccessGetForms)[]`
|
|
8899
|
+
* @response `200` `(AdminAccessGetForms)[]` OK
|
|
9411
8900
|
*/
|
|
9412
8901
|
getFormsBySiteConfiguration: (id: string, params?: RequestParams) => Promise<AxiosResponse<AdminAccessGetForms[], any, {}>>;
|
|
9413
8902
|
/**
|
|
@@ -9418,7 +8907,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9418
8907
|
* @summary Get Saml Metadata
|
|
9419
8908
|
* @request GET:/api/site-configurations/sso/saml/{ssoIntegration}/metadata
|
|
9420
8909
|
* @secure
|
|
9421
|
-
* @response `200` `File`
|
|
8910
|
+
* @response `200` `File` OK
|
|
9422
8911
|
* @response `404` `ProblemDetails` Not Found
|
|
9423
8912
|
*/
|
|
9424
8913
|
getSamlMetadata: (sSoIntegration: GetSamlMetadataParamsEnum, ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
|
|
@@ -9430,7 +8919,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9430
8919
|
* @summary Create or Replace Saml Metadata
|
|
9431
8920
|
* @request POST:/api/site-configurations/sso/saml/{ssoIntegration}/metadata
|
|
9432
8921
|
* @secure
|
|
9433
|
-
* @response `200` `File`
|
|
8922
|
+
* @response `200` `File` OK
|
|
9434
8923
|
*/
|
|
9435
8924
|
createOrReplaceSamlMetadata: (sSoIntegration: CreateOrReplaceSamlMetadataParamsEnum, ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any, {}>>;
|
|
9436
8925
|
/**
|
|
@@ -9441,7 +8930,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9441
8930
|
* @summary List all site configurations assigned to a workflow
|
|
9442
8931
|
* @request GET:/api/workflows/{workflowId}/site-configurations
|
|
9443
8932
|
* @secure
|
|
9444
|
-
* @response `200` `(SiteConfigurationForm)[]`
|
|
8933
|
+
* @response `200` `(SiteConfigurationForm)[]` OK
|
|
9445
8934
|
*/
|
|
9446
8935
|
getWorkflowSiteConfigurations: (workflowId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm[], any, {}>>;
|
|
9447
8936
|
/**
|
|
@@ -9452,7 +8941,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9452
8941
|
* @summary Get the workflow-site configuration assignment by composite key
|
|
9453
8942
|
* @request GET:/api/workflows/{workflowId}/site-configurations/{siteConfigurationId}
|
|
9454
8943
|
* @secure
|
|
9455
|
-
* @response `200` `SiteConfigurationForm`
|
|
8944
|
+
* @response `200` `SiteConfigurationForm` OK
|
|
9456
8945
|
* @response `404` `ProblemDetails` Not Found
|
|
9457
8946
|
*/
|
|
9458
8947
|
getWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any, {}>>;
|
|
@@ -9466,7 +8955,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9466
8955
|
* @secure
|
|
9467
8956
|
* @response `201` `SiteConfigurationForm` Created
|
|
9468
8957
|
* @response `409` `ProblemDetails` Conflict
|
|
9469
|
-
* @response `422` `UnprocessableEntity`
|
|
8958
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
9470
8959
|
*/
|
|
9471
8960
|
createWorkflowSiteConfiguration: (workflowId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationForm, any, {}>>;
|
|
9472
8961
|
/**
|
|
@@ -9488,7 +8977,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9488
8977
|
* @summary Get By Site Configuration Slug
|
|
9489
8978
|
* @request POST:/api/site-forms
|
|
9490
8979
|
* @secure
|
|
9491
|
-
* @response `200` `GetForm`
|
|
8980
|
+
* @response `200` `GetForm` OK
|
|
9492
8981
|
*/
|
|
9493
8982
|
getFormBySiteConfigurationSlug: (data: GetSiteFormRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any, {}>>;
|
|
9494
8983
|
/**
|
|
@@ -9499,7 +8988,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9499
8988
|
* @summary Get by Users
|
|
9500
8989
|
* @request GET:/api/surveys
|
|
9501
8990
|
* @secure
|
|
9502
|
-
* @response `200` `(SocialSurveyRecord)[]`
|
|
8991
|
+
* @response `200` `(SocialSurveyRecord)[]` OK
|
|
9503
8992
|
*/
|
|
9504
8993
|
getSurveysByUsers: (query?: {
|
|
9505
8994
|
/** @format int32 */
|
|
@@ -9513,8 +9002,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9513
9002
|
* @summary Get by User
|
|
9514
9003
|
* @request POST:/api/surveys
|
|
9515
9004
|
* @secure
|
|
9516
|
-
* @response `200` `(SocialSurveyRecord)[]`
|
|
9517
|
-
* @response `422` `UnprocessableEntity`
|
|
9005
|
+
* @response `200` `(SocialSurveyRecord)[]` OK
|
|
9006
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
9518
9007
|
*/
|
|
9519
9008
|
getSurveysByUser: (data: SurveyEmailRequest, params?: RequestParams) => Promise<AxiosResponse<SocialSurveyRecord[], any, {}>>;
|
|
9520
9009
|
/**
|
|
@@ -9525,7 +9014,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9525
9014
|
* @summary Get All
|
|
9526
9015
|
* @request GET:/api/tasks
|
|
9527
9016
|
* @secure
|
|
9528
|
-
* @response `200` `Task`
|
|
9017
|
+
* @response `200` `Task` OK
|
|
9529
9018
|
* @response `404` `ProblemDetails` Not Found
|
|
9530
9019
|
*/
|
|
9531
9020
|
getTasks: (query?: {
|
|
@@ -9555,7 +9044,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9555
9044
|
* @summary Get By ID
|
|
9556
9045
|
* @request GET:/api/tasks/{id}
|
|
9557
9046
|
* @secure
|
|
9558
|
-
* @response `200` `Task`
|
|
9047
|
+
* @response `200` `Task` OK
|
|
9559
9048
|
* @response `404` `ProblemDetails` Not Found
|
|
9560
9049
|
*/
|
|
9561
9050
|
getTask: (id: string, params?: RequestParams) => Promise<AxiosResponse<Task, any, {}>>;
|
|
@@ -9567,10 +9056,10 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9567
9056
|
* @summary Replace
|
|
9568
9057
|
* @request PUT:/api/tasks/{id}
|
|
9569
9058
|
* @secure
|
|
9570
|
-
* @response `200` `
|
|
9059
|
+
* @response `200` `Task` OK
|
|
9571
9060
|
* @response `404` `ProblemDetails` Not Found
|
|
9572
9061
|
*/
|
|
9573
|
-
replaceTask: (id: string, data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<
|
|
9062
|
+
replaceTask: (id: string, data: TaskRequest, params?: RequestParams) => Promise<AxiosResponse<Task, any, {}>>;
|
|
9574
9063
|
/**
|
|
9575
9064
|
* No description
|
|
9576
9065
|
*
|
|
@@ -9591,7 +9080,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9591
9080
|
* @summary Search
|
|
9592
9081
|
* @request POST:/api/tasks/search
|
|
9593
9082
|
* @secure
|
|
9594
|
-
* @response `200` `TaskPaginated`
|
|
9083
|
+
* @response `200` `TaskPaginated` OK
|
|
9595
9084
|
*/
|
|
9596
9085
|
searchTasks: (data: TaskSearchCriteria, query?: {
|
|
9597
9086
|
/** @format int32 */
|
|
@@ -9608,7 +9097,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9608
9097
|
* @name IntegrationsLosLoansCreate
|
|
9609
9098
|
* @request POST:/api/integrations/los/loans
|
|
9610
9099
|
* @secure
|
|
9611
|
-
* @response `200` `void`
|
|
9100
|
+
* @response `200` `void` OK
|
|
9612
9101
|
*/
|
|
9613
9102
|
integrationsLosLoansCreate: (data: LosLoanCreationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
9614
9103
|
/**
|
|
@@ -9616,9 +9105,10 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9616
9105
|
*
|
|
9617
9106
|
* @tags TheBigPOS
|
|
9618
9107
|
* @name SearchEncompassLogs
|
|
9108
|
+
* @summary Search Encompass Logs
|
|
9619
9109
|
* @request POST:/api/los/encompass/logs/{losId}/search
|
|
9620
9110
|
* @secure
|
|
9621
|
-
* @response `200` `EncompassRequestLogPaginated`
|
|
9111
|
+
* @response `200` `EncompassRequestLogPaginated` OK
|
|
9622
9112
|
*/
|
|
9623
9113
|
searchEncompassLogs: (losId: string, query: {
|
|
9624
9114
|
/** @format int32 */
|
|
@@ -9633,9 +9123,10 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9633
9123
|
*
|
|
9634
9124
|
* @tags TheBigPOS
|
|
9635
9125
|
* @name GetEncompassCredentials
|
|
9126
|
+
* @summary Get Encompass Credentials for the current account
|
|
9636
9127
|
* @request GET:/api/los/encompass/credentials
|
|
9637
9128
|
* @secure
|
|
9638
|
-
* @response `200` `EncompassCredentialsDetail`
|
|
9129
|
+
* @response `200` `EncompassCredentialsDetail` OK
|
|
9639
9130
|
* @response `204` `void` No Content
|
|
9640
9131
|
*/
|
|
9641
9132
|
getEncompassCredentials: (params?: RequestParams) => Promise<AxiosResponse<EncompassCredentialsDetail, any, {}>>;
|
|
@@ -9644,6 +9135,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9644
9135
|
*
|
|
9645
9136
|
* @tags TheBigPOS
|
|
9646
9137
|
* @name CreateEncompassCredentials
|
|
9138
|
+
* @summary Create Encompass Credentials for the current account
|
|
9647
9139
|
* @request POST:/api/los/encompass/credentials
|
|
9648
9140
|
* @secure
|
|
9649
9141
|
* @response `201` `LosCredentials` Created
|
|
@@ -9654,9 +9146,10 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9654
9146
|
*
|
|
9655
9147
|
* @tags TheBigPOS
|
|
9656
9148
|
* @name UpdateEncompassCredentials
|
|
9149
|
+
* @summary Update Encompass Credentials for the current account
|
|
9657
9150
|
* @request PUT:/api/los/encompass/credentials
|
|
9658
9151
|
* @secure
|
|
9659
|
-
* @response `200` `EncompassCredentialsDetail`
|
|
9152
|
+
* @response `200` `EncompassCredentialsDetail` OK
|
|
9660
9153
|
*/
|
|
9661
9154
|
updateEncompassCredentials: (data: EncompassCredentialsRequest, params?: RequestParams) => Promise<AxiosResponse<EncompassCredentialsDetail, any, {}>>;
|
|
9662
9155
|
/**
|
|
@@ -9664,9 +9157,10 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9664
9157
|
*
|
|
9665
9158
|
* @tags TheBigPOS
|
|
9666
9159
|
* @name GetEncompassWebhooks
|
|
9160
|
+
* @summary Get Encompass webhooks filtered by current domain
|
|
9667
9161
|
* @request GET:/api/los/encompass/webhooks
|
|
9668
9162
|
* @secure
|
|
9669
|
-
* @response `200` `(LosWebhook)[]`
|
|
9163
|
+
* @response `200` `(LosWebhook)[]` OK
|
|
9670
9164
|
*/
|
|
9671
9165
|
getEncompassWebhooks: (params?: RequestParams) => Promise<AxiosResponse<LosWebhook[], any, {}>>;
|
|
9672
9166
|
/**
|
|
@@ -9674,6 +9168,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9674
9168
|
*
|
|
9675
9169
|
* @tags TheBigPOS
|
|
9676
9170
|
* @name CreateEncompassWebhook
|
|
9171
|
+
* @summary Register a webhook in Encompass
|
|
9677
9172
|
* @request POST:/api/los/encompass/webhooks
|
|
9678
9173
|
* @secure
|
|
9679
9174
|
* @response `201` `LosWebhook` Created
|
|
@@ -9684,6 +9179,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9684
9179
|
*
|
|
9685
9180
|
* @tags TheBigPOS
|
|
9686
9181
|
* @name DeleteEncompassWebhook
|
|
9182
|
+
* @summary Delete a webhook from Encompass
|
|
9687
9183
|
* @request DELETE:/api/los/encompass/webhooks/{webhookId}
|
|
9688
9184
|
* @secure
|
|
9689
9185
|
* @response `204` `void` No Content
|
|
@@ -9694,9 +9190,10 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9694
9190
|
*
|
|
9695
9191
|
* @tags TheBigPOS
|
|
9696
9192
|
* @name SearchLosSyncs
|
|
9193
|
+
* @summary Search LOS Sync History
|
|
9697
9194
|
* @request POST:/api/los/encompass/syncs/{loanId}/search
|
|
9698
9195
|
* @secure
|
|
9699
|
-
* @response `200` `LosSyncPaginated`
|
|
9196
|
+
* @response `200` `LosSyncPaginated` OK
|
|
9700
9197
|
*/
|
|
9701
9198
|
searchLosSyncs: (loanId: string, query: {
|
|
9702
9199
|
/** @format int32 */
|
|
@@ -9714,7 +9211,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9714
9211
|
* @summary Get usage report by ID
|
|
9715
9212
|
* @request GET:/api/usage-reports/{id}
|
|
9716
9213
|
* @secure
|
|
9717
|
-
* @response `200` `UsageReport`
|
|
9214
|
+
* @response `200` `UsageReport` OK
|
|
9718
9215
|
* @response `404` `ProblemDetails` Not Found
|
|
9719
9216
|
*/
|
|
9720
9217
|
getUsageReportById: (id: string, params?: RequestParams) => Promise<AxiosResponse<UsageReport, any, {}>>;
|
|
@@ -9726,7 +9223,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9726
9223
|
* @summary Get usage reports by month and year
|
|
9727
9224
|
* @request GET:/api/usage-reports
|
|
9728
9225
|
* @secure
|
|
9729
|
-
* @response `200` `(UsageReport)[]`
|
|
9226
|
+
* @response `200` `(UsageReport)[]` OK
|
|
9730
9227
|
* @response `400` `ProblemDetails` Bad Request
|
|
9731
9228
|
*/
|
|
9732
9229
|
getUsageReportsByPeriod: (query?: {
|
|
@@ -9760,7 +9257,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9760
9257
|
* @summary Get usage report execution dashboard with active execution, recent history, and statistics
|
|
9761
9258
|
* @request GET:/api/usage-reports/dashboard
|
|
9762
9259
|
* @secure
|
|
9763
|
-
* @response `200` `UsageReportDashboard`
|
|
9260
|
+
* @response `200` `UsageReportDashboard` OK
|
|
9764
9261
|
*/
|
|
9765
9262
|
getUsageReportDashboard: (params?: RequestParams) => Promise<AxiosResponse<UsageReportDashboard, any, {}>>;
|
|
9766
9263
|
/**
|
|
@@ -9771,7 +9268,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9771
9268
|
* @summary Get usage report execution status by correlation ID
|
|
9772
9269
|
* @request GET:/api/usage-reports/executions/{correlationId}
|
|
9773
9270
|
* @secure
|
|
9774
|
-
* @response `200` `UsageReportExecution`
|
|
9271
|
+
* @response `200` `UsageReportExecution` OK
|
|
9775
9272
|
* @response `404` `ProblemDetails` Not Found
|
|
9776
9273
|
*/
|
|
9777
9274
|
getUsageReportExecution: (correlationId: string, params?: RequestParams) => Promise<AxiosResponse<UsageReportExecution, any, {}>>;
|
|
@@ -9783,7 +9280,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9783
9280
|
* @summary Get usage report executions by month and year
|
|
9784
9281
|
* @request GET:/api/usage-reports/executions
|
|
9785
9282
|
* @secure
|
|
9786
|
-
* @response `200` `(UsageReportExecution)[]`
|
|
9283
|
+
* @response `200` `(UsageReportExecution)[]` OK
|
|
9787
9284
|
* @response `400` `ProblemDetails` Bad Request
|
|
9788
9285
|
*/
|
|
9789
9286
|
getUsageReportExecutionsByPeriod: (query?: {
|
|
@@ -9824,7 +9321,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9824
9321
|
* @summary Get draft users
|
|
9825
9322
|
* @request GET:/api/loans/drafts/{draftId}/users
|
|
9826
9323
|
* @secure
|
|
9827
|
-
* @response `200` `UserDraftPaginated`
|
|
9324
|
+
* @response `200` `UserDraftPaginated` OK
|
|
9828
9325
|
*/
|
|
9829
9326
|
getDraftUsers: (draftId: string, query?: {
|
|
9830
9327
|
/** @format int32 */
|
|
@@ -9842,7 +9339,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9842
9339
|
* @summary Get draft user
|
|
9843
9340
|
* @request GET:/api/loans/drafts/{draftId}/users/{userId}
|
|
9844
9341
|
* @secure
|
|
9845
|
-
* @response `200` `UserDraft`
|
|
9342
|
+
* @response `200` `UserDraft` OK
|
|
9846
9343
|
*/
|
|
9847
9344
|
getDraftUser: (draftId: string, userId: string, params?: RequestParams) => Promise<AxiosResponse<UserDraft, any, {}>>;
|
|
9848
9345
|
/**
|
|
@@ -9853,7 +9350,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9853
9350
|
* @summary Add draft user
|
|
9854
9351
|
* @request POST:/api/loans/drafts/{draftId}/users/{userId}
|
|
9855
9352
|
* @secure
|
|
9856
|
-
* @response `200` `UserDraft`
|
|
9353
|
+
* @response `200` `UserDraft` OK
|
|
9857
9354
|
*/
|
|
9858
9355
|
addDraftUsers: (draftId: string, userId: string, data: CreateUserDraft, params?: RequestParams) => Promise<AxiosResponse<UserDraft, any, {}>>;
|
|
9859
9356
|
/**
|
|
@@ -9875,7 +9372,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9875
9372
|
* @summary Get All
|
|
9876
9373
|
* @request GET:/api/user-groups/{groupId}/scopes
|
|
9877
9374
|
* @secure
|
|
9878
|
-
* @response `200` `(UserGroupAccessScope)[]`
|
|
9375
|
+
* @response `200` `(UserGroupAccessScope)[]` OK
|
|
9879
9376
|
*/
|
|
9880
9377
|
getUserGroupAccessScopes: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope[], any, {}>>;
|
|
9881
9378
|
/**
|
|
@@ -9886,7 +9383,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9886
9383
|
* @summary Create a new scope
|
|
9887
9384
|
* @request POST:/api/user-groups/{groupId}/scopes
|
|
9888
9385
|
* @secure
|
|
9889
|
-
* @response `200` `UserGroupAccessScope`
|
|
9386
|
+
* @response `200` `UserGroupAccessScope` OK
|
|
9890
9387
|
*/
|
|
9891
9388
|
createUserGroupAccessScope: (groupId: string, data: CreateAccessScopeRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroupAccessScope, any, {}>>;
|
|
9892
9389
|
/**
|
|
@@ -9908,7 +9405,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9908
9405
|
* @summary Get All
|
|
9909
9406
|
* @request GET:/api/user-groups/{groupId}/members
|
|
9910
9407
|
* @secure
|
|
9911
|
-
* @response `200` `(UserGroupMember)[]`
|
|
9408
|
+
* @response `200` `(UserGroupMember)[]` OK
|
|
9912
9409
|
*/
|
|
9913
9410
|
getUserGroupMembers: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroupMember[], any, {}>>;
|
|
9914
9411
|
/**
|
|
@@ -9919,7 +9416,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9919
9416
|
* @summary Create User Group Member
|
|
9920
9417
|
* @request POST:/api/user-groups/{groupId}/members
|
|
9921
9418
|
* @secure
|
|
9922
|
-
* @response `200` `UserGroupMember`
|
|
9419
|
+
* @response `200` `UserGroupMember` OK
|
|
9923
9420
|
*/
|
|
9924
9421
|
createUserGroupMember: (groupId: string, data: CreateGroupMemberRequest, query?: {
|
|
9925
9422
|
/** @format uuid */
|
|
@@ -9944,7 +9441,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9944
9441
|
* @summary Get All
|
|
9945
9442
|
* @request POST:/api/user-groups/search
|
|
9946
9443
|
* @secure
|
|
9947
|
-
* @response `200` `UserGroupPaginated`
|
|
9444
|
+
* @response `200` `UserGroupPaginated` OK
|
|
9948
9445
|
*/
|
|
9949
9446
|
searchUserGroups: (query?: {
|
|
9950
9447
|
searchText?: string;
|
|
@@ -9963,7 +9460,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9963
9460
|
* @summary Get User Group by ID
|
|
9964
9461
|
* @request GET:/api/user-groups/{groupId}
|
|
9965
9462
|
* @secure
|
|
9966
|
-
* @response `200` `UserGroup`
|
|
9463
|
+
* @response `200` `UserGroup` OK
|
|
9967
9464
|
*/
|
|
9968
9465
|
getUserGroup: (groupId: string, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any, {}>>;
|
|
9969
9466
|
/**
|
|
@@ -9974,7 +9471,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
9974
9471
|
* @summary Update User Group
|
|
9975
9472
|
* @request PUT:/api/user-groups/{groupId}
|
|
9976
9473
|
* @secure
|
|
9977
|
-
* @response `200` `UserGroup`
|
|
9474
|
+
* @response `200` `UserGroup` OK
|
|
9978
9475
|
*/
|
|
9979
9476
|
updateUserGroup: (groupId: string, data: UpdateUserGroupRequest, params?: RequestParams) => Promise<AxiosResponse<UserGroup, any, {}>>;
|
|
9980
9477
|
/**
|
|
@@ -10009,7 +9506,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10009
9506
|
* @secure
|
|
10010
9507
|
* @response `204` `void` No Content
|
|
10011
9508
|
* @response `404` `Error` Not Found
|
|
10012
|
-
* @response `422` `UnprocessableEntity`
|
|
9509
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
10013
9510
|
*/
|
|
10014
9511
|
requestImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
10015
9512
|
/**
|
|
@@ -10022,7 +9519,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10022
9519
|
* @secure
|
|
10023
9520
|
* @response `204` `void` No Content
|
|
10024
9521
|
* @response `404` `Error` Not Found
|
|
10025
|
-
* @response `422` `UnprocessableEntity`
|
|
9522
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
10026
9523
|
*/
|
|
10027
9524
|
allowImpersonation: (data: AllowImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
10028
9525
|
/**
|
|
@@ -10035,7 +9532,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10035
9532
|
* @secure
|
|
10036
9533
|
* @response `204` `void` No Content
|
|
10037
9534
|
* @response `404` `Error` Not Found
|
|
10038
|
-
* @response `422` `UnprocessableEntity`
|
|
9535
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
10039
9536
|
*/
|
|
10040
9537
|
allowImpersonationWithGuid: (allowToken: string, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
10041
9538
|
/**
|
|
@@ -10047,7 +9544,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10047
9544
|
* @request POST:/api/users/impersonation
|
|
10048
9545
|
* @secure
|
|
10049
9546
|
* @response `204` `void` No Content
|
|
10050
|
-
* @response `422` `UnprocessableEntity`
|
|
9547
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
10051
9548
|
*/
|
|
10052
9549
|
beginImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
10053
9550
|
/**
|
|
@@ -10059,7 +9556,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10059
9556
|
* @request DELETE:/api/users/impersonation
|
|
10060
9557
|
* @secure
|
|
10061
9558
|
* @response `204` `void` No Content
|
|
10062
|
-
* @response `422` `UnprocessableEntity`
|
|
9559
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
10063
9560
|
*/
|
|
10064
9561
|
stopImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
10065
9562
|
/**
|
|
@@ -10072,7 +9569,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10072
9569
|
* @secure
|
|
10073
9570
|
* @response `204` `void` No Content
|
|
10074
9571
|
* @response `404` `Error` Not Found
|
|
10075
|
-
* @response `422` `UnprocessableEntity`
|
|
9572
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
10076
9573
|
*/
|
|
10077
9574
|
forceImpersonation: (data: RequestImpersonationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
10078
9575
|
/**
|
|
@@ -10084,7 +9581,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10084
9581
|
* @request POST:/api/users/impersonation/extend
|
|
10085
9582
|
* @secure
|
|
10086
9583
|
* @response `204` `void` No Content
|
|
10087
|
-
* @response `422` `UnprocessableEntity`
|
|
9584
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
10088
9585
|
*/
|
|
10089
9586
|
extendImpersonation: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
10090
9587
|
/**
|
|
@@ -10096,7 +9593,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10096
9593
|
* @request POST:/api/users/invites
|
|
10097
9594
|
* @secure
|
|
10098
9595
|
* @response `204` `void` No Content
|
|
10099
|
-
* @response `422` `UnprocessableEntity`
|
|
9596
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
10100
9597
|
*/
|
|
10101
9598
|
inviteUser: (data: CreateInviteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
10102
9599
|
/**
|
|
@@ -10120,8 +9617,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10120
9617
|
* @summary Verify
|
|
10121
9618
|
* @request GET:/api/users/invites/{token}/verify
|
|
10122
9619
|
* @secure
|
|
10123
|
-
* @response `200` `Invite`
|
|
10124
|
-
* @response `422` `UnprocessableEntity`
|
|
9620
|
+
* @response `200` `Invite` OK
|
|
9621
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
10125
9622
|
*/
|
|
10126
9623
|
verifyUserInvite: (token: string, params?: RequestParams) => Promise<AxiosResponse<Invite, any, {}>>;
|
|
10127
9624
|
/**
|
|
@@ -10132,7 +9629,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10132
9629
|
* @summary Get All
|
|
10133
9630
|
* @request GET:/api/users/{userID}/relations
|
|
10134
9631
|
* @secure
|
|
10135
|
-
* @response `200` `(UserRelation)[]`
|
|
9632
|
+
* @response `200` `(UserRelation)[]` OK
|
|
10136
9633
|
*/
|
|
10137
9634
|
getUserRelations: (userId: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation[], any, {}>>;
|
|
10138
9635
|
/**
|
|
@@ -10154,7 +9651,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10154
9651
|
* @summary Get by ID
|
|
10155
9652
|
* @request GET:/api/users/{userID}/relations/{id}
|
|
10156
9653
|
* @secure
|
|
10157
|
-
* @response `200` `UserRelation`
|
|
9654
|
+
* @response `200` `UserRelation` OK
|
|
10158
9655
|
*/
|
|
10159
9656
|
getUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation, any, {}>>;
|
|
10160
9657
|
/**
|
|
@@ -10176,7 +9673,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10176
9673
|
* @summary Get All
|
|
10177
9674
|
* @request GET:/api/users
|
|
10178
9675
|
* @secure
|
|
10179
|
-
* @response `200` `(User)[]`
|
|
9676
|
+
* @response `200` `(User)[]` OK
|
|
10180
9677
|
*/
|
|
10181
9678
|
getUsers: (query?: {
|
|
10182
9679
|
/** @format int32 */
|
|
@@ -10194,8 +9691,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10194
9691
|
* @summary Create
|
|
10195
9692
|
* @request POST:/api/users
|
|
10196
9693
|
* @secure
|
|
10197
|
-
* @response `200` `DetailedUser`
|
|
10198
|
-
* @response `422` `UnprocessableEntity`
|
|
9694
|
+
* @response `200` `DetailedUser` OK
|
|
9695
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
10199
9696
|
*/
|
|
10200
9697
|
createUser: (data: CreateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any, {}>>;
|
|
10201
9698
|
/**
|
|
@@ -10206,7 +9703,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10206
9703
|
* @summary Search
|
|
10207
9704
|
* @request POST:/api/users/search
|
|
10208
9705
|
* @secure
|
|
10209
|
-
* @response `200` `UserPaginated`
|
|
9706
|
+
* @response `200` `UserPaginated` OK
|
|
10210
9707
|
*/
|
|
10211
9708
|
searchUsers: (data: UserSearchCriteria, query?: {
|
|
10212
9709
|
/** @format int32 */
|
|
@@ -10224,7 +9721,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10224
9721
|
* @summary Get by Email
|
|
10225
9722
|
* @request POST:/api/users/byemail
|
|
10226
9723
|
* @secure
|
|
10227
|
-
* @response `200` `AdminAccessUser`
|
|
9724
|
+
* @response `200` `AdminAccessUser` OK
|
|
10228
9725
|
*/
|
|
10229
9726
|
getUserByEmail: (data: GetUserByEmailRequest, params?: RequestParams) => Promise<AxiosResponse<AdminAccessUser, any, {}>>;
|
|
10230
9727
|
/**
|
|
@@ -10235,8 +9732,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10235
9732
|
* @summary Sign Up
|
|
10236
9733
|
* @request POST:/api/users/register
|
|
10237
9734
|
* @secure
|
|
10238
|
-
* @response `200` `User`
|
|
10239
|
-
* @response `422` `UnprocessableEntity`
|
|
9735
|
+
* @response `200` `User` OK
|
|
9736
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
10240
9737
|
*/
|
|
10241
9738
|
signUp: (data: RegisterUserRequest, params?: RequestParams) => Promise<AxiosResponse<User, any, {}>>;
|
|
10242
9739
|
/**
|
|
@@ -10247,8 +9744,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10247
9744
|
* @summary Update
|
|
10248
9745
|
* @request PUT:/api/users/{id}
|
|
10249
9746
|
* @secure
|
|
10250
|
-
* @response `200` `DetailedUser`
|
|
10251
|
-
* @response `422` `UnprocessableEntity`
|
|
9747
|
+
* @response `200` `DetailedUser` OK
|
|
9748
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
10252
9749
|
*/
|
|
10253
9750
|
replaceUser: (id: string, data: UpdateUserRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any, {}>>;
|
|
10254
9751
|
/**
|
|
@@ -10285,7 +9782,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10285
9782
|
* @request POST:/api/users/change-password
|
|
10286
9783
|
* @secure
|
|
10287
9784
|
* @response `204` `void` No Content
|
|
10288
|
-
* @response `422` `UnprocessableEntity`
|
|
9785
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
10289
9786
|
*/
|
|
10290
9787
|
changePassword: (data: ChangePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
10291
9788
|
/**
|
|
@@ -10297,7 +9794,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10297
9794
|
* @request POST:/api/users/verify-password
|
|
10298
9795
|
* @secure
|
|
10299
9796
|
* @response `204` `void` No Content
|
|
10300
|
-
* @response `422` `UnprocessableEntity`
|
|
9797
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
10301
9798
|
*/
|
|
10302
9799
|
verifyPassword: (data: VerifyPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
10303
9800
|
/**
|
|
@@ -10309,7 +9806,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10309
9806
|
* @request POST:/api/users/{id}/override-password
|
|
10310
9807
|
* @secure
|
|
10311
9808
|
* @response `204` `void` No Content
|
|
10312
|
-
* @response `422` `UnprocessableEntity`
|
|
9809
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
10313
9810
|
*/
|
|
10314
9811
|
overridePassword: (id: string, data: OverridePasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
10315
9812
|
/**
|
|
@@ -10321,7 +9818,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10321
9818
|
* @request POST:/api/users/forgot-password
|
|
10322
9819
|
* @secure
|
|
10323
9820
|
* @response `204` `void` No Content
|
|
10324
|
-
* @response `422` `UnprocessableEntity`
|
|
9821
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
10325
9822
|
*/
|
|
10326
9823
|
forgotPassword: (data: SendForgotPasswordRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
10327
9824
|
/**
|
|
@@ -10333,7 +9830,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10333
9830
|
* @request POST:/api/users/mobile-phone/send-code
|
|
10334
9831
|
* @secure
|
|
10335
9832
|
* @response `204` `void` No Content
|
|
10336
|
-
* @response `422` `UnprocessableEntity`
|
|
9833
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
10337
9834
|
*/
|
|
10338
9835
|
sendMobilePhoneVerificationCode: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
10339
9836
|
/**
|
|
@@ -10345,7 +9842,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10345
9842
|
* @request PUT:/api/users/mobile-phone/verify-code
|
|
10346
9843
|
* @secure
|
|
10347
9844
|
* @response `204` `void` No Content
|
|
10348
|
-
* @response `422` `UnprocessableEntity`
|
|
9845
|
+
* @response `422` `UnprocessableEntity` Unprocessable Content
|
|
10349
9846
|
*/
|
|
10350
9847
|
verifyUserMobilePhone: (data: UserMobilePhoneVerificationRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
10351
9848
|
/**
|
|
@@ -10356,7 +9853,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10356
9853
|
* @summary Get
|
|
10357
9854
|
* @request GET:/api/users/me
|
|
10358
9855
|
* @secure
|
|
10359
|
-
* @response `200` `ImpersonatedDetailedUser`
|
|
9856
|
+
* @response `200` `ImpersonatedDetailedUser` OK
|
|
10360
9857
|
* @response `401` `ProblemDetails` Unauthorized
|
|
10361
9858
|
*/
|
|
10362
9859
|
getMe: (params?: RequestParams) => Promise<AxiosResponse<ImpersonatedDetailedUser, any, {}>>;
|
|
@@ -10368,7 +9865,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10368
9865
|
* @summary Replace
|
|
10369
9866
|
* @request PUT:/api/users/me
|
|
10370
9867
|
* @secure
|
|
10371
|
-
* @response `200` `DetailedUser`
|
|
9868
|
+
* @response `200` `DetailedUser` OK
|
|
10372
9869
|
*/
|
|
10373
9870
|
replaceMe: (data: UpdateMeRequest, params?: RequestParams) => Promise<AxiosResponse<DetailedUser, any, {}>>;
|
|
10374
9871
|
/**
|
|
@@ -10390,7 +9887,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10390
9887
|
* @summary Get Relationships
|
|
10391
9888
|
* @request GET:/api/users/me/relationships
|
|
10392
9889
|
* @secure
|
|
10393
|
-
* @response `200` `(UserRelationship)[]`
|
|
9890
|
+
* @response `200` `(UserRelationship)[]` OK
|
|
10394
9891
|
*/
|
|
10395
9892
|
getMyRelationships: (params?: RequestParams) => Promise<AxiosResponse<UserRelationship[], any, {}>>;
|
|
10396
9893
|
/**
|
|
@@ -10401,7 +9898,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10401
9898
|
* @summary Get Relationship Prospects
|
|
10402
9899
|
* @request GET:/api/users/me/relationships/prospects
|
|
10403
9900
|
* @secure
|
|
10404
|
-
* @response `200` `(UserRelationshipProspect)[]`
|
|
9901
|
+
* @response `200` `(UserRelationshipProspect)[]` OK
|
|
10405
9902
|
*/
|
|
10406
9903
|
getMyRelationshipProspects: (params?: RequestParams) => Promise<AxiosResponse<UserRelationshipProspect[], any, {}>>;
|
|
10407
9904
|
/**
|
|
@@ -10434,7 +9931,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10434
9931
|
* @summary Get Workflow
|
|
10435
9932
|
* @request POST:/api/workflow
|
|
10436
9933
|
* @secure
|
|
10437
|
-
* @response `200` `GetForm`
|
|
9934
|
+
* @response `200` `GetForm` OK
|
|
10438
9935
|
*/
|
|
10439
9936
|
getWorkflow: (data: GetWorkflowRequest, params?: RequestParams) => Promise<AxiosResponse<GetForm, any, {}>>;
|
|
10440
9937
|
};
|
|
@@ -10446,7 +9943,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
10446
9943
|
* @name LogoutList
|
|
10447
9944
|
* @request GET:/sso/logout
|
|
10448
9945
|
* @secure
|
|
10449
|
-
* @response `200` `void`
|
|
9946
|
+
* @response `200` `void` OK
|
|
10450
9947
|
*/
|
|
10451
9948
|
logoutList: (params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
10452
9949
|
};
|