@matech/thebigpos-sdk 2.35.1-rc1 → 2.36.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/.husky/pre-commit +2 -2
- package/LICENSE +21 -21
- package/README.md +73 -73
- package/dist/index.d.ts +70 -35
- package/dist/index.js +7 -8
- package/dist/index.js.map +1 -1
- package/docs/sdk_generation.md +149 -0
- package/package.json +39 -39
- package/scripts/apply-json-patch-content-type.js +56 -56
- package/src/index.ts +323 -196
- package/tsconfig.json +27 -27
package/src/index.ts
CHANGED
|
@@ -411,7 +411,7 @@ export interface AccountBilling {
|
|
|
411
411
|
}
|
|
412
412
|
|
|
413
413
|
export interface AccountBillingRequest {
|
|
414
|
-
billingType:
|
|
414
|
+
billingType: AccountBillingRequestBillingTypeEnum;
|
|
415
415
|
/**
|
|
416
416
|
* @format double
|
|
417
417
|
* @min 0
|
|
@@ -986,7 +986,7 @@ export interface CorporateSearchCriteria {
|
|
|
986
986
|
}
|
|
987
987
|
|
|
988
988
|
export interface CreateAccessScopeRequest {
|
|
989
|
-
scopeType:
|
|
989
|
+
scopeType: CreateAccessScopeRequestScopeTypeEnum;
|
|
990
990
|
/** @format uuid */
|
|
991
991
|
userId?: string | null;
|
|
992
992
|
/** @format uuid */
|
|
@@ -1010,7 +1010,7 @@ export interface CreateAccountRequest {
|
|
|
1010
1010
|
*/
|
|
1011
1011
|
nlmsid: number;
|
|
1012
1012
|
settings: AccountSettingsRequest;
|
|
1013
|
-
environment:
|
|
1013
|
+
environment: CreateAccountRequestEnvironmentEnum;
|
|
1014
1014
|
losIntegration: LOSIntegration;
|
|
1015
1015
|
billingSettings: AccountBillingRequest;
|
|
1016
1016
|
}
|
|
@@ -1043,19 +1043,7 @@ export interface CreateDocumentTemplateRequest {
|
|
|
1043
1043
|
export interface CreateGroupMemberRequest {
|
|
1044
1044
|
/** @format uuid */
|
|
1045
1045
|
userId: string;
|
|
1046
|
-
loanRole:
|
|
1047
|
-
| "Borrower"
|
|
1048
|
-
| "CoBorrower"
|
|
1049
|
-
| "NonBorrower"
|
|
1050
|
-
| "LoanOfficer"
|
|
1051
|
-
| "LoanProcessor"
|
|
1052
|
-
| "LoanOfficerAssistant"
|
|
1053
|
-
| "SupportingLoanOfficer"
|
|
1054
|
-
| "BuyerAgent"
|
|
1055
|
-
| "SellerAgent"
|
|
1056
|
-
| "TitleInsuranceAgent"
|
|
1057
|
-
| "EscrowAgent"
|
|
1058
|
-
| "SettlementAgent";
|
|
1046
|
+
loanRole: CreateGroupMemberRequestLoanRoleEnum;
|
|
1059
1047
|
}
|
|
1060
1048
|
|
|
1061
1049
|
export interface CreateInviteRequest {
|
|
@@ -1067,7 +1055,7 @@ export interface CreateInviteRequest {
|
|
|
1067
1055
|
emailAddress: string;
|
|
1068
1056
|
phoneNumber?: string | null;
|
|
1069
1057
|
/** @deprecated */
|
|
1070
|
-
relationship:
|
|
1058
|
+
relationship: CreateInviteRequestRelationshipEnum;
|
|
1071
1059
|
loanID: string;
|
|
1072
1060
|
route?: string | null;
|
|
1073
1061
|
/** @format uuid */
|
|
@@ -1090,7 +1078,7 @@ export interface CreateLoanImportRequest {
|
|
|
1090
1078
|
* @minLength 1
|
|
1091
1079
|
*/
|
|
1092
1080
|
startDate: string;
|
|
1093
|
-
importMode:
|
|
1081
|
+
importMode: CreateLoanImportRequestImportModeEnum;
|
|
1094
1082
|
}
|
|
1095
1083
|
|
|
1096
1084
|
export interface CreateSession {
|
|
@@ -1112,19 +1100,7 @@ export interface CreateUserDeviceRequest {
|
|
|
1112
1100
|
}
|
|
1113
1101
|
|
|
1114
1102
|
export interface CreateUserDraft {
|
|
1115
|
-
loanRole:
|
|
1116
|
-
| "Borrower"
|
|
1117
|
-
| "CoBorrower"
|
|
1118
|
-
| "NonBorrower"
|
|
1119
|
-
| "LoanOfficer"
|
|
1120
|
-
| "LoanProcessor"
|
|
1121
|
-
| "LoanOfficerAssistant"
|
|
1122
|
-
| "SupportingLoanOfficer"
|
|
1123
|
-
| "BuyerAgent"
|
|
1124
|
-
| "SellerAgent"
|
|
1125
|
-
| "TitleInsuranceAgent"
|
|
1126
|
-
| "EscrowAgent"
|
|
1127
|
-
| "SettlementAgent";
|
|
1103
|
+
loanRole: CreateUserDraftLoanRoleEnum;
|
|
1128
1104
|
}
|
|
1129
1105
|
|
|
1130
1106
|
export interface CreateUserGroupRequest {
|
|
@@ -1440,7 +1416,7 @@ export interface Draft {
|
|
|
1440
1416
|
siteConfiguration: SiteConfigurationReduced;
|
|
1441
1417
|
/** @format uuid */
|
|
1442
1418
|
loanID?: string | null;
|
|
1443
|
-
type:
|
|
1419
|
+
type: DraftTypeEnum;
|
|
1444
1420
|
isCoBorrower: boolean;
|
|
1445
1421
|
}
|
|
1446
1422
|
|
|
@@ -1459,7 +1435,7 @@ export interface DraftContent {
|
|
|
1459
1435
|
siteConfiguration: SiteConfigurationReduced;
|
|
1460
1436
|
/** @format uuid */
|
|
1461
1437
|
loanID?: string | null;
|
|
1462
|
-
type:
|
|
1438
|
+
type: DraftContentTypeEnum;
|
|
1463
1439
|
isCoBorrower: boolean;
|
|
1464
1440
|
applicationPayload: any;
|
|
1465
1441
|
}
|
|
@@ -1783,20 +1759,7 @@ export interface FusionFieldDisplay {
|
|
|
1783
1759
|
}
|
|
1784
1760
|
|
|
1785
1761
|
export interface FusionReportFilter {
|
|
1786
|
-
filterType:
|
|
1787
|
-
| "DateGreaterThanOrEqualTo"
|
|
1788
|
-
| "DateGreaterThan"
|
|
1789
|
-
| "DateLessThan"
|
|
1790
|
-
| "DateLessThanOrEqualTo"
|
|
1791
|
-
| "DateEquals"
|
|
1792
|
-
| "DateDoesntEqual"
|
|
1793
|
-
| "DateNonEmpty"
|
|
1794
|
-
| "DateEmpty"
|
|
1795
|
-
| "StringContains"
|
|
1796
|
-
| "StringEquals"
|
|
1797
|
-
| "StringNotEmpty"
|
|
1798
|
-
| "StringNotEquals"
|
|
1799
|
-
| "StringNotContains";
|
|
1762
|
+
filterType: FusionReportFilterFilterTypeEnum;
|
|
1800
1763
|
targetField: string;
|
|
1801
1764
|
targetValue: string;
|
|
1802
1765
|
}
|
|
@@ -1924,40 +1887,7 @@ export interface GuidPatchOperation {
|
|
|
1924
1887
|
}
|
|
1925
1888
|
|
|
1926
1889
|
export interface IPAddress {
|
|
1927
|
-
addressFamily:
|
|
1928
|
-
| "Unspecified"
|
|
1929
|
-
| "Unix"
|
|
1930
|
-
| "InterNetwork"
|
|
1931
|
-
| "ImpLink"
|
|
1932
|
-
| "Pup"
|
|
1933
|
-
| "Chaos"
|
|
1934
|
-
| "NS"
|
|
1935
|
-
| "Ipx"
|
|
1936
|
-
| "Iso"
|
|
1937
|
-
| "Osi"
|
|
1938
|
-
| "Ecma"
|
|
1939
|
-
| "DataKit"
|
|
1940
|
-
| "Ccitt"
|
|
1941
|
-
| "Sna"
|
|
1942
|
-
| "DecNet"
|
|
1943
|
-
| "DataLink"
|
|
1944
|
-
| "Lat"
|
|
1945
|
-
| "HyperChannel"
|
|
1946
|
-
| "AppleTalk"
|
|
1947
|
-
| "NetBios"
|
|
1948
|
-
| "VoiceView"
|
|
1949
|
-
| "FireFox"
|
|
1950
|
-
| "Banyan"
|
|
1951
|
-
| "Atm"
|
|
1952
|
-
| "InterNetworkV6"
|
|
1953
|
-
| "Cluster"
|
|
1954
|
-
| "Ieee12844"
|
|
1955
|
-
| "Irda"
|
|
1956
|
-
| "NetworkDesigners"
|
|
1957
|
-
| "Max"
|
|
1958
|
-
| "Packet"
|
|
1959
|
-
| "ControllerAreaNetwork"
|
|
1960
|
-
| "Unknown";
|
|
1890
|
+
addressFamily: IpAddressAddressFamilyEnum;
|
|
1961
1891
|
/** @format int64 */
|
|
1962
1892
|
scopeId: number;
|
|
1963
1893
|
isIPv6Multicast: boolean;
|
|
@@ -3202,19 +3132,7 @@ export interface LoanContact {
|
|
|
3202
3132
|
email?: string | null;
|
|
3203
3133
|
phone?: string | null;
|
|
3204
3134
|
companyName?: string | null;
|
|
3205
|
-
role:
|
|
3206
|
-
| "Borrower"
|
|
3207
|
-
| "CoBorrower"
|
|
3208
|
-
| "NonBorrower"
|
|
3209
|
-
| "LoanOfficer"
|
|
3210
|
-
| "LoanProcessor"
|
|
3211
|
-
| "LoanOfficerAssistant"
|
|
3212
|
-
| "SupportingLoanOfficer"
|
|
3213
|
-
| "BuyerAgent"
|
|
3214
|
-
| "SellerAgent"
|
|
3215
|
-
| "TitleInsuranceAgent"
|
|
3216
|
-
| "EscrowAgent"
|
|
3217
|
-
| "SettlementAgent";
|
|
3135
|
+
role: LoanContactRoleEnum;
|
|
3218
3136
|
}
|
|
3219
3137
|
|
|
3220
3138
|
export interface LoanContactList {
|
|
@@ -3346,19 +3264,14 @@ export interface LoanImport {
|
|
|
3346
3264
|
/** @format int32 */
|
|
3347
3265
|
importedCount: number;
|
|
3348
3266
|
statusMessage?: string | null;
|
|
3349
|
-
status:
|
|
3350
|
-
|
|
3351
|
-
| "InProgress"
|
|
3352
|
-
| "Completed"
|
|
3353
|
-
| "Failed"
|
|
3354
|
-
| "Cancelled";
|
|
3355
|
-
importMode: "All" | "NewOnly" | "UpdateOnly";
|
|
3267
|
+
status: LoanImportStatusEnum;
|
|
3268
|
+
importMode: LoanImportImportModeEnum;
|
|
3356
3269
|
/** @format date-time */
|
|
3357
3270
|
createdAt?: string | null;
|
|
3358
3271
|
}
|
|
3359
3272
|
|
|
3360
3273
|
export interface LoanImportLog {
|
|
3361
|
-
level:
|
|
3274
|
+
level: LoanImportLogLevelEnum;
|
|
3362
3275
|
message: string;
|
|
3363
3276
|
/** @format date-time */
|
|
3364
3277
|
createdAt: string;
|
|
@@ -3419,20 +3332,8 @@ export interface LoanListPaginated {
|
|
|
3419
3332
|
export interface LoanLog {
|
|
3420
3333
|
/** @format uuid */
|
|
3421
3334
|
id: string;
|
|
3422
|
-
level:
|
|
3423
|
-
type:
|
|
3424
|
-
| "Loan"
|
|
3425
|
-
| "Queue"
|
|
3426
|
-
| "POSFlagChanged"
|
|
3427
|
-
| "Verification"
|
|
3428
|
-
| "DocumentUploaded"
|
|
3429
|
-
| "LoanCreated"
|
|
3430
|
-
| "WorkflowSubmitted"
|
|
3431
|
-
| "UserInvitationSent"
|
|
3432
|
-
| "CoBorrowerAdded"
|
|
3433
|
-
| "TaskCompleted"
|
|
3434
|
-
| "LoanStatusChanged"
|
|
3435
|
-
| "EConsent";
|
|
3335
|
+
level: LoanLogLevelEnum;
|
|
3336
|
+
type: LoanLogTypeEnum;
|
|
3436
3337
|
message: string;
|
|
3437
3338
|
/** @format date-time */
|
|
3438
3339
|
createdAt: string;
|
|
@@ -3716,19 +3617,7 @@ export interface LoanUser {
|
|
|
3716
3617
|
email: string;
|
|
3717
3618
|
phone?: string | null;
|
|
3718
3619
|
role: string;
|
|
3719
|
-
loanRole:
|
|
3720
|
-
| "Borrower"
|
|
3721
|
-
| "CoBorrower"
|
|
3722
|
-
| "NonBorrower"
|
|
3723
|
-
| "LoanOfficer"
|
|
3724
|
-
| "LoanProcessor"
|
|
3725
|
-
| "LoanOfficerAssistant"
|
|
3726
|
-
| "SupportingLoanOfficer"
|
|
3727
|
-
| "BuyerAgent"
|
|
3728
|
-
| "SellerAgent"
|
|
3729
|
-
| "TitleInsuranceAgent"
|
|
3730
|
-
| "EscrowAgent"
|
|
3731
|
-
| "SettlementAgent";
|
|
3620
|
+
loanRole: LoanUserLoanRoleEnum;
|
|
3732
3621
|
isUser: boolean;
|
|
3733
3622
|
/** @format date-time */
|
|
3734
3623
|
createdAt: string;
|
|
@@ -4017,7 +3906,7 @@ export interface NotificationTemplateVersionUpdateRequest {
|
|
|
4017
3906
|
|
|
4018
3907
|
export interface Operation {
|
|
4019
3908
|
op?: string;
|
|
4020
|
-
value?:
|
|
3909
|
+
value?: object | null;
|
|
4021
3910
|
path?: string;
|
|
4022
3911
|
}
|
|
4023
3912
|
|
|
@@ -4373,7 +4262,7 @@ export interface SSOTokenRequest {
|
|
|
4373
4262
|
}
|
|
4374
4263
|
|
|
4375
4264
|
export interface SamlMetadataRequest {
|
|
4376
|
-
ssoIntegration:
|
|
4265
|
+
ssoIntegration: SamlMetadataRequestSsoIntegrationEnum;
|
|
4377
4266
|
}
|
|
4378
4267
|
|
|
4379
4268
|
export interface SendForgotPasswordRequest {
|
|
@@ -4412,7 +4301,7 @@ export interface SiteConfiguration {
|
|
|
4412
4301
|
deletedAt?: string | null;
|
|
4413
4302
|
/** @format uuid */
|
|
4414
4303
|
id: string;
|
|
4415
|
-
type:
|
|
4304
|
+
type: SiteConfigurationTypeEnum;
|
|
4416
4305
|
/** @format uuid */
|
|
4417
4306
|
entityID: string;
|
|
4418
4307
|
/** @format int32 */
|
|
@@ -4607,7 +4496,7 @@ export interface SiteConfigurationByUrl {
|
|
|
4607
4496
|
deletedAt?: string | null;
|
|
4608
4497
|
/** @format uuid */
|
|
4609
4498
|
id: string;
|
|
4610
|
-
type:
|
|
4499
|
+
type: SiteConfigurationByUrlTypeEnum;
|
|
4611
4500
|
/** @format uuid */
|
|
4612
4501
|
entityID: string;
|
|
4613
4502
|
/** @format int32 */
|
|
@@ -4820,7 +4709,7 @@ export interface SiteConfigurationForm {
|
|
|
4820
4709
|
export interface SiteConfigurationReduced {
|
|
4821
4710
|
/** @format uuid */
|
|
4822
4711
|
id: string;
|
|
4823
|
-
type:
|
|
4712
|
+
type: SiteConfigurationReducedTypeEnum;
|
|
4824
4713
|
url?: string | null;
|
|
4825
4714
|
name: string;
|
|
4826
4715
|
/** @format int64 */
|
|
@@ -4838,7 +4727,7 @@ export interface SiteConfigurationRequest {
|
|
|
4838
4727
|
entityID: string;
|
|
4839
4728
|
/** @format int32 */
|
|
4840
4729
|
entityType: number;
|
|
4841
|
-
type:
|
|
4730
|
+
type: SiteConfigurationRequestTypeEnum;
|
|
4842
4731
|
url: string;
|
|
4843
4732
|
name: string;
|
|
4844
4733
|
introduction?: string | null;
|
|
@@ -5015,7 +4904,7 @@ export interface SiteConfigurationSearchCriteria {
|
|
|
5015
4904
|
export interface SiteConfigurationSummary {
|
|
5016
4905
|
/** @format uuid */
|
|
5017
4906
|
id: string;
|
|
5018
|
-
type:
|
|
4907
|
+
type: SiteConfigurationSummaryTypeEnum;
|
|
5019
4908
|
url?: string | null;
|
|
5020
4909
|
name: string;
|
|
5021
4910
|
/** @format int64 */
|
|
@@ -5641,19 +5530,7 @@ export interface UserDevice {
|
|
|
5641
5530
|
export interface UserDraft {
|
|
5642
5531
|
/** @format uuid */
|
|
5643
5532
|
draftID: string;
|
|
5644
|
-
role:
|
|
5645
|
-
| "Borrower"
|
|
5646
|
-
| "CoBorrower"
|
|
5647
|
-
| "NonBorrower"
|
|
5648
|
-
| "LoanOfficer"
|
|
5649
|
-
| "LoanProcessor"
|
|
5650
|
-
| "LoanOfficerAssistant"
|
|
5651
|
-
| "SupportingLoanOfficer"
|
|
5652
|
-
| "BuyerAgent"
|
|
5653
|
-
| "SellerAgent"
|
|
5654
|
-
| "TitleInsuranceAgent"
|
|
5655
|
-
| "EscrowAgent"
|
|
5656
|
-
| "SettlementAgent";
|
|
5533
|
+
role: UserDraftRoleEnum;
|
|
5657
5534
|
user: User;
|
|
5658
5535
|
}
|
|
5659
5536
|
|
|
@@ -5680,7 +5557,7 @@ export interface UserGroupAccessScope {
|
|
|
5680
5557
|
id: string;
|
|
5681
5558
|
/** @format uuid */
|
|
5682
5559
|
groupId: string;
|
|
5683
|
-
scopeType:
|
|
5560
|
+
scopeType: UserGroupAccessScopeScopeTypeEnum;
|
|
5684
5561
|
/** @format uuid */
|
|
5685
5562
|
userId?: string | null;
|
|
5686
5563
|
/** @format uuid */
|
|
@@ -5716,19 +5593,7 @@ export interface UserLoan {
|
|
|
5716
5593
|
deletedAt?: string | null;
|
|
5717
5594
|
loanID: string;
|
|
5718
5595
|
user: User;
|
|
5719
|
-
role:
|
|
5720
|
-
| "Borrower"
|
|
5721
|
-
| "CoBorrower"
|
|
5722
|
-
| "NonBorrower"
|
|
5723
|
-
| "LoanOfficer"
|
|
5724
|
-
| "LoanProcessor"
|
|
5725
|
-
| "LoanOfficerAssistant"
|
|
5726
|
-
| "SupportingLoanOfficer"
|
|
5727
|
-
| "BuyerAgent"
|
|
5728
|
-
| "SellerAgent"
|
|
5729
|
-
| "TitleInsuranceAgent"
|
|
5730
|
-
| "EscrowAgent"
|
|
5731
|
-
| "SettlementAgent";
|
|
5596
|
+
role: UserLoanRoleEnum;
|
|
5732
5597
|
/** @format int32 */
|
|
5733
5598
|
borrowerPair?: number | null;
|
|
5734
5599
|
/** @format int32 */
|
|
@@ -5741,7 +5606,7 @@ export interface UserLoanConsent {
|
|
|
5741
5606
|
id: string;
|
|
5742
5607
|
/** @format uuid */
|
|
5743
5608
|
userLoanID: string;
|
|
5744
|
-
type:
|
|
5609
|
+
type: UserLoanConsentTypeEnum;
|
|
5745
5610
|
providedConsent: boolean;
|
|
5746
5611
|
ipAddress?: string | null;
|
|
5747
5612
|
/** @format date-time */
|
|
@@ -5888,17 +5753,7 @@ export interface UserSummary {
|
|
|
5888
5753
|
id: string;
|
|
5889
5754
|
name?: string | null;
|
|
5890
5755
|
email?: string | null;
|
|
5891
|
-
role:
|
|
5892
|
-
| "Borrower"
|
|
5893
|
-
| "LoanOfficer"
|
|
5894
|
-
| "Admin"
|
|
5895
|
-
| "SuperAdmin"
|
|
5896
|
-
| "Realtor"
|
|
5897
|
-
| "SettlementAgent"
|
|
5898
|
-
| "LoanProcessor"
|
|
5899
|
-
| "LoanOfficerAssistant"
|
|
5900
|
-
| "BranchManager"
|
|
5901
|
-
| "SystemAdmin";
|
|
5756
|
+
role: UserSummaryRoleEnum;
|
|
5902
5757
|
}
|
|
5903
5758
|
|
|
5904
5759
|
export interface VerifyPasswordRequest {
|
|
@@ -5934,6 +5789,289 @@ export interface Workflow {
|
|
|
5934
5789
|
icon: string;
|
|
5935
5790
|
}
|
|
5936
5791
|
|
|
5792
|
+
export type AccountBillingRequestBillingTypeEnum = "ClosedLoan" | "LoanOfficer";
|
|
5793
|
+
|
|
5794
|
+
export type CreateAccessScopeRequestScopeTypeEnum = "User" | "Branch";
|
|
5795
|
+
|
|
5796
|
+
export type CreateAccountRequestEnvironmentEnum =
|
|
5797
|
+
| "Development"
|
|
5798
|
+
| "Staging"
|
|
5799
|
+
| "UAT"
|
|
5800
|
+
| "Production";
|
|
5801
|
+
|
|
5802
|
+
export type CreateGroupMemberRequestLoanRoleEnum =
|
|
5803
|
+
| "Borrower"
|
|
5804
|
+
| "CoBorrower"
|
|
5805
|
+
| "NonBorrower"
|
|
5806
|
+
| "LoanOfficer"
|
|
5807
|
+
| "LoanProcessor"
|
|
5808
|
+
| "LoanOfficerAssistant"
|
|
5809
|
+
| "SupportingLoanOfficer"
|
|
5810
|
+
| "BuyerAgent"
|
|
5811
|
+
| "SellerAgent"
|
|
5812
|
+
| "TitleInsuranceAgent"
|
|
5813
|
+
| "EscrowAgent"
|
|
5814
|
+
| "SettlementAgent";
|
|
5815
|
+
|
|
5816
|
+
/** @deprecated */
|
|
5817
|
+
export type CreateInviteRequestRelationshipEnum =
|
|
5818
|
+
| "NotApplicable"
|
|
5819
|
+
| "Spouse"
|
|
5820
|
+
| "NonSpouse";
|
|
5821
|
+
|
|
5822
|
+
export type CreateLoanImportRequestImportModeEnum =
|
|
5823
|
+
| "All"
|
|
5824
|
+
| "NewOnly"
|
|
5825
|
+
| "UpdateOnly";
|
|
5826
|
+
|
|
5827
|
+
export type CreateUserDraftLoanRoleEnum =
|
|
5828
|
+
| "Borrower"
|
|
5829
|
+
| "CoBorrower"
|
|
5830
|
+
| "NonBorrower"
|
|
5831
|
+
| "LoanOfficer"
|
|
5832
|
+
| "LoanProcessor"
|
|
5833
|
+
| "LoanOfficerAssistant"
|
|
5834
|
+
| "SupportingLoanOfficer"
|
|
5835
|
+
| "BuyerAgent"
|
|
5836
|
+
| "SellerAgent"
|
|
5837
|
+
| "TitleInsuranceAgent"
|
|
5838
|
+
| "EscrowAgent"
|
|
5839
|
+
| "SettlementAgent";
|
|
5840
|
+
|
|
5841
|
+
export type DraftTypeEnum = "NewLoan" | "EditLoan";
|
|
5842
|
+
|
|
5843
|
+
export type DraftContentTypeEnum = "NewLoan" | "EditLoan";
|
|
5844
|
+
|
|
5845
|
+
export type FusionReportFilterFilterTypeEnum =
|
|
5846
|
+
| "DateGreaterThanOrEqualTo"
|
|
5847
|
+
| "DateGreaterThan"
|
|
5848
|
+
| "DateLessThan"
|
|
5849
|
+
| "DateLessThanOrEqualTo"
|
|
5850
|
+
| "DateEquals"
|
|
5851
|
+
| "DateDoesntEqual"
|
|
5852
|
+
| "DateNonEmpty"
|
|
5853
|
+
| "DateEmpty"
|
|
5854
|
+
| "StringContains"
|
|
5855
|
+
| "StringEquals"
|
|
5856
|
+
| "StringNotEmpty"
|
|
5857
|
+
| "StringNotEquals"
|
|
5858
|
+
| "StringNotContains";
|
|
5859
|
+
|
|
5860
|
+
export type IpAddressAddressFamilyEnum =
|
|
5861
|
+
| "Unspecified"
|
|
5862
|
+
| "Unix"
|
|
5863
|
+
| "InterNetwork"
|
|
5864
|
+
| "ImpLink"
|
|
5865
|
+
| "Pup"
|
|
5866
|
+
| "Chaos"
|
|
5867
|
+
| "NS"
|
|
5868
|
+
| "Ipx"
|
|
5869
|
+
| "Iso"
|
|
5870
|
+
| "Osi"
|
|
5871
|
+
| "Ecma"
|
|
5872
|
+
| "DataKit"
|
|
5873
|
+
| "Ccitt"
|
|
5874
|
+
| "Sna"
|
|
5875
|
+
| "DecNet"
|
|
5876
|
+
| "DataLink"
|
|
5877
|
+
| "Lat"
|
|
5878
|
+
| "HyperChannel"
|
|
5879
|
+
| "AppleTalk"
|
|
5880
|
+
| "NetBios"
|
|
5881
|
+
| "VoiceView"
|
|
5882
|
+
| "FireFox"
|
|
5883
|
+
| "Banyan"
|
|
5884
|
+
| "Atm"
|
|
5885
|
+
| "InterNetworkV6"
|
|
5886
|
+
| "Cluster"
|
|
5887
|
+
| "Ieee12844"
|
|
5888
|
+
| "Irda"
|
|
5889
|
+
| "NetworkDesigners"
|
|
5890
|
+
| "Max"
|
|
5891
|
+
| "Packet"
|
|
5892
|
+
| "ControllerAreaNetwork"
|
|
5893
|
+
| "Unknown";
|
|
5894
|
+
|
|
5895
|
+
export type LoanContactRoleEnum =
|
|
5896
|
+
| "Borrower"
|
|
5897
|
+
| "CoBorrower"
|
|
5898
|
+
| "NonBorrower"
|
|
5899
|
+
| "LoanOfficer"
|
|
5900
|
+
| "LoanProcessor"
|
|
5901
|
+
| "LoanOfficerAssistant"
|
|
5902
|
+
| "SupportingLoanOfficer"
|
|
5903
|
+
| "BuyerAgent"
|
|
5904
|
+
| "SellerAgent"
|
|
5905
|
+
| "TitleInsuranceAgent"
|
|
5906
|
+
| "EscrowAgent"
|
|
5907
|
+
| "SettlementAgent";
|
|
5908
|
+
|
|
5909
|
+
export type LoanImportStatusEnum =
|
|
5910
|
+
| "WaitingProcess"
|
|
5911
|
+
| "InProgress"
|
|
5912
|
+
| "Completed"
|
|
5913
|
+
| "Failed"
|
|
5914
|
+
| "Cancelled";
|
|
5915
|
+
|
|
5916
|
+
export type LoanImportImportModeEnum = "All" | "NewOnly" | "UpdateOnly";
|
|
5917
|
+
|
|
5918
|
+
export type LoanImportLogLevelEnum = "None" | "Info" | "Warning" | "Error";
|
|
5919
|
+
|
|
5920
|
+
export type LoanLogLevelEnum = "None" | "Info" | "Warning" | "Error";
|
|
5921
|
+
|
|
5922
|
+
export type LoanLogTypeEnum =
|
|
5923
|
+
| "Loan"
|
|
5924
|
+
| "Queue"
|
|
5925
|
+
| "POSFlagChanged"
|
|
5926
|
+
| "Verification"
|
|
5927
|
+
| "DocumentUploaded"
|
|
5928
|
+
| "LoanCreated"
|
|
5929
|
+
| "WorkflowSubmitted"
|
|
5930
|
+
| "UserInvitationSent"
|
|
5931
|
+
| "CoBorrowerAdded"
|
|
5932
|
+
| "TaskCompleted"
|
|
5933
|
+
| "LoanStatusChanged"
|
|
5934
|
+
| "EConsent";
|
|
5935
|
+
|
|
5936
|
+
export type LoanUserLoanRoleEnum =
|
|
5937
|
+
| "Borrower"
|
|
5938
|
+
| "CoBorrower"
|
|
5939
|
+
| "NonBorrower"
|
|
5940
|
+
| "LoanOfficer"
|
|
5941
|
+
| "LoanProcessor"
|
|
5942
|
+
| "LoanOfficerAssistant"
|
|
5943
|
+
| "SupportingLoanOfficer"
|
|
5944
|
+
| "BuyerAgent"
|
|
5945
|
+
| "SellerAgent"
|
|
5946
|
+
| "TitleInsuranceAgent"
|
|
5947
|
+
| "EscrowAgent"
|
|
5948
|
+
| "SettlementAgent";
|
|
5949
|
+
|
|
5950
|
+
export type SamlMetadataRequestSsoIntegrationEnum =
|
|
5951
|
+
| "ConsumerConnect"
|
|
5952
|
+
| "TheBigPOS"
|
|
5953
|
+
| "POSF";
|
|
5954
|
+
|
|
5955
|
+
export type SiteConfigurationTypeEnum =
|
|
5956
|
+
| "None"
|
|
5957
|
+
| "Account"
|
|
5958
|
+
| "Corporate"
|
|
5959
|
+
| "Branch"
|
|
5960
|
+
| "LoanOfficer"
|
|
5961
|
+
| "Partner";
|
|
5962
|
+
|
|
5963
|
+
export type SiteConfigurationByUrlTypeEnum =
|
|
5964
|
+
| "None"
|
|
5965
|
+
| "Account"
|
|
5966
|
+
| "Corporate"
|
|
5967
|
+
| "Branch"
|
|
5968
|
+
| "LoanOfficer"
|
|
5969
|
+
| "Partner";
|
|
5970
|
+
|
|
5971
|
+
export type SiteConfigurationReducedTypeEnum =
|
|
5972
|
+
| "None"
|
|
5973
|
+
| "Account"
|
|
5974
|
+
| "Corporate"
|
|
5975
|
+
| "Branch"
|
|
5976
|
+
| "LoanOfficer"
|
|
5977
|
+
| "Partner";
|
|
5978
|
+
|
|
5979
|
+
export type SiteConfigurationRequestTypeEnum =
|
|
5980
|
+
| "None"
|
|
5981
|
+
| "Account"
|
|
5982
|
+
| "Corporate"
|
|
5983
|
+
| "Branch"
|
|
5984
|
+
| "LoanOfficer"
|
|
5985
|
+
| "Partner";
|
|
5986
|
+
|
|
5987
|
+
export type SiteConfigurationSummaryTypeEnum =
|
|
5988
|
+
| "None"
|
|
5989
|
+
| "Account"
|
|
5990
|
+
| "Corporate"
|
|
5991
|
+
| "Branch"
|
|
5992
|
+
| "LoanOfficer"
|
|
5993
|
+
| "Partner";
|
|
5994
|
+
|
|
5995
|
+
export type UserDraftRoleEnum =
|
|
5996
|
+
| "Borrower"
|
|
5997
|
+
| "CoBorrower"
|
|
5998
|
+
| "NonBorrower"
|
|
5999
|
+
| "LoanOfficer"
|
|
6000
|
+
| "LoanProcessor"
|
|
6001
|
+
| "LoanOfficerAssistant"
|
|
6002
|
+
| "SupportingLoanOfficer"
|
|
6003
|
+
| "BuyerAgent"
|
|
6004
|
+
| "SellerAgent"
|
|
6005
|
+
| "TitleInsuranceAgent"
|
|
6006
|
+
| "EscrowAgent"
|
|
6007
|
+
| "SettlementAgent";
|
|
6008
|
+
|
|
6009
|
+
export type UserGroupAccessScopeScopeTypeEnum = "User" | "Branch";
|
|
6010
|
+
|
|
6011
|
+
export type UserLoanRoleEnum =
|
|
6012
|
+
| "Borrower"
|
|
6013
|
+
| "CoBorrower"
|
|
6014
|
+
| "NonBorrower"
|
|
6015
|
+
| "LoanOfficer"
|
|
6016
|
+
| "LoanProcessor"
|
|
6017
|
+
| "LoanOfficerAssistant"
|
|
6018
|
+
| "SupportingLoanOfficer"
|
|
6019
|
+
| "BuyerAgent"
|
|
6020
|
+
| "SellerAgent"
|
|
6021
|
+
| "TitleInsuranceAgent"
|
|
6022
|
+
| "EscrowAgent"
|
|
6023
|
+
| "SettlementAgent";
|
|
6024
|
+
|
|
6025
|
+
export type UserLoanConsentTypeEnum =
|
|
6026
|
+
| "Econsent"
|
|
6027
|
+
| "CreditAuthorization"
|
|
6028
|
+
| "Tcpa";
|
|
6029
|
+
|
|
6030
|
+
export type UserSummaryRoleEnum =
|
|
6031
|
+
| "Borrower"
|
|
6032
|
+
| "LoanOfficer"
|
|
6033
|
+
| "Admin"
|
|
6034
|
+
| "SuperAdmin"
|
|
6035
|
+
| "Realtor"
|
|
6036
|
+
| "SettlementAgent"
|
|
6037
|
+
| "LoanProcessor"
|
|
6038
|
+
| "LoanOfficerAssistant"
|
|
6039
|
+
| "BranchManager"
|
|
6040
|
+
| "SystemAdmin";
|
|
6041
|
+
|
|
6042
|
+
/** @default "Realtor" */
|
|
6043
|
+
export type GetPartnersParamsRoleEnum =
|
|
6044
|
+
| "Borrower"
|
|
6045
|
+
| "LoanOfficer"
|
|
6046
|
+
| "Admin"
|
|
6047
|
+
| "SuperAdmin"
|
|
6048
|
+
| "Realtor"
|
|
6049
|
+
| "SettlementAgent"
|
|
6050
|
+
| "LoanProcessor"
|
|
6051
|
+
| "LoanOfficerAssistant"
|
|
6052
|
+
| "BranchManager"
|
|
6053
|
+
| "SystemAdmin";
|
|
6054
|
+
|
|
6055
|
+
export type GetSamlMetadataParamsSSoIntegrationEnum =
|
|
6056
|
+
| "ConsumerConnect"
|
|
6057
|
+
| "TheBigPOS"
|
|
6058
|
+
| "POSF";
|
|
6059
|
+
|
|
6060
|
+
export type GetSamlMetadataParamsEnum =
|
|
6061
|
+
| "ConsumerConnect"
|
|
6062
|
+
| "TheBigPOS"
|
|
6063
|
+
| "POSF";
|
|
6064
|
+
|
|
6065
|
+
export type CreateOrReplaceSamlMetadataParamsSSoIntegrationEnum =
|
|
6066
|
+
| "ConsumerConnect"
|
|
6067
|
+
| "TheBigPOS"
|
|
6068
|
+
| "POSF";
|
|
6069
|
+
|
|
6070
|
+
export type CreateOrReplaceSamlMetadataParamsEnum =
|
|
6071
|
+
| "ConsumerConnect"
|
|
6072
|
+
| "TheBigPOS"
|
|
6073
|
+
| "POSF";
|
|
6074
|
+
|
|
5937
6075
|
import type {
|
|
5938
6076
|
AxiosInstance,
|
|
5939
6077
|
AxiosRequestConfig,
|
|
@@ -5976,7 +6114,6 @@ export interface ApiConfig<SecurityDataType = unknown>
|
|
|
5976
6114
|
}
|
|
5977
6115
|
|
|
5978
6116
|
export enum ContentType {
|
|
5979
|
-
JsonPatch = "application/json-patch+json",
|
|
5980
6117
|
Json = "application/json",
|
|
5981
6118
|
JsonApi = "application/vnd.api+json",
|
|
5982
6119
|
FormData = "multipart/form-data",
|
|
@@ -6112,7 +6249,7 @@ export class HttpClient<SecurityDataType = unknown> {
|
|
|
6112
6249
|
|
|
6113
6250
|
/**
|
|
6114
6251
|
* @title The Big POS API
|
|
6115
|
-
* @version v2.
|
|
6252
|
+
* @version v2.36.0
|
|
6116
6253
|
* @termsOfService https://www.thebigpos.com/terms-of-use/
|
|
6117
6254
|
* @contact Mortgage Automation Technologies <support@thebigpos.com> (https://www.thebigpos.com/terms-of-use/)
|
|
6118
6255
|
*/
|
|
@@ -8368,7 +8505,7 @@ export class Api<
|
|
|
8368
8505
|
method: "PATCH",
|
|
8369
8506
|
body: data,
|
|
8370
8507
|
secure: true,
|
|
8371
|
-
type: ContentType.
|
|
8508
|
+
type: ContentType.Json,
|
|
8372
8509
|
format: "json",
|
|
8373
8510
|
...params,
|
|
8374
8511
|
}),
|
|
@@ -8478,7 +8615,7 @@ export class Api<
|
|
|
8478
8615
|
method: "PATCH",
|
|
8479
8616
|
body: data,
|
|
8480
8617
|
secure: true,
|
|
8481
|
-
type: ContentType.
|
|
8618
|
+
type: ContentType.Json,
|
|
8482
8619
|
format: "json",
|
|
8483
8620
|
...params,
|
|
8484
8621
|
}),
|
|
@@ -8505,7 +8642,7 @@ export class Api<
|
|
|
8505
8642
|
method: "PATCH",
|
|
8506
8643
|
body: data,
|
|
8507
8644
|
secure: true,
|
|
8508
|
-
type: ContentType.
|
|
8645
|
+
type: ContentType.Json,
|
|
8509
8646
|
format: "json",
|
|
8510
8647
|
...params,
|
|
8511
8648
|
}),
|
|
@@ -8747,7 +8884,7 @@ export class Api<
|
|
|
8747
8884
|
method: "PATCH",
|
|
8748
8885
|
body: data,
|
|
8749
8886
|
secure: true,
|
|
8750
|
-
type: ContentType.
|
|
8887
|
+
type: ContentType.Json,
|
|
8751
8888
|
format: "json",
|
|
8752
8889
|
...params,
|
|
8753
8890
|
}),
|
|
@@ -8827,7 +8964,7 @@ export class Api<
|
|
|
8827
8964
|
method: "PATCH",
|
|
8828
8965
|
body: data,
|
|
8829
8966
|
secure: true,
|
|
8830
|
-
type: ContentType.
|
|
8967
|
+
type: ContentType.Json,
|
|
8831
8968
|
format: "json",
|
|
8832
8969
|
...params,
|
|
8833
8970
|
}),
|
|
@@ -10378,7 +10515,7 @@ export class Api<
|
|
|
10378
10515
|
query: query,
|
|
10379
10516
|
body: data,
|
|
10380
10517
|
secure: true,
|
|
10381
|
-
type: ContentType.
|
|
10518
|
+
type: ContentType.Json,
|
|
10382
10519
|
format: "json",
|
|
10383
10520
|
...params,
|
|
10384
10521
|
}),
|
|
@@ -11390,17 +11527,7 @@ export class Api<
|
|
|
11390
11527
|
query?: {
|
|
11391
11528
|
showAll?: boolean;
|
|
11392
11529
|
/** @default "Realtor" */
|
|
11393
|
-
role?:
|
|
11394
|
-
| "Borrower"
|
|
11395
|
-
| "LoanOfficer"
|
|
11396
|
-
| "Admin"
|
|
11397
|
-
| "SuperAdmin"
|
|
11398
|
-
| "Realtor"
|
|
11399
|
-
| "SettlementAgent"
|
|
11400
|
-
| "LoanProcessor"
|
|
11401
|
-
| "LoanOfficerAssistant"
|
|
11402
|
-
| "BranchManager"
|
|
11403
|
-
| "SystemAdmin";
|
|
11530
|
+
role?: GetPartnersParamsRoleEnum;
|
|
11404
11531
|
/** @format int32 */
|
|
11405
11532
|
pageSize?: number;
|
|
11406
11533
|
/** @format int32 */
|
|
@@ -11736,7 +11863,7 @@ export class Api<
|
|
|
11736
11863
|
* @response `404` `ProblemDetails` Not Found
|
|
11737
11864
|
*/
|
|
11738
11865
|
getSamlMetadata: (
|
|
11739
|
-
sSoIntegration:
|
|
11866
|
+
sSoIntegration: GetSamlMetadataParamsEnum,
|
|
11740
11867
|
ssoIntegration: string,
|
|
11741
11868
|
params: RequestParams = {},
|
|
11742
11869
|
) =>
|
|
@@ -11758,7 +11885,7 @@ export class Api<
|
|
|
11758
11885
|
* @response `200` `File` Success
|
|
11759
11886
|
*/
|
|
11760
11887
|
createOrReplaceSamlMetadata: (
|
|
11761
|
-
sSoIntegration:
|
|
11888
|
+
sSoIntegration: CreateOrReplaceSamlMetadataParamsEnum,
|
|
11762
11889
|
ssoIntegration: string,
|
|
11763
11890
|
params: RequestParams = {},
|
|
11764
11891
|
) =>
|