@matech/thebigpos-sdk 2.26.1-rc1 → 2.26.2
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 +44 -44
- package/dist/index.d.ts +60 -28
- package/dist/index.js.map +1 -1
- package/package.json +40 -40
- package/scripts/apply-json-patch-content-type.js +56 -56
- package/src/index.ts +259 -145
- package/tsconfig.json +27 -27
package/.husky/pre-commit
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
[ -f ./src/index.ts ] && node scripts/apply-json-patch-content-type.js
|
|
2
|
-
yarn build
|
|
1
|
+
[ -f ./src/index.ts ] && node scripts/apply-json-patch-content-type.js
|
|
2
|
+
yarn build
|
|
3
3
|
git add .
|
package/LICENSE
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2024 Mortgage Automation Technologies
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2024 Mortgage Automation Technologies
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,44 +1,44 @@
|
|
|
1
|
-
# The BIG POS Typescript SDK
|
|
2
|
-
|
|
3
|
-
## Installation
|
|
4
|
-
Using npm:
|
|
5
|
-
|
|
6
|
-
```bash
|
|
7
|
-
$ npm install @matech/thebigpos-sdk
|
|
8
|
-
```
|
|
9
|
-
|
|
10
|
-
Using yarn:
|
|
11
|
-
|
|
12
|
-
```bash
|
|
13
|
-
$ yarn add @matech/thebigpos-sdk
|
|
14
|
-
```
|
|
15
|
-
|
|
16
|
-
## Quick Start
|
|
17
|
-
```js
|
|
18
|
-
import { Api } from "@matech/thebigpos-sdk";
|
|
19
|
-
|
|
20
|
-
const securityWorker = (data: any) => {
|
|
21
|
-
return { headers: data }
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
const setBearerSecurityWorker = (accessToken:string) => {
|
|
25
|
-
const data = {
|
|
26
|
-
Authorization: `Bearer ${accessToken}`
|
|
27
|
-
};
|
|
28
|
-
|
|
29
|
-
apiClient.setSecurityData(data);
|
|
30
|
-
};
|
|
31
|
-
|
|
32
|
-
const apiClient = new Api({
|
|
33
|
-
baseURL:
|
|
34
|
-
process.env.REACT_APP_POS_API_HOST || 'https://api.thebigpos.com',
|
|
35
|
-
securityWorker,
|
|
36
|
-
})
|
|
37
|
-
|
|
38
|
-
apiClient.api.getSiteConfiguration().then((response) => {
|
|
39
|
-
console.log(response.data);
|
|
40
|
-
});
|
|
41
|
-
```
|
|
42
|
-
|
|
43
|
-
____
|
|
44
|
-
© 2024 Mortgage Automation Technologies. All rights reserved
|
|
1
|
+
# The BIG POS Typescript SDK
|
|
2
|
+
|
|
3
|
+
## Installation
|
|
4
|
+
Using npm:
|
|
5
|
+
|
|
6
|
+
```bash
|
|
7
|
+
$ npm install @matech/thebigpos-sdk
|
|
8
|
+
```
|
|
9
|
+
|
|
10
|
+
Using yarn:
|
|
11
|
+
|
|
12
|
+
```bash
|
|
13
|
+
$ yarn add @matech/thebigpos-sdk
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
## Quick Start
|
|
17
|
+
```js
|
|
18
|
+
import { Api } from "@matech/thebigpos-sdk";
|
|
19
|
+
|
|
20
|
+
const securityWorker = (data: any) => {
|
|
21
|
+
return { headers: data }
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
const setBearerSecurityWorker = (accessToken:string) => {
|
|
25
|
+
const data = {
|
|
26
|
+
Authorization: `Bearer ${accessToken}`
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
apiClient.setSecurityData(data);
|
|
30
|
+
};
|
|
31
|
+
|
|
32
|
+
const apiClient = new Api({
|
|
33
|
+
baseURL:
|
|
34
|
+
process.env.REACT_APP_POS_API_HOST || 'https://api.thebigpos.com',
|
|
35
|
+
securityWorker,
|
|
36
|
+
})
|
|
37
|
+
|
|
38
|
+
apiClient.api.getSiteConfiguration().then((response) => {
|
|
39
|
+
console.log(response.data);
|
|
40
|
+
});
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
____
|
|
44
|
+
© 2024 Mortgage Automation Technologies. All rights reserved
|
package/dist/index.d.ts
CHANGED
|
@@ -525,7 +525,7 @@ export interface CorporateSearchCriteria {
|
|
|
525
525
|
isActive?: boolean | null;
|
|
526
526
|
}
|
|
527
527
|
export interface CreateAccessScopeRequest {
|
|
528
|
-
scopeType:
|
|
528
|
+
scopeType: CreateAccessScopeRequestScopeTypeEnum;
|
|
529
529
|
/** @format uuid */
|
|
530
530
|
userId?: string | null;
|
|
531
531
|
/** @format uuid */
|
|
@@ -548,7 +548,7 @@ export interface CreateAccountRequest {
|
|
|
548
548
|
*/
|
|
549
549
|
nlmsid: number;
|
|
550
550
|
settings: AccountSettingsRequest;
|
|
551
|
-
environment:
|
|
551
|
+
environment: CreateAccountRequestEnvironmentEnum;
|
|
552
552
|
losIntegration: LOSIntegration;
|
|
553
553
|
}
|
|
554
554
|
export interface CreateBranchRequest {
|
|
@@ -577,7 +577,7 @@ export interface CreateDocumentTemplateRequest {
|
|
|
577
577
|
export interface CreateGroupMemberRequest {
|
|
578
578
|
/** @format uuid */
|
|
579
579
|
userId: string;
|
|
580
|
-
loanRole:
|
|
580
|
+
loanRole: CreateGroupMemberRequestLoanRoleEnum;
|
|
581
581
|
}
|
|
582
582
|
export interface CreateInviteRequest {
|
|
583
583
|
/** @minLength 1 */
|
|
@@ -588,7 +588,7 @@ export interface CreateInviteRequest {
|
|
|
588
588
|
emailAddress: string;
|
|
589
589
|
phoneNumber?: string | null;
|
|
590
590
|
/** @deprecated */
|
|
591
|
-
relationship:
|
|
591
|
+
relationship: CreateInviteRequestRelationshipEnum;
|
|
592
592
|
loanID: string;
|
|
593
593
|
route?: string | null;
|
|
594
594
|
/** @format uuid */
|
|
@@ -610,13 +610,13 @@ export interface CreateLoanImportRequest {
|
|
|
610
610
|
* @minLength 1
|
|
611
611
|
*/
|
|
612
612
|
startDate: string;
|
|
613
|
-
importMode:
|
|
613
|
+
importMode: CreateLoanImportRequestImportModeEnum;
|
|
614
614
|
}
|
|
615
615
|
export interface CreateUserDeviceRequest {
|
|
616
616
|
token: string;
|
|
617
617
|
}
|
|
618
618
|
export interface CreateUserDraft {
|
|
619
|
-
loanRole:
|
|
619
|
+
loanRole: CreateUserDraftLoanRoleEnum;
|
|
620
620
|
}
|
|
621
621
|
export interface CreateUserGroupRequest {
|
|
622
622
|
/**
|
|
@@ -1171,7 +1171,7 @@ export interface FusionFieldDisplay {
|
|
|
1171
1171
|
fieldValue: string;
|
|
1172
1172
|
}
|
|
1173
1173
|
export interface FusionReportFilter {
|
|
1174
|
-
filterType:
|
|
1174
|
+
filterType: FusionReportFilterFilterTypeEnum;
|
|
1175
1175
|
targetField: string;
|
|
1176
1176
|
targetValue: string;
|
|
1177
1177
|
}
|
|
@@ -1630,7 +1630,7 @@ export interface LoanContact {
|
|
|
1630
1630
|
email?: string | null;
|
|
1631
1631
|
phone?: string | null;
|
|
1632
1632
|
companyName?: string | null;
|
|
1633
|
-
role:
|
|
1633
|
+
role: LoanContactRoleEnum;
|
|
1634
1634
|
}
|
|
1635
1635
|
export interface LoanContactList {
|
|
1636
1636
|
email: string;
|
|
@@ -1717,13 +1717,13 @@ export interface LoanImport {
|
|
|
1717
1717
|
/** @format int32 */
|
|
1718
1718
|
importedCount: number;
|
|
1719
1719
|
statusMessage?: string | null;
|
|
1720
|
-
status:
|
|
1721
|
-
importMode:
|
|
1720
|
+
status: LoanImportStatusEnum;
|
|
1721
|
+
importMode: LoanImportImportModeEnum;
|
|
1722
1722
|
/** @format date-time */
|
|
1723
1723
|
createdAt?: string | null;
|
|
1724
1724
|
}
|
|
1725
1725
|
export interface LoanImportLog {
|
|
1726
|
-
level:
|
|
1726
|
+
level: LoanImportLogLevelEnum;
|
|
1727
1727
|
message: string;
|
|
1728
1728
|
/** @format date-time */
|
|
1729
1729
|
createdAt: string;
|
|
@@ -1767,8 +1767,8 @@ export interface LoanListPaginated {
|
|
|
1767
1767
|
export interface LoanLog {
|
|
1768
1768
|
/** @format uuid */
|
|
1769
1769
|
id: string;
|
|
1770
|
-
level:
|
|
1771
|
-
type:
|
|
1770
|
+
level: LoanLogLevelEnum;
|
|
1771
|
+
type: LoanLogTypeEnum;
|
|
1772
1772
|
message: string;
|
|
1773
1773
|
/** @format date-time */
|
|
1774
1774
|
createdAt: string;
|
|
@@ -1890,7 +1890,7 @@ export interface LoanUpdateRequestJsonPatchDocument {
|
|
|
1890
1890
|
contractResolver?: IContractResolver | null;
|
|
1891
1891
|
}
|
|
1892
1892
|
export interface LoanUpdateRequestOperation {
|
|
1893
|
-
operationType:
|
|
1893
|
+
operationType: LoanUpdateRequestOperationOperationTypeEnum;
|
|
1894
1894
|
path?: string | null;
|
|
1895
1895
|
op?: string | null;
|
|
1896
1896
|
from?: string | null;
|
|
@@ -1904,7 +1904,7 @@ export interface LoanUser {
|
|
|
1904
1904
|
email: string;
|
|
1905
1905
|
phone?: string | null;
|
|
1906
1906
|
role: string;
|
|
1907
|
-
loanRole:
|
|
1907
|
+
loanRole: LoanUserLoanRoleEnum;
|
|
1908
1908
|
isUser: boolean;
|
|
1909
1909
|
/** @format date-time */
|
|
1910
1910
|
createdAt: string;
|
|
@@ -2499,7 +2499,7 @@ export interface SSOTokenRequest {
|
|
|
2499
2499
|
redirectUri: string;
|
|
2500
2500
|
}
|
|
2501
2501
|
export interface SamlMetadataRequest {
|
|
2502
|
-
ssoIntegration:
|
|
2502
|
+
ssoIntegration: SamlMetadataRequestSsoIntegrationEnum;
|
|
2503
2503
|
}
|
|
2504
2504
|
export interface SendForgotPasswordRequest {
|
|
2505
2505
|
/**
|
|
@@ -2534,7 +2534,7 @@ export interface SiteConfiguration {
|
|
|
2534
2534
|
deletedAt?: string | null;
|
|
2535
2535
|
/** @format uuid */
|
|
2536
2536
|
id: string;
|
|
2537
|
-
type:
|
|
2537
|
+
type: SiteConfigurationTypeEnum;
|
|
2538
2538
|
/** @format uuid */
|
|
2539
2539
|
entityID: string;
|
|
2540
2540
|
/** @format int32 */
|
|
@@ -2728,7 +2728,7 @@ export interface SiteConfigurationByUrl {
|
|
|
2728
2728
|
deletedAt?: string | null;
|
|
2729
2729
|
/** @format uuid */
|
|
2730
2730
|
id: string;
|
|
2731
|
-
type:
|
|
2731
|
+
type: SiteConfigurationByUrlTypeEnum;
|
|
2732
2732
|
/** @format uuid */
|
|
2733
2733
|
entityID: string;
|
|
2734
2734
|
/** @format int32 */
|
|
@@ -2939,7 +2939,7 @@ export interface SiteConfigurationForm {
|
|
|
2939
2939
|
export interface SiteConfigurationReduced {
|
|
2940
2940
|
/** @format uuid */
|
|
2941
2941
|
id: string;
|
|
2942
|
-
type:
|
|
2942
|
+
type: SiteConfigurationReducedTypeEnum;
|
|
2943
2943
|
url?: string | null;
|
|
2944
2944
|
name: string;
|
|
2945
2945
|
/** @format int64 */
|
|
@@ -2956,7 +2956,7 @@ export interface SiteConfigurationRequest {
|
|
|
2956
2956
|
entityID: string;
|
|
2957
2957
|
/** @format int32 */
|
|
2958
2958
|
entityType: number;
|
|
2959
|
-
type:
|
|
2959
|
+
type: SiteConfigurationRequestTypeEnum;
|
|
2960
2960
|
url: string;
|
|
2961
2961
|
name: string;
|
|
2962
2962
|
introduction?: string | null;
|
|
@@ -3131,7 +3131,7 @@ export interface SiteConfigurationSearchCriteria {
|
|
|
3131
3131
|
export interface SiteConfigurationSummary {
|
|
3132
3132
|
/** @format uuid */
|
|
3133
3133
|
id: string;
|
|
3134
|
-
type:
|
|
3134
|
+
type: SiteConfigurationSummaryTypeEnum;
|
|
3135
3135
|
url?: string | null;
|
|
3136
3136
|
name: string;
|
|
3137
3137
|
/** @format int64 */
|
|
@@ -3533,7 +3533,7 @@ export interface UserDevice {
|
|
|
3533
3533
|
export interface UserDraft {
|
|
3534
3534
|
/** @format uuid */
|
|
3535
3535
|
draftID: string;
|
|
3536
|
-
role:
|
|
3536
|
+
role: UserDraftRoleEnum;
|
|
3537
3537
|
user: User;
|
|
3538
3538
|
}
|
|
3539
3539
|
export interface UserDraftPaginated {
|
|
@@ -3557,7 +3557,7 @@ export interface UserGroupAccessScope {
|
|
|
3557
3557
|
id: string;
|
|
3558
3558
|
/** @format uuid */
|
|
3559
3559
|
groupId: string;
|
|
3560
|
-
scopeType:
|
|
3560
|
+
scopeType: UserGroupAccessScopeScopeTypeEnum;
|
|
3561
3561
|
/** @format uuid */
|
|
3562
3562
|
userId?: string | null;
|
|
3563
3563
|
/** @format uuid */
|
|
@@ -3590,7 +3590,7 @@ export interface UserLoan {
|
|
|
3590
3590
|
deletedAt?: string | null;
|
|
3591
3591
|
loanID: string;
|
|
3592
3592
|
user: User;
|
|
3593
|
-
role:
|
|
3593
|
+
role: UserLoanRoleEnum;
|
|
3594
3594
|
/** @format int32 */
|
|
3595
3595
|
borrowerPair?: number | null;
|
|
3596
3596
|
/** @format int32 */
|
|
@@ -3723,7 +3723,7 @@ export interface UserSummary {
|
|
|
3723
3723
|
id: string;
|
|
3724
3724
|
name?: string | null;
|
|
3725
3725
|
email?: string | null;
|
|
3726
|
-
role:
|
|
3726
|
+
role: UserSummaryRoleEnum;
|
|
3727
3727
|
}
|
|
3728
3728
|
export interface VerifyPasswordRequest {
|
|
3729
3729
|
/**
|
|
@@ -3756,6 +3756,38 @@ export interface Workflow {
|
|
|
3756
3756
|
tileSubtitle: string;
|
|
3757
3757
|
icon: string;
|
|
3758
3758
|
}
|
|
3759
|
+
export type CreateAccessScopeRequestScopeTypeEnum = "User" | "Branch";
|
|
3760
|
+
export type CreateAccountRequestEnvironmentEnum = "Development" | "Staging" | "UAT" | "Production";
|
|
3761
|
+
export type CreateGroupMemberRequestLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
|
|
3762
|
+
/** @deprecated */
|
|
3763
|
+
export type CreateInviteRequestRelationshipEnum = "NotApplicable" | "Spouse" | "NonSpouse";
|
|
3764
|
+
export type CreateLoanImportRequestImportModeEnum = "All" | "NewOnly" | "UpdateOnly";
|
|
3765
|
+
export type CreateUserDraftLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
|
|
3766
|
+
export type FusionReportFilterFilterTypeEnum = "DateGreaterThanOrEqualTo" | "DateGreaterThan" | "DateLessThan" | "DateLessThanOrEqualTo" | "DateEquals" | "DateDoesntEqual" | "DateNonEmpty" | "DateEmpty" | "StringContains" | "StringEquals" | "StringNotEmpty" | "StringNotEquals" | "StringNotContains";
|
|
3767
|
+
export type LoanContactRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
|
|
3768
|
+
export type LoanImportStatusEnum = "WaitingProcess" | "InProgress" | "Completed" | "Failed" | "Cancelled";
|
|
3769
|
+
export type LoanImportImportModeEnum = "All" | "NewOnly" | "UpdateOnly";
|
|
3770
|
+
export type LoanImportLogLevelEnum = "None" | "Info" | "Warning" | "Error";
|
|
3771
|
+
export type LoanLogLevelEnum = "None" | "Info" | "Warning" | "Error";
|
|
3772
|
+
export type LoanLogTypeEnum = "Loan" | "Queue" | "POSFlagChanged" | "Verification";
|
|
3773
|
+
export type LoanUpdateRequestOperationOperationTypeEnum = "Add" | "Remove" | "Replace" | "Move" | "Copy" | "Test" | "Invalid";
|
|
3774
|
+
export type LoanUserLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
|
|
3775
|
+
export type SamlMetadataRequestSsoIntegrationEnum = "ConsumerConnect" | "TheBigPOS";
|
|
3776
|
+
export type SiteConfigurationTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
3777
|
+
export type SiteConfigurationByUrlTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
3778
|
+
export type SiteConfigurationReducedTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
3779
|
+
export type SiteConfigurationRequestTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
3780
|
+
export type SiteConfigurationSummaryTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
|
|
3781
|
+
export type UserDraftRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
|
|
3782
|
+
export type UserGroupAccessScopeScopeTypeEnum = "User" | "Branch";
|
|
3783
|
+
export type UserLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
|
|
3784
|
+
export type UserSummaryRoleEnum = "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "BranchManager" | "SystemAdmin";
|
|
3785
|
+
/** @default "Realtor" */
|
|
3786
|
+
export type GetPartnersParamsRoleEnum = "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "BranchManager" | "SystemAdmin";
|
|
3787
|
+
export type GetSamlMetadataParamsSSoIntegrationEnum = "ConsumerConnect" | "TheBigPOS";
|
|
3788
|
+
export type GetSamlMetadataParamsEnum = "ConsumerConnect" | "TheBigPOS";
|
|
3789
|
+
export type CreateOrReplaceSamlMetadataParamsSSoIntegrationEnum = "ConsumerConnect" | "TheBigPOS";
|
|
3790
|
+
export type CreateOrReplaceSamlMetadataParamsEnum = "ConsumerConnect" | "TheBigPOS";
|
|
3759
3791
|
import type { AxiosInstance, AxiosRequestConfig, AxiosResponse, ResponseType } from "axios";
|
|
3760
3792
|
export type QueryParamsType = Record<string | number, any>;
|
|
3761
3793
|
export interface FullRequestParams extends Omit<AxiosRequestConfig, "data" | "params" | "url" | "responseType"> {
|
|
@@ -6453,7 +6485,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6453
6485
|
getPartners: (query?: {
|
|
6454
6486
|
showAll?: boolean;
|
|
6455
6487
|
/** @default "Realtor" */
|
|
6456
|
-
role?:
|
|
6488
|
+
role?: GetPartnersParamsRoleEnum;
|
|
6457
6489
|
/** @format int32 */
|
|
6458
6490
|
pageSize?: number;
|
|
6459
6491
|
/** @format int32 */
|
|
@@ -6631,7 +6663,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6631
6663
|
* @response `200` `File` Success
|
|
6632
6664
|
* @response `404` `ProblemDetails` Not Found
|
|
6633
6665
|
*/
|
|
6634
|
-
getSamlMetadata: (sSoIntegration:
|
|
6666
|
+
getSamlMetadata: (sSoIntegration: GetSamlMetadataParamsEnum, ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
|
|
6635
6667
|
/**
|
|
6636
6668
|
* No description
|
|
6637
6669
|
*
|
|
@@ -6642,7 +6674,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6642
6674
|
* @secure
|
|
6643
6675
|
* @response `200` `File` Success
|
|
6644
6676
|
*/
|
|
6645
|
-
createOrReplaceSamlMetadata: (sSoIntegration:
|
|
6677
|
+
createOrReplaceSamlMetadata: (sSoIntegration: CreateOrReplaceSamlMetadataParamsEnum, ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
|
|
6646
6678
|
/**
|
|
6647
6679
|
* No description
|
|
6648
6680
|
*
|