@matech/thebigpos-sdk 2.14.0-rc5 → 2.14.0-rc6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.husky/pre-commit +2 -1
- package/dist/index.d.ts +119 -83
- package/dist/index.js +21 -31
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +147 -123
package/.husky/pre-commit
CHANGED
|
@@ -1 +1,2 @@
|
|
|
1
|
-
yarn build
|
|
1
|
+
yarn build
|
|
2
|
+
git add .
|
package/dist/index.d.ts
CHANGED
|
@@ -38,6 +38,15 @@ export interface Account {
|
|
|
38
38
|
allowedLoginsWithoutMFA: number;
|
|
39
39
|
losSettings: LOSSettings;
|
|
40
40
|
asoSettings?: ASOSettings | null;
|
|
41
|
+
settings: AccountSettings;
|
|
42
|
+
}
|
|
43
|
+
export interface AccountSettings {
|
|
44
|
+
isSmsEnabled: boolean;
|
|
45
|
+
smsNumber?: string | null;
|
|
46
|
+
}
|
|
47
|
+
export interface AccountSettingsRequest {
|
|
48
|
+
isSmsEnabled: boolean;
|
|
49
|
+
smsNumber?: string | null;
|
|
41
50
|
}
|
|
42
51
|
export interface Action {
|
|
43
52
|
/** @format uuid */
|
|
@@ -152,6 +161,7 @@ export interface AdminAccessUser {
|
|
|
152
161
|
canImpersonate: boolean;
|
|
153
162
|
loanIDs: string[];
|
|
154
163
|
drafts: Draft[];
|
|
164
|
+
notificationSettings?: UserNotificationSettings | null;
|
|
155
165
|
/** @format uuid */
|
|
156
166
|
accountID?: string | null;
|
|
157
167
|
loans: UserLoan[];
|
|
@@ -227,6 +237,18 @@ export interface Attachment {
|
|
|
227
237
|
}
|
|
228
238
|
export type BorrowerRelationship = "NotApplicable" | "Spouse" | "NonSpouse";
|
|
229
239
|
export type BorrowerType = "Borrower" | "CoBorrower" | "Unknown";
|
|
240
|
+
export interface BranchBase {
|
|
241
|
+
/** @format date-time */
|
|
242
|
+
createdAt: string;
|
|
243
|
+
/** @format date-time */
|
|
244
|
+
updatedAt?: string | null;
|
|
245
|
+
/** @format date-time */
|
|
246
|
+
deletedAt?: string | null;
|
|
247
|
+
/** @format uuid */
|
|
248
|
+
id: string;
|
|
249
|
+
name: string;
|
|
250
|
+
type: string;
|
|
251
|
+
}
|
|
230
252
|
export interface BranchReduced {
|
|
231
253
|
/** @format uuid */
|
|
232
254
|
id: string;
|
|
@@ -263,6 +285,7 @@ export interface BranchUser {
|
|
|
263
285
|
canImpersonate: boolean;
|
|
264
286
|
loanIDs: string[];
|
|
265
287
|
drafts: Draft[];
|
|
288
|
+
notificationSettings?: UserNotificationSettings | null;
|
|
266
289
|
/** @format uuid */
|
|
267
290
|
branchID: string;
|
|
268
291
|
branchName: string;
|
|
@@ -390,6 +413,17 @@ export interface Corporate {
|
|
|
390
413
|
branchIDs: string[];
|
|
391
414
|
siteConfigurations: SiteConfigurationReduced[];
|
|
392
415
|
}
|
|
416
|
+
export interface CorporateBase {
|
|
417
|
+
/** @format date-time */
|
|
418
|
+
createdAt: string;
|
|
419
|
+
/** @format date-time */
|
|
420
|
+
updatedAt?: string | null;
|
|
421
|
+
/** @format date-time */
|
|
422
|
+
deletedAt?: string | null;
|
|
423
|
+
/** @format uuid */
|
|
424
|
+
id: string;
|
|
425
|
+
name: string;
|
|
426
|
+
}
|
|
393
427
|
export interface CorporatePaginated {
|
|
394
428
|
rows: Corporate[];
|
|
395
429
|
pagination: Pagination;
|
|
@@ -423,6 +457,7 @@ export interface CreateAccountRequest {
|
|
|
423
457
|
* @min 0
|
|
424
458
|
*/
|
|
425
459
|
nlmsid: number;
|
|
460
|
+
settings: AccountSettingsRequest;
|
|
426
461
|
}
|
|
427
462
|
export interface CreateBranchRequest {
|
|
428
463
|
/**
|
|
@@ -527,6 +562,7 @@ export interface DetailedUser {
|
|
|
527
562
|
canImpersonate: boolean;
|
|
528
563
|
loanIDs: string[];
|
|
529
564
|
drafts: Draft[];
|
|
565
|
+
notificationSettings?: UserNotificationSettings | null;
|
|
530
566
|
}
|
|
531
567
|
export interface Device {
|
|
532
568
|
/** @format uuid */
|
|
@@ -770,7 +806,6 @@ export interface EnabledServices {
|
|
|
770
806
|
borrowerTasks?: boolean | null;
|
|
771
807
|
docusign?: boolean | null;
|
|
772
808
|
emailNotifications?: boolean | null;
|
|
773
|
-
textNotifications?: boolean | null;
|
|
774
809
|
voc?: boolean | null;
|
|
775
810
|
spanishPrequal?: boolean | null;
|
|
776
811
|
spanishFullApp?: boolean | null;
|
|
@@ -802,6 +837,8 @@ export interface Error {
|
|
|
802
837
|
message: string;
|
|
803
838
|
}
|
|
804
839
|
export interface ExtendedLoan {
|
|
840
|
+
/** @format uuid */
|
|
841
|
+
id: string;
|
|
805
842
|
loanID: string;
|
|
806
843
|
loanNumber?: string | null;
|
|
807
844
|
/** @format date-time */
|
|
@@ -1290,6 +1327,8 @@ export interface ListingSearchCriteria {
|
|
|
1290
1327
|
partnerIds?: string[] | null;
|
|
1291
1328
|
}
|
|
1292
1329
|
export interface Loan {
|
|
1330
|
+
/** @format uuid */
|
|
1331
|
+
id: string;
|
|
1293
1332
|
loanID: string;
|
|
1294
1333
|
loanNumber?: string | null;
|
|
1295
1334
|
/** @format date-time */
|
|
@@ -1444,11 +1483,12 @@ export interface LoanQueue {
|
|
|
1444
1483
|
deletedAt?: string | null;
|
|
1445
1484
|
/** @format uuid */
|
|
1446
1485
|
id: string;
|
|
1447
|
-
|
|
1486
|
+
loan?: Loan | null;
|
|
1448
1487
|
type: string;
|
|
1449
1488
|
reason: string;
|
|
1450
1489
|
status: string;
|
|
1451
1490
|
details?: string | null;
|
|
1491
|
+
jobID?: string | null;
|
|
1452
1492
|
user: UserPublic;
|
|
1453
1493
|
loanOfficer: LoanOfficerPublic;
|
|
1454
1494
|
siteConfiguration: SiteConfigurationReduced;
|
|
@@ -1477,15 +1517,16 @@ export interface LoanQueueWithData {
|
|
|
1477
1517
|
deletedAt?: string | null;
|
|
1478
1518
|
/** @format uuid */
|
|
1479
1519
|
id: string;
|
|
1480
|
-
|
|
1520
|
+
loan?: Loan | null;
|
|
1481
1521
|
type: string;
|
|
1482
1522
|
reason: string;
|
|
1483
1523
|
status: string;
|
|
1484
1524
|
details?: string | null;
|
|
1525
|
+
jobID?: string | null;
|
|
1485
1526
|
user: UserPublic;
|
|
1486
1527
|
loanOfficer: LoanOfficerPublic;
|
|
1487
1528
|
siteConfiguration: SiteConfigurationReduced;
|
|
1488
|
-
data
|
|
1529
|
+
data?: any;
|
|
1489
1530
|
}
|
|
1490
1531
|
export interface LoanRecord {
|
|
1491
1532
|
loanGuid: string;
|
|
@@ -1571,30 +1612,6 @@ export interface ModuleParameterValue {
|
|
|
1571
1612
|
value?: any;
|
|
1572
1613
|
isInherited: boolean;
|
|
1573
1614
|
}
|
|
1574
|
-
export interface NotificationLog {
|
|
1575
|
-
/** @format uuid */
|
|
1576
|
-
id: string;
|
|
1577
|
-
type: "Email" | "Text" | "PushNotification";
|
|
1578
|
-
to: string;
|
|
1579
|
-
cc?: string | null;
|
|
1580
|
-
subject?: string | null;
|
|
1581
|
-
message: string;
|
|
1582
|
-
notificationTemplate?: NotificationTemplate | null;
|
|
1583
|
-
/** @format date-time */
|
|
1584
|
-
createdAt: string;
|
|
1585
|
-
}
|
|
1586
|
-
export interface NotificationLogPaginated {
|
|
1587
|
-
rows: NotificationLog[];
|
|
1588
|
-
pagination: Pagination;
|
|
1589
|
-
/** @format int64 */
|
|
1590
|
-
count: number;
|
|
1591
|
-
}
|
|
1592
|
-
export interface NotificationLogSearchCriteria {
|
|
1593
|
-
searchText?: string | null;
|
|
1594
|
-
type?: NotificationType | null;
|
|
1595
|
-
to?: string[] | null;
|
|
1596
|
-
cc?: string[] | null;
|
|
1597
|
-
}
|
|
1598
1615
|
export interface NotificationTemplate {
|
|
1599
1616
|
/** @format date-time */
|
|
1600
1617
|
createdAt?: string | null;
|
|
@@ -1674,6 +1691,7 @@ export interface NotificationTemplateVersion {
|
|
|
1674
1691
|
isActive: boolean;
|
|
1675
1692
|
htmlBody: string;
|
|
1676
1693
|
plainBody: string;
|
|
1694
|
+
textBody: string;
|
|
1677
1695
|
notificationTemplate: NotificationTemplate;
|
|
1678
1696
|
}
|
|
1679
1697
|
export interface NotificationTemplateVersionBase {
|
|
@@ -1691,6 +1709,7 @@ export interface NotificationTemplateVersionBase {
|
|
|
1691
1709
|
isActive: boolean;
|
|
1692
1710
|
htmlBody: string;
|
|
1693
1711
|
plainBody: string;
|
|
1712
|
+
textBody: string;
|
|
1694
1713
|
}
|
|
1695
1714
|
export interface NotificationTemplateVersionRequest {
|
|
1696
1715
|
/** @maxLength 255 */
|
|
@@ -1698,6 +1717,7 @@ export interface NotificationTemplateVersionRequest {
|
|
|
1698
1717
|
isActive: boolean;
|
|
1699
1718
|
htmlBody: string;
|
|
1700
1719
|
plainBody: string;
|
|
1720
|
+
textBody: string;
|
|
1701
1721
|
}
|
|
1702
1722
|
export interface NotificationTemplateVersionUpdateRequest {
|
|
1703
1723
|
/**
|
|
@@ -1710,8 +1730,9 @@ export interface NotificationTemplateVersionUpdateRequest {
|
|
|
1710
1730
|
htmlBody: string;
|
|
1711
1731
|
/** @minLength 1 */
|
|
1712
1732
|
plainBody: string;
|
|
1733
|
+
/** @minLength 1 */
|
|
1734
|
+
textBody: string;
|
|
1713
1735
|
}
|
|
1714
|
-
export type NotificationType = "Email" | "Text" | "PushNotification";
|
|
1715
1736
|
export interface Operation {
|
|
1716
1737
|
op?: string;
|
|
1717
1738
|
value?: object | null;
|
|
@@ -1962,6 +1983,7 @@ export interface SendNotificationForLoanRequest {
|
|
|
1962
1983
|
siteConfigurationId?: string | null;
|
|
1963
1984
|
/** @minLength 1 */
|
|
1964
1985
|
email: string;
|
|
1986
|
+
phone?: string | null;
|
|
1965
1987
|
attachments: Attachment[];
|
|
1966
1988
|
}
|
|
1967
1989
|
export interface SiteConfiguration {
|
|
@@ -2155,6 +2177,7 @@ export interface SiteConfiguration {
|
|
|
2155
2177
|
modules: Module[];
|
|
2156
2178
|
user?: UserPublic | null;
|
|
2157
2179
|
asoSettings?: ASOSettings | null;
|
|
2180
|
+
accountSettings: AccountSettings;
|
|
2158
2181
|
}
|
|
2159
2182
|
export interface SiteConfigurationByUrl {
|
|
2160
2183
|
/** @format date-time */
|
|
@@ -2347,6 +2370,7 @@ export interface SiteConfigurationByUrl {
|
|
|
2347
2370
|
modules: Module[];
|
|
2348
2371
|
user?: UserPublic | null;
|
|
2349
2372
|
asoSettings?: ASOSettings | null;
|
|
2373
|
+
accountSettings: AccountSettings;
|
|
2350
2374
|
workflows: Workflow[];
|
|
2351
2375
|
}
|
|
2352
2376
|
export interface SiteConfigurationForm {
|
|
@@ -2370,12 +2394,6 @@ export interface SiteConfigurationForm {
|
|
|
2370
2394
|
icon: string;
|
|
2371
2395
|
entityTypes: string[];
|
|
2372
2396
|
}
|
|
2373
|
-
export interface SiteConfigurationPaginated {
|
|
2374
|
-
rows: SiteConfiguration[];
|
|
2375
|
-
pagination: Pagination;
|
|
2376
|
-
/** @format int64 */
|
|
2377
|
-
count: number;
|
|
2378
|
-
}
|
|
2379
2397
|
export interface SiteConfigurationReduced {
|
|
2380
2398
|
/** @format uuid */
|
|
2381
2399
|
id: string;
|
|
@@ -2556,6 +2574,37 @@ export interface SiteConfigurationSearchCriteria {
|
|
|
2556
2574
|
searchText?: string | null;
|
|
2557
2575
|
isActive?: boolean | null;
|
|
2558
2576
|
entityType?: string | null;
|
|
2577
|
+
/** @format uuid */
|
|
2578
|
+
branch?: string | null;
|
|
2579
|
+
/** @format uuid */
|
|
2580
|
+
brand?: string | null;
|
|
2581
|
+
role?: UserRole | null;
|
|
2582
|
+
branchType?: string | null;
|
|
2583
|
+
}
|
|
2584
|
+
export interface SiteConfigurationWithBranchBrandLOInformation {
|
|
2585
|
+
/** @format uuid */
|
|
2586
|
+
id: string;
|
|
2587
|
+
url?: string | null;
|
|
2588
|
+
name: string;
|
|
2589
|
+
/** @format int64 */
|
|
2590
|
+
nmlsid: number;
|
|
2591
|
+
email?: string | null;
|
|
2592
|
+
companyName?: string | null;
|
|
2593
|
+
/** @format date-time */
|
|
2594
|
+
createdAt?: string | null;
|
|
2595
|
+
/** @format date-time */
|
|
2596
|
+
deletedAt?: string | null;
|
|
2597
|
+
branch?: BranchBase | null;
|
|
2598
|
+
corporate?: CorporateBase | null;
|
|
2599
|
+
loanOfficer?: User | null;
|
|
2600
|
+
realtor?: User | null;
|
|
2601
|
+
branchName?: string | null;
|
|
2602
|
+
}
|
|
2603
|
+
export interface SiteConfigurationWithBranchBrandLOInformationPaginated {
|
|
2604
|
+
rows: SiteConfigurationWithBranchBrandLOInformation[];
|
|
2605
|
+
pagination: Pagination;
|
|
2606
|
+
/** @format int64 */
|
|
2607
|
+
count: number;
|
|
2559
2608
|
}
|
|
2560
2609
|
export interface SiteConfigurationWithInherited {
|
|
2561
2610
|
siteConfiguration: SiteConfiguration;
|
|
@@ -2610,8 +2659,6 @@ export interface Task {
|
|
|
2610
2659
|
usedInBusinessRule: boolean;
|
|
2611
2660
|
willAutocompleteAfterResponse: boolean;
|
|
2612
2661
|
hasAutoPropagationOnAdd: boolean;
|
|
2613
|
-
/** @format int32 */
|
|
2614
|
-
commentsCount: number;
|
|
2615
2662
|
}
|
|
2616
2663
|
export interface TaskComment {
|
|
2617
2664
|
/** @format uuid */
|
|
@@ -2684,6 +2731,7 @@ export interface TestSendNotificationForLoanRequest {
|
|
|
2684
2731
|
/** @format uuid */
|
|
2685
2732
|
siteConfigurationId: string;
|
|
2686
2733
|
toAddress?: string | null;
|
|
2734
|
+
toPhoneNumber?: string | null;
|
|
2687
2735
|
templateName?: string | null;
|
|
2688
2736
|
attachments: Attachment[];
|
|
2689
2737
|
}
|
|
@@ -2780,6 +2828,7 @@ export interface UpdateAccountRequest {
|
|
|
2780
2828
|
allowedLoginsWithoutMFA: number;
|
|
2781
2829
|
losSettings: LOSSettingsUpdateRequest;
|
|
2782
2830
|
asoSettings?: ASOSettings | null;
|
|
2831
|
+
settings: AccountSettingsRequest;
|
|
2783
2832
|
}
|
|
2784
2833
|
export interface UpdateDocumentTemplateRequest {
|
|
2785
2834
|
/** @minLength 1 */
|
|
@@ -2835,6 +2884,7 @@ export interface UpdateMeRequest {
|
|
|
2835
2884
|
title?: string | null;
|
|
2836
2885
|
forcePasswordReset: boolean;
|
|
2837
2886
|
mfaEnabled: boolean;
|
|
2887
|
+
notificationSettings: UserNotificationSettingsUpdateRequest;
|
|
2838
2888
|
}
|
|
2839
2889
|
export interface UpdateMobilePhoneRequest {
|
|
2840
2890
|
phone: string;
|
|
@@ -2931,6 +2981,16 @@ export interface UserMobilePhoneVerificationRequest {
|
|
|
2931
2981
|
/** @minLength 1 */
|
|
2932
2982
|
code: string;
|
|
2933
2983
|
}
|
|
2984
|
+
export interface UserNotificationSettings {
|
|
2985
|
+
emailEnabled: boolean;
|
|
2986
|
+
textEnabled: boolean;
|
|
2987
|
+
textOptIn?: boolean | null;
|
|
2988
|
+
}
|
|
2989
|
+
export interface UserNotificationSettingsUpdateRequest {
|
|
2990
|
+
emailEnabled: boolean;
|
|
2991
|
+
textEnabled: boolean;
|
|
2992
|
+
textOptIn?: boolean | null;
|
|
2993
|
+
}
|
|
2934
2994
|
export interface UserPaginated {
|
|
2935
2995
|
rows: User[];
|
|
2936
2996
|
pagination: Pagination;
|
|
@@ -3097,7 +3157,7 @@ export declare class HttpClient<SecurityDataType = unknown> {
|
|
|
3097
3157
|
}
|
|
3098
3158
|
/**
|
|
3099
3159
|
* @title The Big POS API
|
|
3100
|
-
* @version v2.
|
|
3160
|
+
* @version v2.14.1
|
|
3101
3161
|
* @termsOfService https://www.thebigpos.com/terms-of-use/
|
|
3102
3162
|
* @contact Mortgage Automation Technologies <support@thebigpos.com> (https://www.thebigpos.com/terms-of-use/)
|
|
3103
3163
|
*/
|
|
@@ -4772,6 +4832,16 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
4772
4832
|
* @secure
|
|
4773
4833
|
*/
|
|
4774
4834
|
replaceLoanQueue: (loanQueueId: string, data: UpdateLoanQueueRequest, params?: RequestParams) => Promise<AxiosResponse<LoanQueueWithData, any>>;
|
|
4835
|
+
/**
|
|
4836
|
+
* No description
|
|
4837
|
+
*
|
|
4838
|
+
* @tags LoanQueue
|
|
4839
|
+
* @name DeleteLoanQueue
|
|
4840
|
+
* @summary Delete Loan Queue Item
|
|
4841
|
+
* @request DELETE:/api/loans/queue/{loanQueueId}
|
|
4842
|
+
* @secure
|
|
4843
|
+
*/
|
|
4844
|
+
deleteLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
4775
4845
|
/**
|
|
4776
4846
|
* No description
|
|
4777
4847
|
*
|
|
@@ -4852,10 +4922,10 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
4852
4922
|
* @tags LoanTaskComments
|
|
4853
4923
|
* @name SearchLoanTaskComments
|
|
4854
4924
|
* @summary Search
|
|
4855
|
-
* @request POST:/api/loans/{loanId}/tasks/{
|
|
4925
|
+
* @request POST:/api/loans/{loanId}/tasks/{userLoanTaskId}/comments/search
|
|
4856
4926
|
* @secure
|
|
4857
4927
|
*/
|
|
4858
|
-
searchLoanTaskComments: (loanId: string,
|
|
4928
|
+
searchLoanTaskComments: (loanId: string, userLoanTaskId: string, data: TaskCommentSearchCriteria, query?: {
|
|
4859
4929
|
/** @format int32 */
|
|
4860
4930
|
pageSize?: number;
|
|
4861
4931
|
/** @format int32 */
|
|
@@ -4869,40 +4939,40 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
4869
4939
|
* @tags LoanTaskComments
|
|
4870
4940
|
* @name GetLoanTaskComment
|
|
4871
4941
|
* @summary Get by ID
|
|
4872
|
-
* @request GET:/api/loans/{loanId}/tasks/{
|
|
4942
|
+
* @request GET:/api/loans/{loanId}/tasks/{userLoanTaskId}/comments/{id}
|
|
4873
4943
|
* @secure
|
|
4874
4944
|
*/
|
|
4875
|
-
getLoanTaskComment: (id: string, loanId: string,
|
|
4945
|
+
getLoanTaskComment: (id: string, loanId: string, userLoanTaskId: string, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any>>;
|
|
4876
4946
|
/**
|
|
4877
4947
|
* No description
|
|
4878
4948
|
*
|
|
4879
4949
|
* @tags LoanTaskComments
|
|
4880
4950
|
* @name CreateLoanTaskComment
|
|
4881
4951
|
* @summary Create
|
|
4882
|
-
* @request POST:/api/loans/{loanId}/tasks/{
|
|
4952
|
+
* @request POST:/api/loans/{loanId}/tasks/{userLoanTaskId}/comments
|
|
4883
4953
|
* @secure
|
|
4884
4954
|
*/
|
|
4885
|
-
createLoanTaskComment: (loanId: string,
|
|
4955
|
+
createLoanTaskComment: (loanId: string, userLoanTaskId: string, data: TaskCommentRequest, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any>>;
|
|
4886
4956
|
/**
|
|
4887
4957
|
* No description
|
|
4888
4958
|
*
|
|
4889
4959
|
* @tags LoanTaskComments
|
|
4890
4960
|
* @name ReplaceLoanTaskComment
|
|
4891
4961
|
* @summary Replace
|
|
4892
|
-
* @request PUT:/api/loans/{loanId}/tasks/{
|
|
4962
|
+
* @request PUT:/api/loans/{loanId}/tasks/{userLoanTaskId}/comments/{commentId}
|
|
4893
4963
|
* @secure
|
|
4894
4964
|
*/
|
|
4895
|
-
replaceLoanTaskComment: (loanId: string,
|
|
4965
|
+
replaceLoanTaskComment: (loanId: string, userLoanTaskId: string, commentId: string, data: TaskCommentRequest, params?: RequestParams) => Promise<AxiosResponse<TaskComment, any>>;
|
|
4896
4966
|
/**
|
|
4897
4967
|
* No description
|
|
4898
4968
|
*
|
|
4899
4969
|
* @tags LoanTaskComments
|
|
4900
4970
|
* @name DeleteLoanTaskComment
|
|
4901
4971
|
* @summary Delete
|
|
4902
|
-
* @request DELETE:/api/loans/{loanId}/tasks/{
|
|
4972
|
+
* @request DELETE:/api/loans/{loanId}/tasks/{userLoanTaskId}/comments/{commentId}
|
|
4903
4973
|
* @secure
|
|
4904
4974
|
*/
|
|
4905
|
-
deleteLoanTaskComment: (loanId: string,
|
|
4975
|
+
deleteLoanTaskComment: (loanId: string, userLoanTaskId: string, commentId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
4906
4976
|
/**
|
|
4907
4977
|
* No description
|
|
4908
4978
|
*
|
|
@@ -5088,40 +5158,6 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5088
5158
|
* @secure
|
|
5089
5159
|
*/
|
|
5090
5160
|
deleteMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
5091
|
-
/**
|
|
5092
|
-
* No description
|
|
5093
|
-
*
|
|
5094
|
-
* @tags NotificationLogs
|
|
5095
|
-
* @name GetNotificationLogs
|
|
5096
|
-
* @summary Get All
|
|
5097
|
-
* @request GET:/api/notifications/logs
|
|
5098
|
-
* @secure
|
|
5099
|
-
*/
|
|
5100
|
-
getNotificationLogs: (query?: {
|
|
5101
|
-
/** @format int32 */
|
|
5102
|
-
pageSize?: number;
|
|
5103
|
-
/** @format int32 */
|
|
5104
|
-
pageNumber?: number;
|
|
5105
|
-
sortBy?: string;
|
|
5106
|
-
sortDirection?: string;
|
|
5107
|
-
}, params?: RequestParams) => Promise<AxiosResponse<NotificationLog[], any>>;
|
|
5108
|
-
/**
|
|
5109
|
-
* No description
|
|
5110
|
-
*
|
|
5111
|
-
* @tags NotificationLogs
|
|
5112
|
-
* @name SearchNotificationLog
|
|
5113
|
-
* @summary Search
|
|
5114
|
-
* @request POST:/api/notifications/logs/search
|
|
5115
|
-
* @secure
|
|
5116
|
-
*/
|
|
5117
|
-
searchNotificationLog: (data: NotificationLogSearchCriteria, query?: {
|
|
5118
|
-
/** @format int32 */
|
|
5119
|
-
pageSize?: number;
|
|
5120
|
-
/** @format int32 */
|
|
5121
|
-
pageNumber?: number;
|
|
5122
|
-
sortBy?: string;
|
|
5123
|
-
sortDirection?: string;
|
|
5124
|
-
}, params?: RequestParams) => Promise<AxiosResponse<NotificationLogPaginated, any>>;
|
|
5125
5161
|
/**
|
|
5126
5162
|
* No description
|
|
5127
5163
|
*
|
|
@@ -5449,7 +5485,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
5449
5485
|
pageNumber?: number;
|
|
5450
5486
|
sortBy?: string;
|
|
5451
5487
|
sortDirection?: string;
|
|
5452
|
-
}, params?: RequestParams) => Promise<AxiosResponse<
|
|
5488
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SiteConfigurationWithBranchBrandLOInformationPaginated, any>>;
|
|
5453
5489
|
/**
|
|
5454
5490
|
* No description
|
|
5455
5491
|
*
|
package/dist/index.js
CHANGED
|
@@ -93,7 +93,7 @@ export class HttpClient {
|
|
|
93
93
|
}
|
|
94
94
|
/**
|
|
95
95
|
* @title The Big POS API
|
|
96
|
-
* @version v2.
|
|
96
|
+
* @version v2.14.1
|
|
97
97
|
* @termsOfService https://www.thebigpos.com/terms-of-use/
|
|
98
98
|
* @contact Mortgage Automation Technologies <support@thebigpos.com> (https://www.thebigpos.com/terms-of-use/)
|
|
99
99
|
*/
|
|
@@ -1591,6 +1591,16 @@ export class Api extends HttpClient {
|
|
|
1591
1591
|
* @secure
|
|
1592
1592
|
*/
|
|
1593
1593
|
replaceLoanQueue: (loanQueueId, data, params = {}) => this.request(Object.assign({ path: `/api/loans/queue/${loanQueueId}`, method: "PUT", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
1594
|
+
/**
|
|
1595
|
+
* No description
|
|
1596
|
+
*
|
|
1597
|
+
* @tags LoanQueue
|
|
1598
|
+
* @name DeleteLoanQueue
|
|
1599
|
+
* @summary Delete Loan Queue Item
|
|
1600
|
+
* @request DELETE:/api/loans/queue/{loanQueueId}
|
|
1601
|
+
* @secure
|
|
1602
|
+
*/
|
|
1603
|
+
deleteLoanQueue: (loanQueueId, params = {}) => this.request(Object.assign({ path: `/api/loans/queue/${loanQueueId}`, method: "DELETE", secure: true }, params)),
|
|
1594
1604
|
/**
|
|
1595
1605
|
* No description
|
|
1596
1606
|
*
|
|
@@ -1657,50 +1667,50 @@ export class Api extends HttpClient {
|
|
|
1657
1667
|
* @tags LoanTaskComments
|
|
1658
1668
|
* @name SearchLoanTaskComments
|
|
1659
1669
|
* @summary Search
|
|
1660
|
-
* @request POST:/api/loans/{loanId}/tasks/{
|
|
1670
|
+
* @request POST:/api/loans/{loanId}/tasks/{userLoanTaskId}/comments/search
|
|
1661
1671
|
* @secure
|
|
1662
1672
|
*/
|
|
1663
|
-
searchLoanTaskComments: (loanId,
|
|
1673
|
+
searchLoanTaskComments: (loanId, userLoanTaskId, data, query, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/tasks/${userLoanTaskId}/comments/search`, method: "POST", query: query, body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
1664
1674
|
/**
|
|
1665
1675
|
* No description
|
|
1666
1676
|
*
|
|
1667
1677
|
* @tags LoanTaskComments
|
|
1668
1678
|
* @name GetLoanTaskComment
|
|
1669
1679
|
* @summary Get by ID
|
|
1670
|
-
* @request GET:/api/loans/{loanId}/tasks/{
|
|
1680
|
+
* @request GET:/api/loans/{loanId}/tasks/{userLoanTaskId}/comments/{id}
|
|
1671
1681
|
* @secure
|
|
1672
1682
|
*/
|
|
1673
|
-
getLoanTaskComment: (id, loanId,
|
|
1683
|
+
getLoanTaskComment: (id, loanId, userLoanTaskId, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/tasks/${userLoanTaskId}/comments/${id}`, method: "GET", secure: true, format: "json" }, params)),
|
|
1674
1684
|
/**
|
|
1675
1685
|
* No description
|
|
1676
1686
|
*
|
|
1677
1687
|
* @tags LoanTaskComments
|
|
1678
1688
|
* @name CreateLoanTaskComment
|
|
1679
1689
|
* @summary Create
|
|
1680
|
-
* @request POST:/api/loans/{loanId}/tasks/{
|
|
1690
|
+
* @request POST:/api/loans/{loanId}/tasks/{userLoanTaskId}/comments
|
|
1681
1691
|
* @secure
|
|
1682
1692
|
*/
|
|
1683
|
-
createLoanTaskComment: (loanId,
|
|
1693
|
+
createLoanTaskComment: (loanId, userLoanTaskId, data, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/tasks/${userLoanTaskId}/comments`, method: "POST", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
1684
1694
|
/**
|
|
1685
1695
|
* No description
|
|
1686
1696
|
*
|
|
1687
1697
|
* @tags LoanTaskComments
|
|
1688
1698
|
* @name ReplaceLoanTaskComment
|
|
1689
1699
|
* @summary Replace
|
|
1690
|
-
* @request PUT:/api/loans/{loanId}/tasks/{
|
|
1700
|
+
* @request PUT:/api/loans/{loanId}/tasks/{userLoanTaskId}/comments/{commentId}
|
|
1691
1701
|
* @secure
|
|
1692
1702
|
*/
|
|
1693
|
-
replaceLoanTaskComment: (loanId,
|
|
1703
|
+
replaceLoanTaskComment: (loanId, userLoanTaskId, commentId, data, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/tasks/${userLoanTaskId}/comments/${commentId}`, method: "PUT", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
1694
1704
|
/**
|
|
1695
1705
|
* No description
|
|
1696
1706
|
*
|
|
1697
1707
|
* @tags LoanTaskComments
|
|
1698
1708
|
* @name DeleteLoanTaskComment
|
|
1699
1709
|
* @summary Delete
|
|
1700
|
-
* @request DELETE:/api/loans/{loanId}/tasks/{
|
|
1710
|
+
* @request DELETE:/api/loans/{loanId}/tasks/{userLoanTaskId}/comments/{commentId}
|
|
1701
1711
|
* @secure
|
|
1702
1712
|
*/
|
|
1703
|
-
deleteLoanTaskComment: (loanId,
|
|
1713
|
+
deleteLoanTaskComment: (loanId, userLoanTaskId, commentId, params = {}) => this.request(Object.assign({ path: `/api/loans/${loanId}/tasks/${userLoanTaskId}/comments/${commentId}`, method: "DELETE", secure: true }, params)),
|
|
1704
1714
|
/**
|
|
1705
1715
|
* No description
|
|
1706
1716
|
*
|
|
@@ -1881,26 +1891,6 @@ export class Api extends HttpClient {
|
|
|
1881
1891
|
* @secure
|
|
1882
1892
|
*/
|
|
1883
1893
|
deleteMilestone: (id, params = {}) => this.request(Object.assign({ path: `/api/milestones/${id}`, method: "DELETE", secure: true }, params)),
|
|
1884
|
-
/**
|
|
1885
|
-
* No description
|
|
1886
|
-
*
|
|
1887
|
-
* @tags NotificationLogs
|
|
1888
|
-
* @name GetNotificationLogs
|
|
1889
|
-
* @summary Get All
|
|
1890
|
-
* @request GET:/api/notifications/logs
|
|
1891
|
-
* @secure
|
|
1892
|
-
*/
|
|
1893
|
-
getNotificationLogs: (query, params = {}) => this.request(Object.assign({ path: `/api/notifications/logs`, method: "GET", query: query, secure: true, format: "json" }, params)),
|
|
1894
|
-
/**
|
|
1895
|
-
* No description
|
|
1896
|
-
*
|
|
1897
|
-
* @tags NotificationLogs
|
|
1898
|
-
* @name SearchNotificationLog
|
|
1899
|
-
* @summary Search
|
|
1900
|
-
* @request POST:/api/notifications/logs/search
|
|
1901
|
-
* @secure
|
|
1902
|
-
*/
|
|
1903
|
-
searchNotificationLog: (data, query, params = {}) => this.request(Object.assign({ path: `/api/notifications/logs/search`, method: "POST", query: query, body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
|
|
1904
1894
|
/**
|
|
1905
1895
|
* No description
|
|
1906
1896
|
*
|