@matech/thebigpos-sdk 2.12.0-rc5 → 2.12.0-rc6
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/LICENSE +21 -21
- package/README.md +44 -44
- package/dist/index.d.ts +350 -292
- package/dist/index.js +32 -12
- package/dist/index.js.map +1 -1
- package/package.json +40 -40
- package/src/index.ts +463 -374
- package/tsconfig.json +27 -27
package/dist/index.d.ts
CHANGED
|
@@ -39,7 +39,7 @@ export interface Account {
|
|
|
39
39
|
losSettings: LOSSettings;
|
|
40
40
|
asoSettings: ASOSettings;
|
|
41
41
|
}
|
|
42
|
-
export interface
|
|
42
|
+
export interface Action {
|
|
43
43
|
/** @format uuid */
|
|
44
44
|
id: string;
|
|
45
45
|
name: string;
|
|
@@ -127,7 +127,7 @@ export interface AdminAccessUser {
|
|
|
127
127
|
loginsWithoutMFACount: number;
|
|
128
128
|
canImpersonate: boolean;
|
|
129
129
|
loanIDs: string[];
|
|
130
|
-
drafts:
|
|
130
|
+
drafts: Draft[];
|
|
131
131
|
/** @format uuid */
|
|
132
132
|
accountID?: string | null;
|
|
133
133
|
loans: UserLoan[];
|
|
@@ -191,11 +191,11 @@ export interface ApplicationRowData {
|
|
|
191
191
|
subjectPropertyState?: string | null;
|
|
192
192
|
subjectPropertyZip?: string | null;
|
|
193
193
|
loanPurpose?: string | null;
|
|
194
|
-
buyerAgent:
|
|
195
|
-
sellerAgent:
|
|
196
|
-
settlementAgent:
|
|
197
|
-
escrowAgent:
|
|
198
|
-
titleInsuranceAgent:
|
|
194
|
+
buyerAgent: LoanContact;
|
|
195
|
+
sellerAgent: LoanContact;
|
|
196
|
+
settlementAgent: LoanContact;
|
|
197
|
+
escrowAgent: LoanContact;
|
|
198
|
+
titleInsuranceAgent: LoanContact;
|
|
199
199
|
}
|
|
200
200
|
export interface Attachment {
|
|
201
201
|
fileName: string;
|
|
@@ -238,7 +238,7 @@ export interface BranchUser {
|
|
|
238
238
|
loginsWithoutMFACount: number;
|
|
239
239
|
canImpersonate: boolean;
|
|
240
240
|
loanIDs: string[];
|
|
241
|
-
drafts:
|
|
241
|
+
drafts: Draft[];
|
|
242
242
|
/** @format uuid */
|
|
243
243
|
branchID: string;
|
|
244
244
|
branchName: string;
|
|
@@ -247,9 +247,9 @@ export interface BranchUser {
|
|
|
247
247
|
corporateName: string;
|
|
248
248
|
siteConfigurations: SiteConfigurationReduced[];
|
|
249
249
|
}
|
|
250
|
-
export interface
|
|
250
|
+
export interface BranchUserPaginated {
|
|
251
251
|
rows: BranchUser[];
|
|
252
|
-
pagination:
|
|
252
|
+
pagination: Pagination;
|
|
253
253
|
/** @format int64 */
|
|
254
254
|
count: number;
|
|
255
255
|
}
|
|
@@ -291,7 +291,7 @@ export interface ChangePasswordRequest {
|
|
|
291
291
|
/** @minLength 8 */
|
|
292
292
|
newPassword: string;
|
|
293
293
|
}
|
|
294
|
-
export interface
|
|
294
|
+
export interface CommentUserInformation {
|
|
295
295
|
entityId: string;
|
|
296
296
|
entityType: string;
|
|
297
297
|
entityName?: string | null;
|
|
@@ -316,12 +316,12 @@ export interface CompanyAddress {
|
|
|
316
316
|
state: string;
|
|
317
317
|
zip: string;
|
|
318
318
|
}
|
|
319
|
-
export interface
|
|
319
|
+
export interface ConditionComment {
|
|
320
320
|
commentId: string;
|
|
321
321
|
comments: string;
|
|
322
322
|
/** @format int32 */
|
|
323
323
|
forRoleId: number;
|
|
324
|
-
forRole:
|
|
324
|
+
forRole: CommentUserInformation;
|
|
325
325
|
/** @format date-time */
|
|
326
326
|
dateCreated: string;
|
|
327
327
|
createdBy: string;
|
|
@@ -352,14 +352,7 @@ export interface ContactRowData {
|
|
|
352
352
|
cell?: string | null;
|
|
353
353
|
email?: string | null;
|
|
354
354
|
}
|
|
355
|
-
export interface
|
|
356
|
-
/**
|
|
357
|
-
* @minLength 1
|
|
358
|
-
* @maxLength 250
|
|
359
|
-
*/
|
|
360
|
-
name: string;
|
|
361
|
-
}
|
|
362
|
-
export interface CorporateResponse {
|
|
355
|
+
export interface Corporate {
|
|
363
356
|
/** @format date-time */
|
|
364
357
|
createdAt?: string | null;
|
|
365
358
|
/** @format date-time */
|
|
@@ -373,12 +366,19 @@ export interface CorporateResponse {
|
|
|
373
366
|
branchIDs: string[];
|
|
374
367
|
siteConfigurations: SiteConfigurationReduced[];
|
|
375
368
|
}
|
|
376
|
-
export interface
|
|
377
|
-
rows:
|
|
378
|
-
pagination:
|
|
369
|
+
export interface CorporatePaginated {
|
|
370
|
+
rows: Corporate[];
|
|
371
|
+
pagination: Pagination;
|
|
379
372
|
/** @format int64 */
|
|
380
373
|
count: number;
|
|
381
374
|
}
|
|
375
|
+
export interface CorporateRequest {
|
|
376
|
+
/**
|
|
377
|
+
* @minLength 1
|
|
378
|
+
* @maxLength 250
|
|
379
|
+
*/
|
|
380
|
+
name: string;
|
|
381
|
+
}
|
|
382
382
|
export interface CorporateSearchCriteria {
|
|
383
383
|
searchText?: string | null;
|
|
384
384
|
isActive?: boolean | null;
|
|
@@ -502,9 +502,27 @@ export interface DetailedUser {
|
|
|
502
502
|
loginsWithoutMFACount: number;
|
|
503
503
|
canImpersonate: boolean;
|
|
504
504
|
loanIDs: string[];
|
|
505
|
-
drafts:
|
|
505
|
+
drafts: Draft[];
|
|
506
|
+
}
|
|
507
|
+
export interface Device {
|
|
508
|
+
/** @format uuid */
|
|
509
|
+
id: string;
|
|
510
|
+
/** @format uuid */
|
|
511
|
+
accountID: string;
|
|
512
|
+
serialNumber: string;
|
|
513
|
+
apps: any;
|
|
514
|
+
/** @format uuid */
|
|
515
|
+
createdBy: string;
|
|
516
|
+
/** @format uuid */
|
|
517
|
+
updatedBy?: string | null;
|
|
518
|
+
/** @format uuid */
|
|
519
|
+
managedBy?: string | null;
|
|
520
|
+
name?: string | null;
|
|
521
|
+
type?: string | null;
|
|
522
|
+
status?: string | null;
|
|
523
|
+
comments?: string | null;
|
|
506
524
|
}
|
|
507
|
-
export interface
|
|
525
|
+
export interface DeviceAction {
|
|
508
526
|
is_enabled: boolean;
|
|
509
527
|
localized_name?: string | null;
|
|
510
528
|
name?: string | null;
|
|
@@ -515,7 +533,7 @@ export interface DeviceActionResponse {
|
|
|
515
533
|
localized_status_description?: string | null;
|
|
516
534
|
status_description?: string | null;
|
|
517
535
|
}
|
|
518
|
-
export interface
|
|
536
|
+
export interface DeviceMDM {
|
|
519
537
|
managed_status?: string | null;
|
|
520
538
|
device_id?: string | null;
|
|
521
539
|
is_supervised: boolean;
|
|
@@ -537,38 +555,20 @@ export interface DeviceMDMResponse {
|
|
|
537
555
|
platform_type_id?: string | null;
|
|
538
556
|
device_capacity?: string | null;
|
|
539
557
|
imei: string[];
|
|
540
|
-
user:
|
|
541
|
-
actions?:
|
|
558
|
+
user: MdmUser;
|
|
559
|
+
actions?: DeviceAction[] | null;
|
|
542
560
|
}
|
|
543
|
-
export interface
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
561
|
+
export interface DevicePaginated {
|
|
562
|
+
rows: Device[];
|
|
563
|
+
pagination: Pagination;
|
|
564
|
+
/** @format int64 */
|
|
565
|
+
count: number;
|
|
547
566
|
}
|
|
548
|
-
export interface
|
|
549
|
-
/** @format uuid */
|
|
550
|
-
id: string;
|
|
551
|
-
/** @format uuid */
|
|
552
|
-
accountID: string;
|
|
553
|
-
serialNumber: string;
|
|
567
|
+
export interface DeviceRequest {
|
|
554
568
|
apps: any;
|
|
555
|
-
/** @format uuid */
|
|
556
|
-
createdBy: string;
|
|
557
|
-
/** @format uuid */
|
|
558
|
-
updatedBy?: string | null;
|
|
559
|
-
/** @format uuid */
|
|
560
|
-
managedBy?: string | null;
|
|
561
569
|
name?: string | null;
|
|
562
|
-
type?: string | null;
|
|
563
|
-
status?: string | null;
|
|
564
570
|
comments?: string | null;
|
|
565
571
|
}
|
|
566
|
-
export interface DeviceResponsePaginatedResponse {
|
|
567
|
-
rows: DeviceResponse[];
|
|
568
|
-
pagination: PaginationResponse;
|
|
569
|
-
/** @format int64 */
|
|
570
|
-
count: number;
|
|
571
|
-
}
|
|
572
572
|
export interface DocumentData {
|
|
573
573
|
documentID: string;
|
|
574
574
|
/** @format uuid */
|
|
@@ -594,7 +594,7 @@ export interface DocumentDataRequest {
|
|
|
594
594
|
password?: string | null;
|
|
595
595
|
systemGenerated: boolean;
|
|
596
596
|
}
|
|
597
|
-
export interface
|
|
597
|
+
export interface DocumentTemplate {
|
|
598
598
|
/** @format date-time */
|
|
599
599
|
createdAt?: string | null;
|
|
600
600
|
/** @format date-time */
|
|
@@ -612,8 +612,9 @@ export interface DocumentTemplateBaseResponse {
|
|
|
612
612
|
destinationBucket?: string | null;
|
|
613
613
|
isDestinationBucketConfigurable: boolean;
|
|
614
614
|
status: string;
|
|
615
|
+
versions: DocumentTemplateVersionBase[];
|
|
615
616
|
}
|
|
616
|
-
export interface
|
|
617
|
+
export interface DocumentTemplateBase {
|
|
617
618
|
/** @format date-time */
|
|
618
619
|
createdAt?: string | null;
|
|
619
620
|
/** @format date-time */
|
|
@@ -631,9 +632,8 @@ export interface DocumentTemplateResponse {
|
|
|
631
632
|
destinationBucket?: string | null;
|
|
632
633
|
isDestinationBucketConfigurable: boolean;
|
|
633
634
|
status: string;
|
|
634
|
-
versions: DocumentTemplateVersionBaseResponse[];
|
|
635
635
|
}
|
|
636
|
-
export interface
|
|
636
|
+
export interface DocumentTemplateVersion {
|
|
637
637
|
/** @format date-time */
|
|
638
638
|
createdAt: string;
|
|
639
639
|
/** @format date-time */
|
|
@@ -644,17 +644,12 @@ export interface DocumentTemplateVersionBaseResponse {
|
|
|
644
644
|
id: string;
|
|
645
645
|
/** @format int32 */
|
|
646
646
|
version: number;
|
|
647
|
-
name
|
|
648
|
-
isActive: boolean;
|
|
649
|
-
htmlBody: string;
|
|
650
|
-
}
|
|
651
|
-
export interface DocumentTemplateVersionRequest {
|
|
652
|
-
/** @maxLength 255 */
|
|
653
|
-
name?: string | null;
|
|
647
|
+
name: string;
|
|
654
648
|
isActive: boolean;
|
|
655
649
|
htmlBody: string;
|
|
650
|
+
documentTemplate: DocumentTemplateBase;
|
|
656
651
|
}
|
|
657
|
-
export interface
|
|
652
|
+
export interface DocumentTemplateVersionBase {
|
|
658
653
|
/** @format date-time */
|
|
659
654
|
createdAt: string;
|
|
660
655
|
/** @format date-time */
|
|
@@ -665,10 +660,15 @@ export interface DocumentTemplateVersionResponse {
|
|
|
665
660
|
id: string;
|
|
666
661
|
/** @format int32 */
|
|
667
662
|
version: number;
|
|
668
|
-
name
|
|
663
|
+
name?: string | null;
|
|
664
|
+
isActive: boolean;
|
|
665
|
+
htmlBody: string;
|
|
666
|
+
}
|
|
667
|
+
export interface DocumentTemplateVersionRequest {
|
|
668
|
+
/** @maxLength 255 */
|
|
669
|
+
name?: string | null;
|
|
669
670
|
isActive: boolean;
|
|
670
671
|
htmlBody: string;
|
|
671
|
-
documentTemplate: DocumentTemplateBaseResponse;
|
|
672
672
|
}
|
|
673
673
|
export interface DocumentTemplateVersionUpdateRequest {
|
|
674
674
|
/** @maxLength 255 */
|
|
@@ -677,7 +677,7 @@ export interface DocumentTemplateVersionUpdateRequest {
|
|
|
677
677
|
/** @minLength 1 */
|
|
678
678
|
htmlBody: string;
|
|
679
679
|
}
|
|
680
|
-
export interface
|
|
680
|
+
export interface Draft {
|
|
681
681
|
/** @format date-time */
|
|
682
682
|
createdAt: string;
|
|
683
683
|
/** @format date-time */
|
|
@@ -687,20 +687,9 @@ export interface DraftContentResponse {
|
|
|
687
687
|
/** @format uuid */
|
|
688
688
|
id: string;
|
|
689
689
|
customData: any;
|
|
690
|
-
user:
|
|
691
|
-
applicationPayload: any;
|
|
690
|
+
user: UserBase;
|
|
692
691
|
}
|
|
693
|
-
export interface
|
|
694
|
-
rows: DraftContentResponse[];
|
|
695
|
-
pagination: PaginationResponse;
|
|
696
|
-
/** @format int64 */
|
|
697
|
-
count: number;
|
|
698
|
-
}
|
|
699
|
-
export interface DraftRequest {
|
|
700
|
-
applicationPayload: any;
|
|
701
|
-
customData?: any;
|
|
702
|
-
}
|
|
703
|
-
export interface DraftResponse {
|
|
692
|
+
export interface DraftContent {
|
|
704
693
|
/** @format date-time */
|
|
705
694
|
createdAt: string;
|
|
706
695
|
/** @format date-time */
|
|
@@ -710,7 +699,18 @@ export interface DraftResponse {
|
|
|
710
699
|
/** @format uuid */
|
|
711
700
|
id: string;
|
|
712
701
|
customData: any;
|
|
713
|
-
user:
|
|
702
|
+
user: UserBase;
|
|
703
|
+
applicationPayload: any;
|
|
704
|
+
}
|
|
705
|
+
export interface DraftContentPaginated {
|
|
706
|
+
rows: DraftContent[];
|
|
707
|
+
pagination: Pagination;
|
|
708
|
+
/** @format int64 */
|
|
709
|
+
count: number;
|
|
710
|
+
}
|
|
711
|
+
export interface DraftRequest {
|
|
712
|
+
applicationPayload: any;
|
|
713
|
+
customData?: any;
|
|
714
714
|
}
|
|
715
715
|
export interface EConsentInformation {
|
|
716
716
|
status: string;
|
|
@@ -769,7 +769,7 @@ export interface EnabledServices {
|
|
|
769
769
|
export interface Error {
|
|
770
770
|
message: string;
|
|
771
771
|
}
|
|
772
|
-
export interface
|
|
772
|
+
export interface ExtendedLoan {
|
|
773
773
|
loanID: string;
|
|
774
774
|
loanNumber?: string | null;
|
|
775
775
|
/** @format date-time */
|
|
@@ -807,7 +807,7 @@ export interface ExtendedLoanResponse {
|
|
|
807
807
|
propertyAddress: Address;
|
|
808
808
|
borrowerContact: Contact;
|
|
809
809
|
coBorrowerContact: Contact;
|
|
810
|
-
loanLogs:
|
|
810
|
+
loanLogs: LoanLog[];
|
|
811
811
|
isLocked: boolean;
|
|
812
812
|
source?: string | null;
|
|
813
813
|
buyerAgentContact: Contact;
|
|
@@ -817,9 +817,9 @@ export interface ExtendedLoanResponse {
|
|
|
817
817
|
settlementAgentContact: Contact;
|
|
818
818
|
loanProcessorContact: Contact;
|
|
819
819
|
}
|
|
820
|
-
export interface
|
|
821
|
-
rows:
|
|
822
|
-
pagination:
|
|
820
|
+
export interface ExtendedLoanPaginated {
|
|
821
|
+
rows: ExtendedLoan[];
|
|
822
|
+
pagination: Pagination;
|
|
823
823
|
/** @format int64 */
|
|
824
824
|
count: number;
|
|
825
825
|
}
|
|
@@ -833,9 +833,9 @@ export interface File {
|
|
|
833
833
|
account: Account;
|
|
834
834
|
url: string;
|
|
835
835
|
}
|
|
836
|
-
export interface
|
|
836
|
+
export interface FilePaginated {
|
|
837
837
|
rows: File[];
|
|
838
|
-
pagination:
|
|
838
|
+
pagination: Pagination;
|
|
839
839
|
/** @format int64 */
|
|
840
840
|
count: number;
|
|
841
841
|
}
|
|
@@ -910,16 +910,16 @@ export interface FormSubmission {
|
|
|
910
910
|
/** @format uuid */
|
|
911
911
|
listingID?: string | null;
|
|
912
912
|
listing: Listing;
|
|
913
|
-
files:
|
|
913
|
+
files: FormSubmissionFile[];
|
|
914
914
|
}
|
|
915
|
-
export interface
|
|
915
|
+
export interface FormSubmissionFile {
|
|
916
916
|
/** @format uuid */
|
|
917
917
|
id: string;
|
|
918
918
|
file: File;
|
|
919
919
|
}
|
|
920
|
-
export interface
|
|
920
|
+
export interface FormSubmissionPaginated {
|
|
921
921
|
rows: FormSubmission[];
|
|
922
|
-
pagination:
|
|
922
|
+
pagination: Pagination;
|
|
923
923
|
/** @format int64 */
|
|
924
924
|
count: number;
|
|
925
925
|
}
|
|
@@ -1011,7 +1011,7 @@ export interface GenerateDocumentRequest {
|
|
|
1011
1011
|
siteConfigurationID: string;
|
|
1012
1012
|
preview: boolean;
|
|
1013
1013
|
}
|
|
1014
|
-
export interface
|
|
1014
|
+
export interface GetApplications {
|
|
1015
1015
|
applications: ApplicationRowData[];
|
|
1016
1016
|
}
|
|
1017
1017
|
export interface GetBranch {
|
|
@@ -1032,9 +1032,9 @@ export interface GetBranch {
|
|
|
1032
1032
|
type: string;
|
|
1033
1033
|
siteConfigurations: SiteConfigurationReduced[];
|
|
1034
1034
|
}
|
|
1035
|
-
export interface
|
|
1035
|
+
export interface GetBranchPaginated {
|
|
1036
1036
|
rows: GetBranch[];
|
|
1037
|
-
pagination:
|
|
1037
|
+
pagination: Pagination;
|
|
1038
1038
|
/** @format int64 */
|
|
1039
1039
|
count: number;
|
|
1040
1040
|
}
|
|
@@ -1080,9 +1080,13 @@ export interface GetPricingCalculationRequest {
|
|
|
1080
1080
|
/** @format uuid */
|
|
1081
1081
|
siteConfigurationId: string;
|
|
1082
1082
|
}
|
|
1083
|
-
export interface
|
|
1083
|
+
export interface GetPricingForLoanOfficer {
|
|
1084
1084
|
rates: PricingRates[];
|
|
1085
1085
|
}
|
|
1086
|
+
export interface GetReport {
|
|
1087
|
+
loanRecords: LoanRecord[];
|
|
1088
|
+
invalidFieldIDs: string[];
|
|
1089
|
+
}
|
|
1086
1090
|
export interface GetReportRequest {
|
|
1087
1091
|
fields: FusionFieldDisplay[];
|
|
1088
1092
|
filters?: FusionReportFilter[] | null;
|
|
@@ -1092,10 +1096,6 @@ export interface GetReportRequest {
|
|
|
1092
1096
|
/** @format int32 */
|
|
1093
1097
|
limit?: number | null;
|
|
1094
1098
|
}
|
|
1095
|
-
export interface GetReportResponse {
|
|
1096
|
-
loanRecords: LoanRecord[];
|
|
1097
|
-
invalidFieldIDs: string[];
|
|
1098
|
-
}
|
|
1099
1099
|
export interface GetSiteConfigurationByLOUserIDRequest {
|
|
1100
1100
|
loUserID: string;
|
|
1101
1101
|
}
|
|
@@ -1138,7 +1138,7 @@ export interface ImportUserLoanTaskRequest {
|
|
|
1138
1138
|
*/
|
|
1139
1139
|
userID: string;
|
|
1140
1140
|
}
|
|
1141
|
-
export interface
|
|
1141
|
+
export interface Invite {
|
|
1142
1142
|
firstName: string;
|
|
1143
1143
|
lastName: string;
|
|
1144
1144
|
emailAddress: string;
|
|
@@ -1210,9 +1210,9 @@ export interface ListingFile {
|
|
|
1210
1210
|
/** @format int32 */
|
|
1211
1211
|
weight: number;
|
|
1212
1212
|
}
|
|
1213
|
-
export interface
|
|
1213
|
+
export interface ListingPaginated {
|
|
1214
1214
|
rows: Listing[];
|
|
1215
|
-
pagination:
|
|
1215
|
+
pagination: Pagination;
|
|
1216
1216
|
/** @format int64 */
|
|
1217
1217
|
count: number;
|
|
1218
1218
|
}
|
|
@@ -1294,11 +1294,11 @@ export interface Loan {
|
|
|
1294
1294
|
propertyAddress: Address;
|
|
1295
1295
|
borrowerContact: Contact;
|
|
1296
1296
|
coBorrowerContact: Contact;
|
|
1297
|
-
loanLogs:
|
|
1297
|
+
loanLogs: LoanLog[];
|
|
1298
1298
|
isLocked: boolean;
|
|
1299
1299
|
source?: string | null;
|
|
1300
1300
|
}
|
|
1301
|
-
export interface
|
|
1301
|
+
export interface LoanComparison {
|
|
1302
1302
|
loanID: string;
|
|
1303
1303
|
scenarios: LoanComparisonScenario[];
|
|
1304
1304
|
loanLocked: boolean;
|
|
@@ -1334,7 +1334,7 @@ export interface LoanComparisonScenario {
|
|
|
1334
1334
|
lenderCredit?: string | null;
|
|
1335
1335
|
fundingFee?: string | null;
|
|
1336
1336
|
}
|
|
1337
|
-
export interface
|
|
1337
|
+
export interface LoanContact {
|
|
1338
1338
|
name?: string | null;
|
|
1339
1339
|
email?: string | null;
|
|
1340
1340
|
phone?: string | null;
|
|
@@ -1360,11 +1360,10 @@ export interface LoanDocument {
|
|
|
1360
1360
|
}
|
|
1361
1361
|
export interface LoanDraftSearchCriteria {
|
|
1362
1362
|
searchText?: string | null;
|
|
1363
|
-
isActive?: boolean | null;
|
|
1364
1363
|
/** @format uuid */
|
|
1365
1364
|
loanOfficerId?: string | null;
|
|
1366
1365
|
}
|
|
1367
|
-
export interface
|
|
1366
|
+
export interface LoanLog {
|
|
1368
1367
|
/** @format uuid */
|
|
1369
1368
|
id: string;
|
|
1370
1369
|
level: string;
|
|
@@ -1418,28 +1417,12 @@ export interface LoanUser {
|
|
|
1418
1417
|
/** @format date-time */
|
|
1419
1418
|
createdAt: string;
|
|
1420
1419
|
}
|
|
1421
|
-
export interface
|
|
1420
|
+
export interface MdmUser {
|
|
1422
1421
|
user_email?: string | null;
|
|
1423
1422
|
user_id?: string | null;
|
|
1424
1423
|
user_name?: string | null;
|
|
1425
1424
|
}
|
|
1426
|
-
export interface
|
|
1427
|
-
/** @minLength 1 */
|
|
1428
|
-
name: string;
|
|
1429
|
-
description?: string | null;
|
|
1430
|
-
/** @minLength 1 */
|
|
1431
|
-
fieldID: string;
|
|
1432
|
-
/**
|
|
1433
|
-
* @format int32
|
|
1434
|
-
* @min -1000
|
|
1435
|
-
* @max 1000
|
|
1436
|
-
*/
|
|
1437
|
-
weight?: number | null;
|
|
1438
|
-
/** @minLength 1 */
|
|
1439
|
-
loanType: string;
|
|
1440
|
-
notificationsEnabled: boolean;
|
|
1441
|
-
}
|
|
1442
|
-
export interface MilestoneConfigurationResponse {
|
|
1425
|
+
export interface MilestoneConfiguration {
|
|
1443
1426
|
/** @format date-time */
|
|
1444
1427
|
createdAt: string;
|
|
1445
1428
|
/** @format date-time */
|
|
@@ -1458,6 +1441,22 @@ export interface MilestoneConfigurationResponse {
|
|
|
1458
1441
|
loanType: string;
|
|
1459
1442
|
notificationsEnabled: boolean;
|
|
1460
1443
|
}
|
|
1444
|
+
export interface MilestoneConfigurationRequest {
|
|
1445
|
+
/** @minLength 1 */
|
|
1446
|
+
name: string;
|
|
1447
|
+
description?: string | null;
|
|
1448
|
+
/** @minLength 1 */
|
|
1449
|
+
fieldID: string;
|
|
1450
|
+
/**
|
|
1451
|
+
* @format int32
|
|
1452
|
+
* @min -1000
|
|
1453
|
+
* @max 1000
|
|
1454
|
+
*/
|
|
1455
|
+
weight?: number | null;
|
|
1456
|
+
/** @minLength 1 */
|
|
1457
|
+
loanType: string;
|
|
1458
|
+
notificationsEnabled: boolean;
|
|
1459
|
+
}
|
|
1461
1460
|
export interface Module {
|
|
1462
1461
|
/** @format uuid */
|
|
1463
1462
|
id: string;
|
|
@@ -1475,6 +1474,30 @@ export interface ModuleParameterValue {
|
|
|
1475
1474
|
value?: any;
|
|
1476
1475
|
isInherited: boolean;
|
|
1477
1476
|
}
|
|
1477
|
+
export interface NotificationLog {
|
|
1478
|
+
/** @format uuid */
|
|
1479
|
+
id: string;
|
|
1480
|
+
type: NotificationType;
|
|
1481
|
+
to: string;
|
|
1482
|
+
cc?: string | null;
|
|
1483
|
+
subject?: string | null;
|
|
1484
|
+
message: string;
|
|
1485
|
+
notificationTemplate: NotificationTemplate;
|
|
1486
|
+
/** @format date-time */
|
|
1487
|
+
createdAt: string;
|
|
1488
|
+
}
|
|
1489
|
+
export interface NotificationLogPaginated {
|
|
1490
|
+
rows: NotificationLog[];
|
|
1491
|
+
pagination: Pagination;
|
|
1492
|
+
/** @format int64 */
|
|
1493
|
+
count: number;
|
|
1494
|
+
}
|
|
1495
|
+
export interface NotificationLogSearchCriteria {
|
|
1496
|
+
searchText?: string | null;
|
|
1497
|
+
type: NotificationType;
|
|
1498
|
+
to?: string[] | null;
|
|
1499
|
+
cc?: string[] | null;
|
|
1500
|
+
}
|
|
1478
1501
|
export interface NotificationTemplate {
|
|
1479
1502
|
/** @format date-time */
|
|
1480
1503
|
createdAt?: string | null;
|
|
@@ -1591,6 +1614,7 @@ export interface NotificationTemplateVersionUpdateRequest {
|
|
|
1591
1614
|
/** @minLength 1 */
|
|
1592
1615
|
plainBody: string;
|
|
1593
1616
|
}
|
|
1617
|
+
export type NotificationType = "Email" | "Text" | "PushNotification";
|
|
1594
1618
|
export interface Operation {
|
|
1595
1619
|
op?: string;
|
|
1596
1620
|
value?: object | null;
|
|
@@ -1600,7 +1624,7 @@ export interface OverridePasswordRequest {
|
|
|
1600
1624
|
/** @minLength 8 */
|
|
1601
1625
|
password: string;
|
|
1602
1626
|
}
|
|
1603
|
-
export interface
|
|
1627
|
+
export interface Pagination {
|
|
1604
1628
|
/** @format int32 */
|
|
1605
1629
|
pageNumber: number;
|
|
1606
1630
|
/** @format int32 */
|
|
@@ -1619,7 +1643,7 @@ export interface PostLoanComparisonPdfRequest {
|
|
|
1619
1643
|
*/
|
|
1620
1644
|
siteConfigurationID: string;
|
|
1621
1645
|
}
|
|
1622
|
-
export interface
|
|
1646
|
+
export interface PreliminaryCondition {
|
|
1623
1647
|
/** @format uuid */
|
|
1624
1648
|
id: string;
|
|
1625
1649
|
conditionType: string;
|
|
@@ -1638,27 +1662,27 @@ export interface PreliminaryConditionResponse {
|
|
|
1638
1662
|
requestedFrom?: string | null;
|
|
1639
1663
|
/** @format date-time */
|
|
1640
1664
|
createdDate?: string | null;
|
|
1641
|
-
createdBy:
|
|
1665
|
+
createdBy: CommentUserInformation;
|
|
1642
1666
|
isRequested: boolean;
|
|
1643
1667
|
/** @format date-time */
|
|
1644
1668
|
requestedDate?: string | null;
|
|
1645
|
-
requestedBy:
|
|
1669
|
+
requestedBy: CommentUserInformation;
|
|
1646
1670
|
isReceived: boolean;
|
|
1647
1671
|
/** @format date-time */
|
|
1648
1672
|
receivedDate?: string | null;
|
|
1649
|
-
receivedBy:
|
|
1673
|
+
receivedBy: CommentUserInformation;
|
|
1650
1674
|
priorTo?: string | null;
|
|
1651
1675
|
category?: string | null;
|
|
1652
1676
|
isFulfilled: boolean;
|
|
1653
1677
|
/** @format date-time */
|
|
1654
1678
|
fulfilledDate?: string | null;
|
|
1655
|
-
fulfilledBy:
|
|
1656
|
-
comments:
|
|
1679
|
+
fulfilledBy: CommentUserInformation;
|
|
1680
|
+
comments: ConditionComment[];
|
|
1657
1681
|
uwAccess?: string | null;
|
|
1658
1682
|
isRerequested: boolean;
|
|
1659
1683
|
/** @format date-time */
|
|
1660
1684
|
rerequestedDate?: string | null;
|
|
1661
|
-
rerequestedBy:
|
|
1685
|
+
rerequestedBy: CommentUserInformation;
|
|
1662
1686
|
}
|
|
1663
1687
|
export interface PricingRates {
|
|
1664
1688
|
rate: string;
|
|
@@ -1743,39 +1767,7 @@ export interface RequestQueue {
|
|
|
1743
1767
|
errorMessage?: string | null;
|
|
1744
1768
|
status?: string | null;
|
|
1745
1769
|
}
|
|
1746
|
-
export interface
|
|
1747
|
-
/** @minLength 1 */
|
|
1748
|
-
loanID: string;
|
|
1749
|
-
/** @minLength 1 */
|
|
1750
|
-
loanAmount: string;
|
|
1751
|
-
/** @minLength 1 */
|
|
1752
|
-
propertyValue: string;
|
|
1753
|
-
propertyType?: string | null;
|
|
1754
|
-
zipCode?: string | null;
|
|
1755
|
-
county?: string | null;
|
|
1756
|
-
/** @minLength 1 */
|
|
1757
|
-
loanPurpose: string;
|
|
1758
|
-
propertyOccupancy?: string | null;
|
|
1759
|
-
escrow?: string | null;
|
|
1760
|
-
/** @minLength 1 */
|
|
1761
|
-
loanTerm1: string;
|
|
1762
|
-
/** @minLength 1 */
|
|
1763
|
-
loanTerm2: string;
|
|
1764
|
-
creditScore?: string | null;
|
|
1765
|
-
taxes?: string | null;
|
|
1766
|
-
insurance?: string | null;
|
|
1767
|
-
rate?: string | null;
|
|
1768
|
-
/** @minLength 1 */
|
|
1769
|
-
loanType: string;
|
|
1770
|
-
flood?: string | null;
|
|
1771
|
-
hoa?: string | null;
|
|
1772
|
-
miFactor?: string | null;
|
|
1773
|
-
downpaymentAmount?: string | null;
|
|
1774
|
-
/** @minLength 1 */
|
|
1775
|
-
lienType: string;
|
|
1776
|
-
preApprovalNotes?: string | null;
|
|
1777
|
-
}
|
|
1778
|
-
export interface RunLOCalculationResponse {
|
|
1770
|
+
export interface RunLOCalculation {
|
|
1779
1771
|
loanID: string;
|
|
1780
1772
|
loanAmount?: string | null;
|
|
1781
1773
|
totalMortgageAmount?: string | null;
|
|
@@ -1816,6 +1808,43 @@ export interface RunLOCalculationResponse {
|
|
|
1816
1808
|
downPaymentPercent?: string | null;
|
|
1817
1809
|
lienType?: string | null;
|
|
1818
1810
|
}
|
|
1811
|
+
export interface RunLOCalculationRequest {
|
|
1812
|
+
/** @minLength 1 */
|
|
1813
|
+
loanID: string;
|
|
1814
|
+
/** @minLength 1 */
|
|
1815
|
+
loanAmount: string;
|
|
1816
|
+
/** @minLength 1 */
|
|
1817
|
+
propertyValue: string;
|
|
1818
|
+
propertyType?: string | null;
|
|
1819
|
+
zipCode?: string | null;
|
|
1820
|
+
county?: string | null;
|
|
1821
|
+
/** @minLength 1 */
|
|
1822
|
+
loanPurpose: string;
|
|
1823
|
+
propertyOccupancy?: string | null;
|
|
1824
|
+
escrow?: string | null;
|
|
1825
|
+
/** @minLength 1 */
|
|
1826
|
+
loanTerm1: string;
|
|
1827
|
+
/** @minLength 1 */
|
|
1828
|
+
loanTerm2: string;
|
|
1829
|
+
creditScore?: string | null;
|
|
1830
|
+
taxes?: string | null;
|
|
1831
|
+
insurance?: string | null;
|
|
1832
|
+
rate?: string | null;
|
|
1833
|
+
/** @minLength 1 */
|
|
1834
|
+
loanType: string;
|
|
1835
|
+
flood?: string | null;
|
|
1836
|
+
hoa?: string | null;
|
|
1837
|
+
miFactor?: string | null;
|
|
1838
|
+
downpaymentAmount?: string | null;
|
|
1839
|
+
/** @minLength 1 */
|
|
1840
|
+
lienType: string;
|
|
1841
|
+
preApprovalNotes?: string | null;
|
|
1842
|
+
}
|
|
1843
|
+
export interface SSOToken {
|
|
1844
|
+
/** @format uuid */
|
|
1845
|
+
ssoTokenForSignIn: string;
|
|
1846
|
+
ssoRedirectUriForSignIn: string;
|
|
1847
|
+
}
|
|
1819
1848
|
export interface SSOTokenRequest {
|
|
1820
1849
|
/**
|
|
1821
1850
|
* @format email
|
|
@@ -1825,11 +1854,6 @@ export interface SSOTokenRequest {
|
|
|
1825
1854
|
/** @minLength 1 */
|
|
1826
1855
|
redirectUri: string;
|
|
1827
1856
|
}
|
|
1828
|
-
export interface SSOTokenResponse {
|
|
1829
|
-
/** @format uuid */
|
|
1830
|
-
ssoTokenForSignIn: string;
|
|
1831
|
-
ssoRedirectUriForSignIn: string;
|
|
1832
|
-
}
|
|
1833
1857
|
export interface SendForgotPasswordRequest {
|
|
1834
1858
|
/**
|
|
1835
1859
|
* @format email
|
|
@@ -2256,9 +2280,9 @@ export interface SiteConfigurationForm {
|
|
|
2256
2280
|
icon: string;
|
|
2257
2281
|
entityTypes: string[];
|
|
2258
2282
|
}
|
|
2259
|
-
export interface
|
|
2283
|
+
export interface SiteConfigurationPaginated {
|
|
2260
2284
|
rows: SiteConfiguration[];
|
|
2261
|
-
pagination:
|
|
2285
|
+
pagination: Pagination;
|
|
2262
2286
|
/** @format int64 */
|
|
2263
2287
|
count: number;
|
|
2264
2288
|
}
|
|
@@ -2443,7 +2467,7 @@ export interface SiteConfigurationSearchCriteria {
|
|
|
2443
2467
|
isActive?: boolean | null;
|
|
2444
2468
|
entityType?: string | null;
|
|
2445
2469
|
}
|
|
2446
|
-
export interface
|
|
2470
|
+
export interface SiteConfigurationWithInherited {
|
|
2447
2471
|
siteConfiguration: SiteConfiguration;
|
|
2448
2472
|
inheritedSiteConfiguration: SiteConfiguration;
|
|
2449
2473
|
}
|
|
@@ -2494,7 +2518,7 @@ export interface Task {
|
|
|
2494
2518
|
user: User;
|
|
2495
2519
|
isFromLegacySource: boolean;
|
|
2496
2520
|
usedInBusinessRule: boolean;
|
|
2497
|
-
|
|
2521
|
+
willAutocompleteAfterResponse: boolean;
|
|
2498
2522
|
hasAutoPropagationOnAdd: boolean;
|
|
2499
2523
|
}
|
|
2500
2524
|
export interface TaskRequest {
|
|
@@ -2510,7 +2534,7 @@ export interface TaskRequest {
|
|
|
2510
2534
|
*/
|
|
2511
2535
|
daysDueFromApplication?: number | null;
|
|
2512
2536
|
isGlobal: boolean;
|
|
2513
|
-
|
|
2537
|
+
willAutocompleteAfterResponse: boolean;
|
|
2514
2538
|
hasAutoPropagationOnAdd: boolean;
|
|
2515
2539
|
}
|
|
2516
2540
|
export interface TaskSearchCriteria {
|
|
@@ -2535,6 +2559,14 @@ export interface Theme {
|
|
|
2535
2559
|
textColor?: string | null;
|
|
2536
2560
|
iconColor?: string | null;
|
|
2537
2561
|
}
|
|
2562
|
+
export interface Token {
|
|
2563
|
+
token_type: string;
|
|
2564
|
+
/** @format int32 */
|
|
2565
|
+
expires_in: number;
|
|
2566
|
+
access_token: string;
|
|
2567
|
+
refresh_token: string;
|
|
2568
|
+
scope: string;
|
|
2569
|
+
}
|
|
2538
2570
|
export interface TokenChallengeRequest {
|
|
2539
2571
|
/** @format email */
|
|
2540
2572
|
username: string;
|
|
@@ -2558,15 +2590,7 @@ export interface TokenRequest {
|
|
|
2558
2590
|
siteConfigurationId?: string | null;
|
|
2559
2591
|
isSupport: boolean;
|
|
2560
2592
|
}
|
|
2561
|
-
export interface
|
|
2562
|
-
token_type: string;
|
|
2563
|
-
/** @format int32 */
|
|
2564
|
-
expires_in: number;
|
|
2565
|
-
access_token: string;
|
|
2566
|
-
refresh_token: string;
|
|
2567
|
-
scope: string;
|
|
2568
|
-
}
|
|
2569
|
-
export interface UnderwritingConditionResponse {
|
|
2593
|
+
export interface UnderwritingCondition {
|
|
2570
2594
|
/** @format uuid */
|
|
2571
2595
|
id: string;
|
|
2572
2596
|
conditionType: string;
|
|
@@ -2585,34 +2609,34 @@ export interface UnderwritingConditionResponse {
|
|
|
2585
2609
|
requestedFrom?: string | null;
|
|
2586
2610
|
/** @format date-time */
|
|
2587
2611
|
createdDate?: string | null;
|
|
2588
|
-
createdBy:
|
|
2612
|
+
createdBy: CommentUserInformation;
|
|
2589
2613
|
isRequested: boolean;
|
|
2590
2614
|
/** @format date-time */
|
|
2591
2615
|
requestedDate?: string | null;
|
|
2592
|
-
requestedBy:
|
|
2616
|
+
requestedBy: CommentUserInformation;
|
|
2593
2617
|
isReceived: boolean;
|
|
2594
2618
|
/** @format date-time */
|
|
2595
2619
|
receivedDate?: string | null;
|
|
2596
|
-
receivedBy:
|
|
2620
|
+
receivedBy: CommentUserInformation;
|
|
2597
2621
|
priorTo?: string | null;
|
|
2598
2622
|
category?: string | null;
|
|
2599
2623
|
isFulfilled: boolean;
|
|
2600
2624
|
/** @format date-time */
|
|
2601
2625
|
fulfilledDate?: string | null;
|
|
2602
|
-
fulfilledBy:
|
|
2603
|
-
comments:
|
|
2626
|
+
fulfilledBy: CommentUserInformation;
|
|
2627
|
+
comments: ConditionComment[];
|
|
2604
2628
|
allowToClear: boolean;
|
|
2605
2629
|
printExternally: boolean;
|
|
2606
2630
|
printInternally: boolean;
|
|
2607
2631
|
}
|
|
2632
|
+
export interface UnprocessableEntity {
|
|
2633
|
+
message: string;
|
|
2634
|
+
errors: UnprocessableEntityError[];
|
|
2635
|
+
}
|
|
2608
2636
|
export interface UnprocessableEntityError {
|
|
2609
2637
|
error: string;
|
|
2610
2638
|
property: string;
|
|
2611
2639
|
}
|
|
2612
|
-
export interface UnprocessableEntityResponse {
|
|
2613
|
-
message: string;
|
|
2614
|
-
errors: UnprocessableEntityError[];
|
|
2615
|
-
}
|
|
2616
2640
|
export interface UpdateAccountRequest {
|
|
2617
2641
|
name: string;
|
|
2618
2642
|
mfaPreference: string;
|
|
@@ -2719,7 +2743,7 @@ export interface User {
|
|
|
2719
2743
|
export interface UserAccountDeletionRequest {
|
|
2720
2744
|
feedback: string;
|
|
2721
2745
|
}
|
|
2722
|
-
export interface
|
|
2746
|
+
export interface UserBase {
|
|
2723
2747
|
/** @format uuid */
|
|
2724
2748
|
id: string;
|
|
2725
2749
|
role: string;
|
|
@@ -2766,9 +2790,9 @@ export interface UserMobilePhoneVerificationRequest {
|
|
|
2766
2790
|
/** @minLength 1 */
|
|
2767
2791
|
code: string;
|
|
2768
2792
|
}
|
|
2769
|
-
export interface
|
|
2793
|
+
export interface UserPaginated {
|
|
2770
2794
|
rows: User[];
|
|
2771
|
-
pagination:
|
|
2795
|
+
pagination: Pagination;
|
|
2772
2796
|
/** @format int64 */
|
|
2773
2797
|
count: number;
|
|
2774
2798
|
}
|
|
@@ -2782,7 +2806,7 @@ export interface UserPublic {
|
|
|
2782
2806
|
phone?: string | null;
|
|
2783
2807
|
title?: string | null;
|
|
2784
2808
|
}
|
|
2785
|
-
export interface
|
|
2809
|
+
export interface UserRelation {
|
|
2786
2810
|
/**
|
|
2787
2811
|
* @format uuid
|
|
2788
2812
|
* @minLength 1
|
|
@@ -2839,6 +2863,12 @@ export interface UserSearchCriteria {
|
|
|
2839
2863
|
isActive?: boolean | null;
|
|
2840
2864
|
roles?: string[] | null;
|
|
2841
2865
|
}
|
|
2866
|
+
export interface Verification {
|
|
2867
|
+
requestId: string;
|
|
2868
|
+
message?: string | null;
|
|
2869
|
+
status?: string | null;
|
|
2870
|
+
ssoUrls?: Record<string, string>;
|
|
2871
|
+
}
|
|
2842
2872
|
export interface VerificationRequest {
|
|
2843
2873
|
requestID?: string | null;
|
|
2844
2874
|
loanID?: string | null;
|
|
@@ -2852,12 +2882,6 @@ export interface VerificationRequest {
|
|
|
2852
2882
|
/** @format uuid */
|
|
2853
2883
|
loanTaskID?: string | null;
|
|
2854
2884
|
}
|
|
2855
|
-
export interface VerificationResponse {
|
|
2856
|
-
requestId: string;
|
|
2857
|
-
message?: string | null;
|
|
2858
|
-
status?: string | null;
|
|
2859
|
-
ssoUrls?: Record<string, string>;
|
|
2860
|
-
}
|
|
2861
2885
|
export interface VerifyPasswordRequest {
|
|
2862
2886
|
/**
|
|
2863
2887
|
* @format email
|
|
@@ -3059,7 +3083,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
3059
3083
|
* @request POST:/api/refresh-token
|
|
3060
3084
|
* @secure
|
|
3061
3085
|
*/
|
|
3062
|
-
getTokenFromRefreshToken: (data: RefreshTokenRequest, params?: RequestParams) => Promise<AxiosResponse<
|
|
3086
|
+
getTokenFromRefreshToken: (data: RefreshTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any>>;
|
|
3063
3087
|
/**
|
|
3064
3088
|
* No description
|
|
3065
3089
|
*
|
|
@@ -3069,7 +3093,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
3069
3093
|
* @request POST:/api/token
|
|
3070
3094
|
* @secure
|
|
3071
3095
|
*/
|
|
3072
|
-
getToken: (data: TokenRequest, params?: RequestParams) => Promise<AxiosResponse<
|
|
3096
|
+
getToken: (data: TokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any>>;
|
|
3073
3097
|
/**
|
|
3074
3098
|
* No description
|
|
3075
3099
|
*
|
|
@@ -3079,7 +3103,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
3079
3103
|
* @request POST:/api/token/code
|
|
3080
3104
|
* @secure
|
|
3081
3105
|
*/
|
|
3082
|
-
getTokenFromChallengeCode: (data: TokenChallengeRequest, params?: RequestParams) => Promise<AxiosResponse<
|
|
3106
|
+
getTokenFromChallengeCode: (data: TokenChallengeRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any>>;
|
|
3083
3107
|
/**
|
|
3084
3108
|
* No description
|
|
3085
3109
|
*
|
|
@@ -3089,7 +3113,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
3089
3113
|
* @request POST:/api/oauth2/token
|
|
3090
3114
|
* @secure
|
|
3091
3115
|
*/
|
|
3092
|
-
getSystemToken: (data: SystemTokenRequest, params?: RequestParams) => Promise<AxiosResponse<
|
|
3116
|
+
getSystemToken: (data: SystemTokenRequest, params?: RequestParams) => Promise<AxiosResponse<Token, any>>;
|
|
3093
3117
|
/**
|
|
3094
3118
|
* No description
|
|
3095
3119
|
*
|
|
@@ -3099,7 +3123,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
3099
3123
|
* @request POST:/api/token/sso
|
|
3100
3124
|
* @secure
|
|
3101
3125
|
*/
|
|
3102
|
-
getSsoToken: (data: SSOTokenRequest, params?: RequestParams) => Promise<AxiosResponse<
|
|
3126
|
+
getSsoToken: (data: SSOTokenRequest, params?: RequestParams) => Promise<AxiosResponse<SSOToken, any>>;
|
|
3103
3127
|
/**
|
|
3104
3128
|
* No description
|
|
3105
3129
|
*
|
|
@@ -3117,7 +3141,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
3117
3141
|
pageNumber?: number;
|
|
3118
3142
|
sortBy?: string;
|
|
3119
3143
|
sortDirection?: string;
|
|
3120
|
-
}, params?: RequestParams) => Promise<AxiosResponse<
|
|
3144
|
+
}, params?: RequestParams) => Promise<AxiosResponse<GetBranchPaginated, any>>;
|
|
3121
3145
|
/**
|
|
3122
3146
|
* No description
|
|
3123
3147
|
*
|
|
@@ -3144,7 +3168,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
3144
3168
|
pageNumber?: number;
|
|
3145
3169
|
sortBy?: string;
|
|
3146
3170
|
sortDirection?: string;
|
|
3147
|
-
}, params?: RequestParams) => Promise<AxiosResponse<
|
|
3171
|
+
}, params?: RequestParams) => Promise<AxiosResponse<GetBranchPaginated, any>>;
|
|
3148
3172
|
/**
|
|
3149
3173
|
* No description
|
|
3150
3174
|
*
|
|
@@ -3204,7 +3228,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
3204
3228
|
* @request GET:/api/branches/{branchId}/site-configurations/{siteConfigurationId}
|
|
3205
3229
|
* @secure
|
|
3206
3230
|
*/
|
|
3207
|
-
getBranchSiteConfiguration: (branchId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<
|
|
3231
|
+
getBranchSiteConfiguration: (branchId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
|
|
3208
3232
|
/**
|
|
3209
3233
|
* No description
|
|
3210
3234
|
*
|
|
@@ -3306,7 +3330,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
3306
3330
|
pageNumber?: number;
|
|
3307
3331
|
sortBy?: string;
|
|
3308
3332
|
sortDirection?: string;
|
|
3309
|
-
}, params?: RequestParams) => Promise<AxiosResponse<
|
|
3333
|
+
}, params?: RequestParams) => Promise<AxiosResponse<CorporatePaginated, any>>;
|
|
3310
3334
|
/**
|
|
3311
3335
|
* No description
|
|
3312
3336
|
*
|
|
@@ -3316,7 +3340,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
3316
3340
|
* @request POST:/api/corporates
|
|
3317
3341
|
* @secure
|
|
3318
3342
|
*/
|
|
3319
|
-
createCorporate: (data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<
|
|
3343
|
+
createCorporate: (data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any>>;
|
|
3320
3344
|
/**
|
|
3321
3345
|
* No description
|
|
3322
3346
|
*
|
|
@@ -3333,7 +3357,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
3333
3357
|
pageNumber?: number;
|
|
3334
3358
|
sortBy?: string;
|
|
3335
3359
|
sortDirection?: string;
|
|
3336
|
-
}, params?: RequestParams) => Promise<AxiosResponse<
|
|
3360
|
+
}, params?: RequestParams) => Promise<AxiosResponse<CorporatePaginated, any>>;
|
|
3337
3361
|
/**
|
|
3338
3362
|
* No description
|
|
3339
3363
|
*
|
|
@@ -3343,7 +3367,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
3343
3367
|
* @request GET:/api/corporates/{id}
|
|
3344
3368
|
* @secure
|
|
3345
3369
|
*/
|
|
3346
|
-
getCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<
|
|
3370
|
+
getCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<Corporate, any>>;
|
|
3347
3371
|
/**
|
|
3348
3372
|
* No description
|
|
3349
3373
|
*
|
|
@@ -3353,7 +3377,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
3353
3377
|
* @request PUT:/api/corporates/{id}
|
|
3354
3378
|
* @secure
|
|
3355
3379
|
*/
|
|
3356
|
-
replaceCorporate: (id: string, data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<
|
|
3380
|
+
replaceCorporate: (id: string, data: CorporateRequest, params?: RequestParams) => Promise<AxiosResponse<Corporate, any>>;
|
|
3357
3381
|
/**
|
|
3358
3382
|
* No description
|
|
3359
3383
|
*
|
|
@@ -3393,7 +3417,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
3393
3417
|
* @request GET:/api/corporates/{corporateId}/site-configurations/{siteConfigurationId}
|
|
3394
3418
|
* @secure
|
|
3395
3419
|
*/
|
|
3396
|
-
getCorporateSiteConfiguration: (corporateId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<
|
|
3420
|
+
getCorporateSiteConfiguration: (corporateId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
|
|
3397
3421
|
/**
|
|
3398
3422
|
* No description
|
|
3399
3423
|
*
|
|
@@ -3444,7 +3468,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
3444
3468
|
pageNumber?: number;
|
|
3445
3469
|
sortBy?: string;
|
|
3446
3470
|
sortDirection?: string;
|
|
3447
|
-
}, params?: RequestParams) => Promise<AxiosResponse<
|
|
3471
|
+
}, params?: RequestParams) => Promise<AxiosResponse<DevicePaginated, any>>;
|
|
3448
3472
|
/**
|
|
3449
3473
|
* No description
|
|
3450
3474
|
*
|
|
@@ -3454,7 +3478,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
3454
3478
|
* @request GET:/api/devices/{id}
|
|
3455
3479
|
* @secure
|
|
3456
3480
|
*/
|
|
3457
|
-
getDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<
|
|
3481
|
+
getDevice: (id: string, params?: RequestParams) => Promise<AxiosResponse<Device, any>>;
|
|
3458
3482
|
/**
|
|
3459
3483
|
* No description
|
|
3460
3484
|
*
|
|
@@ -3464,7 +3488,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
3464
3488
|
* @request PUT:/api/devices/{id}
|
|
3465
3489
|
* @secure
|
|
3466
3490
|
*/
|
|
3467
|
-
updateDevice: (id: string, data: DeviceRequest, params?: RequestParams) => Promise<AxiosResponse<
|
|
3491
|
+
updateDevice: (id: string, data: DeviceRequest, params?: RequestParams) => Promise<AxiosResponse<Device, any>>;
|
|
3468
3492
|
/**
|
|
3469
3493
|
* No description
|
|
3470
3494
|
*
|
|
@@ -3474,7 +3498,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
3474
3498
|
* @request GET:/api/devices/{sn}/profile
|
|
3475
3499
|
* @secure
|
|
3476
3500
|
*/
|
|
3477
|
-
getDeviceBySerialNumber: (sn: string, params?: RequestParams) => Promise<AxiosResponse<
|
|
3501
|
+
getDeviceBySerialNumber: (sn: string, params?: RequestParams) => Promise<AxiosResponse<DeviceMDM, any>>;
|
|
3478
3502
|
/**
|
|
3479
3503
|
* No description
|
|
3480
3504
|
*
|
|
@@ -3484,7 +3508,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
3484
3508
|
* @request POST:/api/devices/{sn}/actions/{actionName}
|
|
3485
3509
|
* @secure
|
|
3486
3510
|
*/
|
|
3487
|
-
createDeviceActionBySerialNumber: (sn: string, actionName: string, params?: RequestParams) => Promise<AxiosResponse<
|
|
3511
|
+
createDeviceActionBySerialNumber: (sn: string, actionName: string, params?: RequestParams) => Promise<AxiosResponse<Action, any>>;
|
|
3488
3512
|
/**
|
|
3489
3513
|
* No description
|
|
3490
3514
|
*
|
|
@@ -3509,7 +3533,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
3509
3533
|
*/
|
|
3510
3534
|
getDocumentTemplates: (query?: {
|
|
3511
3535
|
showAll?: boolean;
|
|
3512
|
-
}, params?: RequestParams) => Promise<AxiosResponse<
|
|
3536
|
+
}, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase[], any>>;
|
|
3513
3537
|
/**
|
|
3514
3538
|
* No description
|
|
3515
3539
|
*
|
|
@@ -3519,7 +3543,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
3519
3543
|
* @request POST:/api/document-templates
|
|
3520
3544
|
* @secure
|
|
3521
3545
|
*/
|
|
3522
|
-
createDocumentTemplate: (data: CreateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<
|
|
3546
|
+
createDocumentTemplate: (data: CreateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any>>;
|
|
3523
3547
|
/**
|
|
3524
3548
|
* No description
|
|
3525
3549
|
*
|
|
@@ -3534,7 +3558,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
3534
3558
|
showAll?: boolean;
|
|
3535
3559
|
/** @default true */
|
|
3536
3560
|
publishedOnly?: boolean;
|
|
3537
|
-
}, params?: RequestParams) => Promise<AxiosResponse<
|
|
3561
|
+
}, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase[], any>>;
|
|
3538
3562
|
/**
|
|
3539
3563
|
* No description
|
|
3540
3564
|
*
|
|
@@ -3544,7 +3568,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
3544
3568
|
* @request GET:/api/document-templates/{id}
|
|
3545
3569
|
* @secure
|
|
3546
3570
|
*/
|
|
3547
|
-
getDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<
|
|
3571
|
+
getDocumentTemplate: (id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplate, any>>;
|
|
3548
3572
|
/**
|
|
3549
3573
|
* No description
|
|
3550
3574
|
*
|
|
@@ -3554,7 +3578,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
3554
3578
|
* @request PUT:/api/document-templates/{id}
|
|
3555
3579
|
* @secure
|
|
3556
3580
|
*/
|
|
3557
|
-
replaceDocumentTemplate: (id: string, data: UpdateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<
|
|
3581
|
+
replaceDocumentTemplate: (id: string, data: UpdateDocumentTemplateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateBase, any>>;
|
|
3558
3582
|
/**
|
|
3559
3583
|
* No description
|
|
3560
3584
|
*
|
|
@@ -3584,7 +3608,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
3584
3608
|
* @request GET:/api/document-templates/{documentId}/versions
|
|
3585
3609
|
* @secure
|
|
3586
3610
|
*/
|
|
3587
|
-
getDocumentTemplateVersions: (documentId: string, params?: RequestParams) => Promise<AxiosResponse<
|
|
3611
|
+
getDocumentTemplateVersions: (documentId: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion[], any>>;
|
|
3588
3612
|
/**
|
|
3589
3613
|
* No description
|
|
3590
3614
|
*
|
|
@@ -3594,7 +3618,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
3594
3618
|
* @request POST:/api/document-templates/{documentId}/versions
|
|
3595
3619
|
* @secure
|
|
3596
3620
|
*/
|
|
3597
|
-
createDocumentTemplateVersion: (documentId: string, data: DocumentTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<
|
|
3621
|
+
createDocumentTemplateVersion: (documentId: string, data: DocumentTemplateVersionRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
|
|
3598
3622
|
/**
|
|
3599
3623
|
* No description
|
|
3600
3624
|
*
|
|
@@ -3604,7 +3628,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
3604
3628
|
* @request GET:/api/document-templates/{documentId}/versions/{id}
|
|
3605
3629
|
* @secure
|
|
3606
3630
|
*/
|
|
3607
|
-
getDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<
|
|
3631
|
+
getDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
|
|
3608
3632
|
/**
|
|
3609
3633
|
* No description
|
|
3610
3634
|
*
|
|
@@ -3614,7 +3638,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
3614
3638
|
* @request PUT:/api/document-templates/{documentId}/versions/{id}
|
|
3615
3639
|
* @secure
|
|
3616
3640
|
*/
|
|
3617
|
-
replaceDocumentTemplateVersion: (documentId: string, id: string, data: DocumentTemplateVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<
|
|
3641
|
+
replaceDocumentTemplateVersion: (documentId: string, id: string, data: DocumentTemplateVersionUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
|
|
3618
3642
|
/**
|
|
3619
3643
|
* No description
|
|
3620
3644
|
*
|
|
@@ -3624,7 +3648,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
3624
3648
|
* @request DELETE:/api/document-templates/{documentId}/versions/{id}
|
|
3625
3649
|
* @secure
|
|
3626
3650
|
*/
|
|
3627
|
-
deleteDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<
|
|
3651
|
+
deleteDocumentTemplateVersion: (documentId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<DocumentTemplateVersion, any>>;
|
|
3628
3652
|
/**
|
|
3629
3653
|
* No description
|
|
3630
3654
|
*
|
|
@@ -3643,7 +3667,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
3643
3667
|
sortDirection?: string;
|
|
3644
3668
|
/** @default false */
|
|
3645
3669
|
includeDeleted?: boolean;
|
|
3646
|
-
}, params?: RequestParams) => Promise<AxiosResponse<
|
|
3670
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FilePaginated, any>>;
|
|
3647
3671
|
/**
|
|
3648
3672
|
* No description
|
|
3649
3673
|
*
|
|
@@ -3706,7 +3730,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
3706
3730
|
pageNumber?: number;
|
|
3707
3731
|
sortBy?: string;
|
|
3708
3732
|
sortDirection?: string;
|
|
3709
|
-
}, params?: RequestParams) => Promise<AxiosResponse<
|
|
3733
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FilePaginated, any>>;
|
|
3710
3734
|
/**
|
|
3711
3735
|
* No description
|
|
3712
3736
|
*
|
|
@@ -3812,7 +3836,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
3812
3836
|
/** @format binary */
|
|
3813
3837
|
file?: File;
|
|
3814
3838
|
name?: string;
|
|
3815
|
-
}, params?: RequestParams) => Promise<AxiosResponse<
|
|
3839
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionFile, any>>;
|
|
3816
3840
|
/**
|
|
3817
3841
|
* No description
|
|
3818
3842
|
*
|
|
@@ -3852,7 +3876,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
3852
3876
|
pageNumber?: number;
|
|
3853
3877
|
sortBy?: string;
|
|
3854
3878
|
sortDirection?: string;
|
|
3855
|
-
}, params?: RequestParams) => Promise<AxiosResponse<
|
|
3879
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionPaginated, any>>;
|
|
3856
3880
|
/**
|
|
3857
3881
|
* No description
|
|
3858
3882
|
*
|
|
@@ -3911,7 +3935,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
3911
3935
|
pageNumber?: number;
|
|
3912
3936
|
sortBy?: string;
|
|
3913
3937
|
sortDirection?: string;
|
|
3914
|
-
}, params?: RequestParams) => Promise<AxiosResponse<
|
|
3938
|
+
}, params?: RequestParams) => Promise<AxiosResponse<FormSubmissionPaginated, any>>;
|
|
3915
3939
|
/**
|
|
3916
3940
|
* No description
|
|
3917
3941
|
*
|
|
@@ -3991,7 +4015,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
3991
4015
|
* @request POST:/api/los/loan/reports
|
|
3992
4016
|
* @secure
|
|
3993
4017
|
*/
|
|
3994
|
-
getLoansReport: (data: GetReportRequest, params?: RequestParams) => Promise<AxiosResponse<
|
|
4018
|
+
getLoansReport: (data: GetReportRequest, params?: RequestParams) => Promise<AxiosResponse<GetReport, any>>;
|
|
3995
4019
|
/**
|
|
3996
4020
|
* No description
|
|
3997
4021
|
*
|
|
@@ -4057,7 +4081,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
4057
4081
|
* @request GET:/api/los/loan/{loanID}/conditions/preliminary
|
|
4058
4082
|
* @secure
|
|
4059
4083
|
*/
|
|
4060
|
-
getPreliminaryConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<
|
|
4084
|
+
getPreliminaryConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<PreliminaryCondition[], any>>;
|
|
4061
4085
|
/**
|
|
4062
4086
|
* No description
|
|
4063
4087
|
*
|
|
@@ -4067,7 +4091,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
4067
4091
|
* @request GET:/api/los/loan/{loanID}/conditions/underwriting
|
|
4068
4092
|
* @secure
|
|
4069
4093
|
*/
|
|
4070
|
-
getUnderwritingConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<
|
|
4094
|
+
getUnderwritingConditionsForLoan: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<UnderwritingCondition[], any>>;
|
|
4071
4095
|
/**
|
|
4072
4096
|
* No description
|
|
4073
4097
|
*
|
|
@@ -4177,7 +4201,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
4177
4201
|
pageNumber?: number;
|
|
4178
4202
|
sortBy?: string;
|
|
4179
4203
|
sortDirection?: string;
|
|
4180
|
-
}, params?: RequestParams) => Promise<AxiosResponse<
|
|
4204
|
+
}, params?: RequestParams) => Promise<AxiosResponse<ListingPaginated, any>>;
|
|
4181
4205
|
/**
|
|
4182
4206
|
* No description
|
|
4183
4207
|
*
|
|
@@ -4244,7 +4268,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
4244
4268
|
pageNumber?: number;
|
|
4245
4269
|
sortBy?: string;
|
|
4246
4270
|
sortDirection?: string;
|
|
4247
|
-
}, params?: RequestParams) => Promise<AxiosResponse<
|
|
4271
|
+
}, params?: RequestParams) => Promise<AxiosResponse<ListingPaginated, any>>;
|
|
4248
4272
|
/**
|
|
4249
4273
|
* No description
|
|
4250
4274
|
*
|
|
@@ -4287,7 +4311,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
4287
4311
|
* @request GET:/api/loans/{loanID}/calculators/loan-calculator
|
|
4288
4312
|
* @secure
|
|
4289
4313
|
*/
|
|
4290
|
-
getLoanCalculator: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<
|
|
4314
|
+
getLoanCalculator: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any>>;
|
|
4291
4315
|
/**
|
|
4292
4316
|
* No description
|
|
4293
4317
|
*
|
|
@@ -4297,7 +4321,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
4297
4321
|
* @request POST:/api/loans/{loanID}/calculators/loan-calculator
|
|
4298
4322
|
* @secure
|
|
4299
4323
|
*/
|
|
4300
|
-
runLoanCalculator: (loanId: string, data: RunLOCalculationRequest, params?: RequestParams) => Promise<AxiosResponse<
|
|
4324
|
+
runLoanCalculator: (loanId: string, data: RunLOCalculationRequest, params?: RequestParams) => Promise<AxiosResponse<RunLOCalculation, any>>;
|
|
4301
4325
|
/**
|
|
4302
4326
|
* No description
|
|
4303
4327
|
*
|
|
@@ -4307,7 +4331,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
4307
4331
|
* @request GET:/api/loans/{loanID}/loan-comparison
|
|
4308
4332
|
* @secure
|
|
4309
4333
|
*/
|
|
4310
|
-
getLoanComparisons: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<
|
|
4334
|
+
getLoanComparisons: (loanId: string, params?: RequestParams) => Promise<AxiosResponse<LoanComparison, any>>;
|
|
4311
4335
|
/**
|
|
4312
4336
|
* No description
|
|
4313
4337
|
*
|
|
@@ -4415,7 +4439,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
4415
4439
|
* @request POST:/api/loans/drafts
|
|
4416
4440
|
* @secure
|
|
4417
4441
|
*/
|
|
4418
|
-
createLoanDraft: (data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<
|
|
4442
|
+
createLoanDraft: (data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
|
|
4419
4443
|
/**
|
|
4420
4444
|
* No description
|
|
4421
4445
|
*
|
|
@@ -4425,24 +4449,17 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
4425
4449
|
* @request GET:/api/loans/drafts
|
|
4426
4450
|
* @secure
|
|
4427
4451
|
*/
|
|
4428
|
-
getLoanDrafts: (params?: RequestParams) => Promise<AxiosResponse<
|
|
4452
|
+
getLoanDrafts: (params?: RequestParams) => Promise<AxiosResponse<DraftContent[], any>>;
|
|
4429
4453
|
/**
|
|
4430
4454
|
* No description
|
|
4431
4455
|
*
|
|
4432
4456
|
* @tags LoanDrafts
|
|
4433
|
-
* @name
|
|
4434
|
-
* @summary
|
|
4435
|
-
* @request
|
|
4457
|
+
* @name GetLoanDraft
|
|
4458
|
+
* @summary Get by ID
|
|
4459
|
+
* @request GET:/api/loans/drafts/{draftId}
|
|
4436
4460
|
* @secure
|
|
4437
4461
|
*/
|
|
4438
|
-
|
|
4439
|
-
/** @format int32 */
|
|
4440
|
-
pageSize?: number;
|
|
4441
|
-
/** @format int32 */
|
|
4442
|
-
pageNumber?: number;
|
|
4443
|
-
sortBy?: string;
|
|
4444
|
-
sortDirection?: string;
|
|
4445
|
-
}, params?: RequestParams) => Promise<AxiosResponse<DraftContentResponsePaginatedResponse, any>>;
|
|
4462
|
+
getLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<DraftContent, any>>;
|
|
4446
4463
|
/**
|
|
4447
4464
|
* No description
|
|
4448
4465
|
*
|
|
@@ -4452,27 +4469,34 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
4452
4469
|
* @request PUT:/api/loans/drafts/{draftId}
|
|
4453
4470
|
* @secure
|
|
4454
4471
|
*/
|
|
4455
|
-
replaceLoanDraft: (draftId: string, data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<
|
|
4472
|
+
replaceLoanDraft: (draftId: string, data: DraftRequest, params?: RequestParams) => Promise<AxiosResponse<Draft, any>>;
|
|
4456
4473
|
/**
|
|
4457
4474
|
* No description
|
|
4458
4475
|
*
|
|
4459
4476
|
* @tags LoanDrafts
|
|
4460
|
-
* @name
|
|
4461
|
-
* @summary
|
|
4462
|
-
* @request
|
|
4477
|
+
* @name DeleteLoanDraft
|
|
4478
|
+
* @summary Delete
|
|
4479
|
+
* @request DELETE:/api/loans/drafts/{draftId}
|
|
4463
4480
|
* @secure
|
|
4464
4481
|
*/
|
|
4465
|
-
|
|
4482
|
+
deleteLoanDraft: (draftId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
4466
4483
|
/**
|
|
4467
4484
|
* No description
|
|
4468
4485
|
*
|
|
4469
4486
|
* @tags LoanDrafts
|
|
4470
|
-
* @name
|
|
4471
|
-
* @summary
|
|
4472
|
-
* @request
|
|
4487
|
+
* @name SearchLoanDrafts
|
|
4488
|
+
* @summary Search
|
|
4489
|
+
* @request POST:/api/loans/drafts/search
|
|
4473
4490
|
* @secure
|
|
4474
4491
|
*/
|
|
4475
|
-
|
|
4492
|
+
searchLoanDrafts: (data: LoanDraftSearchCriteria, query?: {
|
|
4493
|
+
/** @format int32 */
|
|
4494
|
+
pageSize?: number;
|
|
4495
|
+
/** @format int32 */
|
|
4496
|
+
pageNumber?: number;
|
|
4497
|
+
sortBy?: string;
|
|
4498
|
+
sortDirection?: string;
|
|
4499
|
+
}, params?: RequestParams) => Promise<AxiosResponse<DraftContentPaginated, any>>;
|
|
4476
4500
|
/**
|
|
4477
4501
|
* No description
|
|
4478
4502
|
*
|
|
@@ -4490,7 +4514,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
4490
4514
|
pageNumber?: number;
|
|
4491
4515
|
sortBy?: string;
|
|
4492
4516
|
sortDirection?: string;
|
|
4493
|
-
}, params?: RequestParams) => Promise<AxiosResponse<
|
|
4517
|
+
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any>>;
|
|
4494
4518
|
/**
|
|
4495
4519
|
* No description
|
|
4496
4520
|
*
|
|
@@ -4507,7 +4531,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
4507
4531
|
pageNumber?: number;
|
|
4508
4532
|
sortBy?: string;
|
|
4509
4533
|
sortDirection?: string;
|
|
4510
|
-
}, params?: RequestParams) => Promise<AxiosResponse<
|
|
4534
|
+
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any>>;
|
|
4511
4535
|
/**
|
|
4512
4536
|
* No description
|
|
4513
4537
|
*
|
|
@@ -4527,7 +4551,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
4527
4551
|
* @request GET:/api/loan-officers/applications
|
|
4528
4552
|
* @secure
|
|
4529
4553
|
*/
|
|
4530
|
-
getLoanOfficerLoans: (params?: RequestParams) => Promise<AxiosResponse<
|
|
4554
|
+
getLoanOfficerLoans: (params?: RequestParams) => Promise<AxiosResponse<GetApplications, any>>;
|
|
4531
4555
|
/**
|
|
4532
4556
|
* No description
|
|
4533
4557
|
*
|
|
@@ -4547,7 +4571,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
4547
4571
|
* @request GET:/api/loan-officers/{loanOfficerId}/site-configurations/{siteConfigurationId}
|
|
4548
4572
|
* @secure
|
|
4549
4573
|
*/
|
|
4550
|
-
getLoanOfficerSiteConfiguration: (loanOfficerId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<
|
|
4574
|
+
getLoanOfficerSiteConfiguration: (loanOfficerId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
|
|
4551
4575
|
/**
|
|
4552
4576
|
* No description
|
|
4553
4577
|
*
|
|
@@ -4569,7 +4593,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
4569
4593
|
* @request GET:/api/loans
|
|
4570
4594
|
* @secure
|
|
4571
4595
|
*/
|
|
4572
|
-
getLoans: (params?: RequestParams) => Promise<AxiosResponse<
|
|
4596
|
+
getLoans: (params?: RequestParams) => Promise<AxiosResponse<GetApplications, any>>;
|
|
4573
4597
|
/**
|
|
4574
4598
|
* No description
|
|
4575
4599
|
*
|
|
@@ -4613,7 +4637,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
4613
4637
|
pageNumber?: number;
|
|
4614
4638
|
sortBy?: string;
|
|
4615
4639
|
sortDirection?: string;
|
|
4616
|
-
}, params?: RequestParams) => Promise<AxiosResponse<
|
|
4640
|
+
}, params?: RequestParams) => Promise<AxiosResponse<ExtendedLoanPaginated, any>>;
|
|
4617
4641
|
/**
|
|
4618
4642
|
* No description
|
|
4619
4643
|
*
|
|
@@ -4768,7 +4792,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
4768
4792
|
* @request GET:/api/milestones
|
|
4769
4793
|
* @secure
|
|
4770
4794
|
*/
|
|
4771
|
-
getMilestones: (params?: RequestParams) => Promise<AxiosResponse<
|
|
4795
|
+
getMilestones: (params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration[], any>>;
|
|
4772
4796
|
/**
|
|
4773
4797
|
* No description
|
|
4774
4798
|
*
|
|
@@ -4778,7 +4802,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
4778
4802
|
* @request POST:/api/milestones
|
|
4779
4803
|
* @secure
|
|
4780
4804
|
*/
|
|
4781
|
-
createMilestone: (data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<
|
|
4805
|
+
createMilestone: (data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any>>;
|
|
4782
4806
|
/**
|
|
4783
4807
|
* No description
|
|
4784
4808
|
*
|
|
@@ -4788,7 +4812,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
4788
4812
|
* @request GET:/api/milestones/{id}
|
|
4789
4813
|
* @secure
|
|
4790
4814
|
*/
|
|
4791
|
-
getMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<
|
|
4815
|
+
getMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any>>;
|
|
4792
4816
|
/**
|
|
4793
4817
|
* No description
|
|
4794
4818
|
*
|
|
@@ -4798,7 +4822,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
4798
4822
|
* @request PUT:/api/milestones/{id}
|
|
4799
4823
|
* @secure
|
|
4800
4824
|
*/
|
|
4801
|
-
replaceMilestone: (id: string, data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<
|
|
4825
|
+
replaceMilestone: (id: string, data: MilestoneConfigurationRequest, params?: RequestParams) => Promise<AxiosResponse<MilestoneConfiguration, any>>;
|
|
4802
4826
|
/**
|
|
4803
4827
|
* No description
|
|
4804
4828
|
*
|
|
@@ -4809,6 +4833,40 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
4809
4833
|
* @secure
|
|
4810
4834
|
*/
|
|
4811
4835
|
deleteMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
4836
|
+
/**
|
|
4837
|
+
* No description
|
|
4838
|
+
*
|
|
4839
|
+
* @tags NotificationLogs
|
|
4840
|
+
* @name GetNotificationLogs
|
|
4841
|
+
* @summary Get All
|
|
4842
|
+
* @request GET:/api/notifications/logs
|
|
4843
|
+
* @secure
|
|
4844
|
+
*/
|
|
4845
|
+
getNotificationLogs: (query?: {
|
|
4846
|
+
/** @format int32 */
|
|
4847
|
+
pageSize?: number;
|
|
4848
|
+
/** @format int32 */
|
|
4849
|
+
pageNumber?: number;
|
|
4850
|
+
sortBy?: string;
|
|
4851
|
+
sortDirection?: string;
|
|
4852
|
+
}, params?: RequestParams) => Promise<AxiosResponse<NotificationLog[], any>>;
|
|
4853
|
+
/**
|
|
4854
|
+
* No description
|
|
4855
|
+
*
|
|
4856
|
+
* @tags NotificationLogs
|
|
4857
|
+
* @name SearchNotificationLog
|
|
4858
|
+
* @summary Search
|
|
4859
|
+
* @request POST:/api/notifications/logs/search
|
|
4860
|
+
* @secure
|
|
4861
|
+
*/
|
|
4862
|
+
searchNotificationLog: (data: NotificationLogSearchCriteria, query?: {
|
|
4863
|
+
/** @format int32 */
|
|
4864
|
+
pageSize?: number;
|
|
4865
|
+
/** @format int32 */
|
|
4866
|
+
pageNumber?: number;
|
|
4867
|
+
sortBy?: string;
|
|
4868
|
+
sortDirection?: string;
|
|
4869
|
+
}, params?: RequestParams) => Promise<AxiosResponse<NotificationLogPaginated, any>>;
|
|
4812
4870
|
/**
|
|
4813
4871
|
* No description
|
|
4814
4872
|
*
|
|
@@ -4959,7 +5017,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
4959
5017
|
pageNumber?: number;
|
|
4960
5018
|
sortBy?: string;
|
|
4961
5019
|
sortDirection?: string;
|
|
4962
|
-
}, params?: RequestParams) => Promise<AxiosResponse<
|
|
5020
|
+
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any>>;
|
|
4963
5021
|
/**
|
|
4964
5022
|
* No description
|
|
4965
5023
|
*
|
|
@@ -4976,7 +5034,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
4976
5034
|
pageNumber?: number;
|
|
4977
5035
|
sortBy?: string;
|
|
4978
5036
|
sortDirection?: string;
|
|
4979
|
-
}, params?: RequestParams) => Promise<AxiosResponse<
|
|
5037
|
+
}, params?: RequestParams) => Promise<AxiosResponse<BranchUserPaginated, any>>;
|
|
4980
5038
|
/**
|
|
4981
5039
|
* No description
|
|
4982
5040
|
*
|
|
@@ -5006,7 +5064,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5006
5064
|
* @request GET:/api/partners/{realtorId}/site-configurations/{siteConfigurationId}
|
|
5007
5065
|
* @secure
|
|
5008
5066
|
*/
|
|
5009
|
-
getPartnerSiteConfiguration: (realtorId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<
|
|
5067
|
+
getPartnerSiteConfiguration: (realtorId: string, siteConfigurationId: string, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithInherited, any>>;
|
|
5010
5068
|
/**
|
|
5011
5069
|
* No description
|
|
5012
5070
|
*
|
|
@@ -5028,7 +5086,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5028
5086
|
* @request POST:/api/pricing/calculator
|
|
5029
5087
|
* @secure
|
|
5030
5088
|
*/
|
|
5031
|
-
getPricingCalculation: (data: GetPricingCalculationRequest, params?: RequestParams) => Promise<AxiosResponse<
|
|
5089
|
+
getPricingCalculation: (data: GetPricingCalculationRequest, params?: RequestParams) => Promise<AxiosResponse<GetPricingForLoanOfficer, any>>;
|
|
5032
5090
|
/**
|
|
5033
5091
|
* No description
|
|
5034
5092
|
*
|
|
@@ -5142,7 +5200,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5142
5200
|
pageNumber?: number;
|
|
5143
5201
|
sortBy?: string;
|
|
5144
5202
|
sortDirection?: string;
|
|
5145
|
-
}, params?: RequestParams) => Promise<AxiosResponse<
|
|
5203
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationPaginated, any>>;
|
|
5146
5204
|
/**
|
|
5147
5205
|
* No description
|
|
5148
5206
|
*
|
|
@@ -5369,7 +5427,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5369
5427
|
* @request GET:/api/users/invites/{token}/verify
|
|
5370
5428
|
* @secure
|
|
5371
5429
|
*/
|
|
5372
|
-
verifyUserInvite: (token: string, params?: RequestParams) => Promise<AxiosResponse<
|
|
5430
|
+
verifyUserInvite: (token: string, params?: RequestParams) => Promise<AxiosResponse<Invite, any>>;
|
|
5373
5431
|
/**
|
|
5374
5432
|
* No description
|
|
5375
5433
|
*
|
|
@@ -5379,7 +5437,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5379
5437
|
* @request GET:/api/users/{userID}/relations
|
|
5380
5438
|
* @secure
|
|
5381
5439
|
*/
|
|
5382
|
-
getUserRelations: (userId: string, params?: RequestParams) => Promise<AxiosResponse<
|
|
5440
|
+
getUserRelations: (userId: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation[], any>>;
|
|
5383
5441
|
/**
|
|
5384
5442
|
* No description
|
|
5385
5443
|
*
|
|
@@ -5399,7 +5457,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5399
5457
|
* @request GET:/api/users/{userID}/relations/{id}
|
|
5400
5458
|
* @secure
|
|
5401
5459
|
*/
|
|
5402
|
-
getUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<
|
|
5460
|
+
getUserRelation: (userId: string, id: string, params?: RequestParams) => Promise<AxiosResponse<UserRelation, any>>;
|
|
5403
5461
|
/**
|
|
5404
5462
|
* No description
|
|
5405
5463
|
*
|
|
@@ -5453,7 +5511,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5453
5511
|
pageNumber?: number;
|
|
5454
5512
|
sortBy?: string;
|
|
5455
5513
|
sortDirection?: string;
|
|
5456
|
-
}, params?: RequestParams) => Promise<AxiosResponse<
|
|
5514
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UserPaginated, any>>;
|
|
5457
5515
|
/**
|
|
5458
5516
|
* No description
|
|
5459
5517
|
*
|
|
@@ -5646,7 +5704,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5646
5704
|
* @request POST:/api/verifications/verify
|
|
5647
5705
|
* @secure
|
|
5648
5706
|
*/
|
|
5649
|
-
verify: (data: VerificationRequest, params?: RequestParams) => Promise<AxiosResponse<
|
|
5707
|
+
verify: (data: VerificationRequest, params?: RequestParams) => Promise<AxiosResponse<Verification, any>>;
|
|
5650
5708
|
/**
|
|
5651
5709
|
* No description
|
|
5652
5710
|
*
|
|
@@ -5656,7 +5714,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5656
5714
|
* @request POST:/api/verifications/status
|
|
5657
5715
|
* @secure
|
|
5658
5716
|
*/
|
|
5659
|
-
getVerificationStatus: (data: VerificationRequest, params?: RequestParams) => Promise<AxiosResponse<
|
|
5717
|
+
getVerificationStatus: (data: VerificationRequest, params?: RequestParams) => Promise<AxiosResponse<Verification, any>>;
|
|
5660
5718
|
/**
|
|
5661
5719
|
* No description
|
|
5662
5720
|
*
|
|
@@ -5666,7 +5724,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5666
5724
|
* @request GET:/api/verifications/frontend-materials/{requestId}
|
|
5667
5725
|
* @secure
|
|
5668
5726
|
*/
|
|
5669
|
-
getVerificationFrontEndMaterials: (requestId: string, params?: RequestParams) => Promise<AxiosResponse<
|
|
5727
|
+
getVerificationFrontEndMaterials: (requestId: string, params?: RequestParams) => Promise<AxiosResponse<Verification, any>>;
|
|
5670
5728
|
/**
|
|
5671
5729
|
* No description
|
|
5672
5730
|
*
|