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