@matech/thebigpos-sdk 2.12.1 → 2.14.0-rc1

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/dist/index.d.ts CHANGED
@@ -37,7 +37,7 @@ export interface Account {
37
37
  /** @format int32 */
38
38
  allowedLoginsWithoutMFA: number;
39
39
  losSettings: LOSSettings;
40
- asoSettings: ASOSettings;
40
+ asoSettings?: ASOSettings | null;
41
41
  }
42
42
  export interface Action {
43
43
  /** @format uuid */
@@ -102,7 +102,7 @@ export interface AdminAccessGetForms {
102
102
  slug?: string | null;
103
103
  status: string;
104
104
  language?: string | null;
105
- borrowerType: BorrowerType;
105
+ borrowerType?: BorrowerType | null;
106
106
  showProgressBar: boolean;
107
107
  }
108
108
  export interface AdminAccessUser {
@@ -191,11 +191,11 @@ export interface ApplicationRowData {
191
191
  subjectPropertyState?: string | null;
192
192
  subjectPropertyZip?: string | null;
193
193
  loanPurpose?: string | null;
194
- buyerAgent: LoanContact;
195
- sellerAgent: LoanContact;
196
- settlementAgent: LoanContact;
197
- escrowAgent: LoanContact;
198
- titleInsuranceAgent: LoanContact;
194
+ buyerAgent?: LoanContact | null;
195
+ sellerAgent?: LoanContact | null;
196
+ settlementAgent?: LoanContact | null;
197
+ escrowAgent?: LoanContact | null;
198
+ titleInsuranceAgent?: LoanContact | null;
199
199
  }
200
200
  export interface Attachment {
201
201
  fileName: string;
@@ -255,7 +255,7 @@ export interface BranchUserPaginated {
255
255
  }
256
256
  export interface BusinessRule {
257
257
  /** @format date-time */
258
- createdAt?: string | null;
258
+ createdAt: string;
259
259
  /** @format date-time */
260
260
  updatedAt?: string | null;
261
261
  /** @format date-time */
@@ -431,7 +431,7 @@ export interface CreateInviteRequest {
431
431
  /** @format email */
432
432
  emailAddress: string;
433
433
  phoneNumber: string;
434
- relationship: BorrowerRelationship;
434
+ relationship: "NotApplicable" | "Spouse" | "NonSpouse";
435
435
  loanID: string;
436
436
  route?: string | null;
437
437
  /** @format uuid */
@@ -478,7 +478,7 @@ export interface CreateUserRequest {
478
478
  userRole: string;
479
479
  }
480
480
  export interface CustomLoanData {
481
- eConsentInformation: EConsentInformation;
481
+ eConsentInformation?: EConsentInformation | null;
482
482
  }
483
483
  export interface DetailedUser {
484
484
  /** @format date-time */
@@ -555,7 +555,7 @@ export interface DeviceMDM {
555
555
  platform_type_id?: string | null;
556
556
  device_capacity?: string | null;
557
557
  imei: string[];
558
- user: MdmUser;
558
+ user?: MdmUser | null;
559
559
  actions?: DeviceAction[] | null;
560
560
  }
561
561
  export interface DevicePaginated {
@@ -688,6 +688,8 @@ export interface Draft {
688
688
  id: string;
689
689
  customData: any;
690
690
  user: UserBase;
691
+ loanOfficer: UserBase;
692
+ siteConfiguration: SiteConfigurationReduced;
691
693
  }
692
694
  export interface DraftContent {
693
695
  /** @format date-time */
@@ -700,6 +702,8 @@ export interface DraftContent {
700
702
  id: string;
701
703
  customData: any;
702
704
  user: UserBase;
705
+ loanOfficer: UserBase;
706
+ siteConfiguration: SiteConfigurationReduced;
703
707
  applicationPayload: any;
704
708
  }
705
709
  export interface DraftContentPaginated {
@@ -711,6 +715,8 @@ export interface DraftContentPaginated {
711
715
  export interface DraftRequest {
712
716
  applicationPayload: any;
713
717
  customData?: any;
718
+ /** @format uuid */
719
+ loanOfficerID?: string | null;
714
720
  }
715
721
  export interface EConsentInformation {
716
722
  status: string;
@@ -803,19 +809,19 @@ export interface ExtendedLoan {
803
809
  loanProgram?: string | null;
804
810
  loanType?: string | null;
805
811
  status?: string | null;
806
- loanOfficer: LoanOfficer;
807
- propertyAddress: Address;
808
- borrowerContact: Contact;
809
- coBorrowerContact: Contact;
812
+ loanOfficer?: LoanOfficer | null;
813
+ propertyAddress?: Address | null;
814
+ borrowerContact?: Contact | null;
815
+ coBorrowerContact?: Contact | null;
810
816
  loanLogs: LoanLog[];
811
817
  isLocked: boolean;
812
818
  source?: string | null;
813
- buyerAgentContact: Contact;
814
- sellerAgentContact: Contact;
815
- escrowAgentContact: Contact;
816
- titleInsuranceAgentContact: Contact;
817
- settlementAgentContact: Contact;
818
- loanProcessorContact: Contact;
819
+ buyerAgentContact?: Contact | null;
820
+ sellerAgentContact?: Contact | null;
821
+ escrowAgentContact?: Contact | null;
822
+ titleInsuranceAgentContact?: Contact | null;
823
+ settlementAgentContact?: Contact | null;
824
+ loanProcessorContact?: Contact | null;
819
825
  }
820
826
  export interface ExtendedLoanPaginated {
821
827
  rows: ExtendedLoan[];
@@ -829,8 +835,8 @@ export interface File {
829
835
  fileName: string;
830
836
  name: string;
831
837
  s3FilePath: string;
832
- user: User;
833
- account: Account;
838
+ user?: User | null;
839
+ account?: Account | null;
834
840
  url: string;
835
841
  }
836
842
  export interface FilePaginated {
@@ -871,7 +877,7 @@ export interface FormRequest {
871
877
  slug?: string | null;
872
878
  status: string;
873
879
  language?: string | null;
874
- borrowerType: BorrowerType;
880
+ borrowerType?: BorrowerType | null;
875
881
  showProgressBar: boolean;
876
882
  }
877
883
  export interface FormSubmission {
@@ -896,10 +902,10 @@ export interface FormSubmission {
896
902
  loanOfficerEmail?: string | null;
897
903
  /** @format uuid */
898
904
  loanOfficerID?: string | null;
899
- loanOfficer: User;
905
+ loanOfficer?: User | null;
900
906
  /** @format uuid */
901
907
  branchID?: string | null;
902
- branch: GetBranch;
908
+ branch?: GetBranch | null;
903
909
  status: string;
904
910
  subjectPropertyAddressStreet?: string | null;
905
911
  subjectPropertyAddressCity?: string | null;
@@ -909,7 +915,7 @@ export interface FormSubmission {
909
915
  data?: any;
910
916
  /** @format uuid */
911
917
  listingID?: string | null;
912
- listing: Listing;
918
+ listing?: Listing | null;
913
919
  files: FormSubmissionFile[];
914
920
  }
915
921
  export interface FormSubmissionFile {
@@ -992,7 +998,7 @@ export interface FusionFieldDisplay {
992
998
  fieldValue: string;
993
999
  }
994
1000
  export interface FusionReportFilter {
995
- filterType: FilterType;
1001
+ filterType: "DateGreaterThanOrEqualTo" | "DateGreaterThan" | "DateLessThan" | "DateLessThanOrEqualTo" | "DateEquals" | "DateDoesntEqual" | "DateNonEmpty" | "DateEmpty" | "StringContains" | "StringEquals" | "StringNotEmpty" | "StringNotEquals" | "StringNotContains";
996
1002
  targetField: string;
997
1003
  targetValue: string;
998
1004
  }
@@ -1050,7 +1056,7 @@ export interface GetForm {
1050
1056
  slug?: string | null;
1051
1057
  status: string;
1052
1058
  language?: string | null;
1053
- borrowerType: BorrowerType;
1059
+ borrowerType?: BorrowerType | null;
1054
1060
  showProgressBar: boolean;
1055
1061
  /** @format uuid */
1056
1062
  id: string;
@@ -1168,6 +1174,7 @@ export interface LOSSettingsUpdateRequest {
1168
1174
  customEConsentBucketTitle?: string | null;
1169
1175
  loanMilestoneNotificationsEnabled: boolean;
1170
1176
  }
1177
+ export type LOSStatus = "Unknown" | "Pending" | "Retrying" | "Successful" | "Failed" | "FailedPermanently";
1171
1178
  export interface Listing {
1172
1179
  /** @format date-time */
1173
1180
  createdAt: string;
@@ -1179,7 +1186,7 @@ export interface Listing {
1179
1186
  id: string;
1180
1187
  description?: string | null;
1181
1188
  mlsNumber?: string | null;
1182
- address: Address;
1189
+ address?: Address | null;
1183
1190
  /** @format int32 */
1184
1191
  salePrice?: number | null;
1185
1192
  /** @format date-time */
@@ -1189,7 +1196,7 @@ export interface Listing {
1189
1196
  zillowURL?: string | null;
1190
1197
  photos: ListingPhoto[];
1191
1198
  files: ListingFile[];
1192
- backgroundImage: File;
1199
+ backgroundImage?: File | null;
1193
1200
  /** @format date-time */
1194
1201
  openHouseDate?: string | null;
1195
1202
  /** @format double */
@@ -1199,7 +1206,7 @@ export interface Listing {
1199
1206
  isActive: boolean;
1200
1207
  slug: string;
1201
1208
  url?: string | null;
1202
- loanOfficer: LoanOfficer;
1209
+ loanOfficer?: LoanOfficer | null;
1203
1210
  siteConfiguration: SiteConfiguration;
1204
1211
  }
1205
1212
  export interface ListingFile {
@@ -1290,10 +1297,10 @@ export interface Loan {
1290
1297
  loanProgram?: string | null;
1291
1298
  loanType?: string | null;
1292
1299
  status?: string | null;
1293
- loanOfficer: LoanOfficer;
1294
- propertyAddress: Address;
1295
- borrowerContact: Contact;
1296
- coBorrowerContact: Contact;
1300
+ loanOfficer?: LoanOfficer | null;
1301
+ propertyAddress?: Address | null;
1302
+ borrowerContact?: Contact | null;
1303
+ coBorrowerContact?: Contact | null;
1297
1304
  loanLogs: LoanLog[];
1298
1305
  isLocked: boolean;
1299
1306
  source?: string | null;
@@ -1351,7 +1358,7 @@ export interface LoanDocument {
1351
1358
  id: string;
1352
1359
  name: string;
1353
1360
  loan: Loan;
1354
- user: User;
1361
+ user?: User | null;
1355
1362
  initialBucket?: string | null;
1356
1363
  losDocumentID?: string | null;
1357
1364
  losStatus: string;
@@ -1362,6 +1369,9 @@ export interface LoanDraftSearchCriteria {
1362
1369
  searchText?: string | null;
1363
1370
  /** @format uuid */
1364
1371
  loanOfficerId?: string | null;
1372
+ /** @format uuid */
1373
+ siteConfigurationId?: string | null;
1374
+ isUnassigned?: boolean | null;
1365
1375
  }
1366
1376
  export interface LoanLog {
1367
1377
  /** @format uuid */
@@ -1382,6 +1392,15 @@ export interface LoanOfficer {
1382
1392
  profilePhotoUrl: string;
1383
1393
  siteConfiguration: SiteConfiguration;
1384
1394
  }
1395
+ export interface LoanOfficerPublic {
1396
+ firstName: string;
1397
+ lastName: string;
1398
+ email: string;
1399
+ phone?: string | null;
1400
+ /** @format uuid */
1401
+ corporateID?: string | null;
1402
+ siteConfigurationIDs: string[];
1403
+ }
1385
1404
  export interface LoanOfficerSearchCriteria {
1386
1405
  searchText?: string | null;
1387
1406
  isActive?: boolean | null;
@@ -1390,6 +1409,40 @@ export interface LoanOfficerSearchCriteria {
1390
1409
  /** @format uuid */
1391
1410
  brand?: string | null;
1392
1411
  }
1412
+ export interface LoanQueue {
1413
+ /** @format date-time */
1414
+ createdAt: string;
1415
+ /** @format date-time */
1416
+ updatedAt?: string | null;
1417
+ /** @format date-time */
1418
+ deletedAt?: string | null;
1419
+ /** @format uuid */
1420
+ id: string;
1421
+ loanID?: string | null;
1422
+ type: string;
1423
+ reason: string;
1424
+ status: string;
1425
+ details?: string | null;
1426
+ user: UserPublic;
1427
+ loanOfficer: LoanOfficerPublic;
1428
+ siteConfiguration: SiteConfigurationReduced;
1429
+ }
1430
+ export interface LoanQueuePaginated {
1431
+ rows: LoanQueue[];
1432
+ pagination: Pagination;
1433
+ /** @format int64 */
1434
+ count: number;
1435
+ }
1436
+ export type LoanQueueReason = "Unknown" | "Locked" | "LOSError" | "Exception";
1437
+ export interface LoanQueueSearchCriteria {
1438
+ searchText?: string | null;
1439
+ loanID?: string | null;
1440
+ isActive?: boolean | null;
1441
+ type?: LoanQueueType | null;
1442
+ status?: LOSStatus | null;
1443
+ reason?: LoanQueueReason | null;
1444
+ }
1445
+ export type LoanQueueType = "Unknown" | "New" | "Append" | "Update" | "Document";
1393
1446
  export interface LoanRecord {
1394
1447
  loanGuid: string;
1395
1448
  loanFields: Record<string, string>;
@@ -1474,30 +1527,6 @@ export interface ModuleParameterValue {
1474
1527
  value?: any;
1475
1528
  isInherited: boolean;
1476
1529
  }
1477
- export interface NotificationLog {
1478
- /** @format uuid */
1479
- id: string;
1480
- type: NotificationType;
1481
- to: string;
1482
- cc?: string | null;
1483
- subject?: string | null;
1484
- message: string;
1485
- notificationTemplate: NotificationTemplate;
1486
- /** @format date-time */
1487
- createdAt: string;
1488
- }
1489
- export interface NotificationLogPaginated {
1490
- rows: NotificationLog[];
1491
- pagination: Pagination;
1492
- /** @format int64 */
1493
- count: number;
1494
- }
1495
- export interface NotificationLogSearchCriteria {
1496
- searchText?: string | null;
1497
- type: NotificationType;
1498
- to?: string[] | null;
1499
- cc?: string[] | null;
1500
- }
1501
1530
  export interface NotificationTemplate {
1502
1531
  /** @format date-time */
1503
1532
  createdAt?: string | null;
@@ -1577,6 +1606,7 @@ export interface NotificationTemplateVersion {
1577
1606
  isActive: boolean;
1578
1607
  htmlBody: string;
1579
1608
  plainBody: string;
1609
+ textBody: string;
1580
1610
  notificationTemplate: NotificationTemplate;
1581
1611
  }
1582
1612
  export interface NotificationTemplateVersionBase {
@@ -1594,6 +1624,7 @@ export interface NotificationTemplateVersionBase {
1594
1624
  isActive: boolean;
1595
1625
  htmlBody: string;
1596
1626
  plainBody: string;
1627
+ textBody: string;
1597
1628
  }
1598
1629
  export interface NotificationTemplateVersionRequest {
1599
1630
  /** @maxLength 255 */
@@ -1614,7 +1645,6 @@ export interface NotificationTemplateVersionUpdateRequest {
1614
1645
  /** @minLength 1 */
1615
1646
  plainBody: string;
1616
1647
  }
1617
- export type NotificationType = "Email" | "Text" | "PushNotification";
1618
1648
  export interface Operation {
1619
1649
  op?: string;
1620
1650
  value?: object | null;
@@ -1662,27 +1692,27 @@ export interface PreliminaryCondition {
1662
1692
  requestedFrom?: string | null;
1663
1693
  /** @format date-time */
1664
1694
  createdDate?: string | null;
1665
- createdBy: CommentUserInformation;
1695
+ createdBy?: CommentUserInformation | null;
1666
1696
  isRequested: boolean;
1667
1697
  /** @format date-time */
1668
1698
  requestedDate?: string | null;
1669
- requestedBy: CommentUserInformation;
1699
+ requestedBy?: CommentUserInformation | null;
1670
1700
  isReceived: boolean;
1671
1701
  /** @format date-time */
1672
1702
  receivedDate?: string | null;
1673
- receivedBy: CommentUserInformation;
1703
+ receivedBy?: CommentUserInformation | null;
1674
1704
  priorTo?: string | null;
1675
1705
  category?: string | null;
1676
1706
  isFulfilled: boolean;
1677
1707
  /** @format date-time */
1678
1708
  fulfilledDate?: string | null;
1679
- fulfilledBy: CommentUserInformation;
1709
+ fulfilledBy?: CommentUserInformation | null;
1680
1710
  comments: ConditionComment[];
1681
1711
  uwAccess?: string | null;
1682
1712
  isRerequested: boolean;
1683
1713
  /** @format date-time */
1684
1714
  rerequestedDate?: string | null;
1685
- rerequestedBy: CommentUserInformation;
1715
+ rerequestedBy?: CommentUserInformation | null;
1686
1716
  }
1687
1717
  export interface PricingRates {
1688
1718
  rate: string;
@@ -1702,15 +1732,6 @@ export interface ProblemDetails {
1702
1732
  instance?: string | null;
1703
1733
  [key: string]: any;
1704
1734
  }
1705
- export interface PublicLoanOfficer {
1706
- firstName: string;
1707
- lastName: string;
1708
- email: string;
1709
- phone?: string | null;
1710
- /** @format uuid */
1711
- corporateID?: string | null;
1712
- siteConfigurationIDs: string[];
1713
- }
1714
1735
  export interface RefreshTokenRequest {
1715
1736
  /** @minLength 1 */
1716
1737
  refreshToken: string;
@@ -1872,6 +1893,7 @@ export interface SendNotificationForLoanRequest {
1872
1893
  siteConfigurationId?: string | null;
1873
1894
  /** @minLength 1 */
1874
1895
  email: string;
1896
+ phone?: string | null;
1875
1897
  attachments: Attachment[];
1876
1898
  }
1877
1899
  export interface SiteConfiguration {
@@ -2063,8 +2085,8 @@ export interface SiteConfiguration {
2063
2085
  /** @format int32 */
2064
2086
  allowedLoginsWithoutMFA: number;
2065
2087
  modules: Module[];
2066
- user: UserPublic;
2067
- asoSettings: ASOSettings;
2088
+ user?: UserPublic | null;
2089
+ asoSettings?: ASOSettings | null;
2068
2090
  }
2069
2091
  export interface SiteConfigurationByUrl {
2070
2092
  /** @format date-time */
@@ -2255,8 +2277,8 @@ export interface SiteConfigurationByUrl {
2255
2277
  /** @format int32 */
2256
2278
  allowedLoginsWithoutMFA: number;
2257
2279
  modules: Module[];
2258
- user: UserPublic;
2259
- asoSettings: ASOSettings;
2280
+ user?: UserPublic | null;
2281
+ asoSettings?: ASOSettings | null;
2260
2282
  workflows: Workflow[];
2261
2283
  }
2262
2284
  export interface SiteConfigurationForm {
@@ -2469,7 +2491,7 @@ export interface SiteConfigurationSearchCriteria {
2469
2491
  }
2470
2492
  export interface SiteConfigurationWithInherited {
2471
2493
  siteConfiguration: SiteConfiguration;
2472
- inheritedSiteConfiguration: SiteConfiguration;
2494
+ inheritedSiteConfiguration?: SiteConfiguration | null;
2473
2495
  }
2474
2496
  export interface SocialSurveyRecord {
2475
2497
  /** @format date-time */
@@ -2515,7 +2537,7 @@ export interface Task {
2515
2537
  isGlobal: boolean;
2516
2538
  /** @format uuid */
2517
2539
  id: string;
2518
- user: User;
2540
+ user?: User | null;
2519
2541
  isFromLegacySource: boolean;
2520
2542
  usedInBusinessRule: boolean;
2521
2543
  willAutocompleteAfterResponse: boolean;
@@ -2572,6 +2594,7 @@ export interface TestSendNotificationForLoanRequest {
2572
2594
  /** @format uuid */
2573
2595
  siteConfigurationId: string;
2574
2596
  toAddress?: string | null;
2597
+ toPhoneNumber?: string | null;
2575
2598
  templateName?: string | null;
2576
2599
  attachments: Attachment[];
2577
2600
  }
@@ -2633,21 +2656,21 @@ export interface UnderwritingCondition {
2633
2656
  requestedFrom?: string | null;
2634
2657
  /** @format date-time */
2635
2658
  createdDate?: string | null;
2636
- createdBy: CommentUserInformation;
2659
+ createdBy?: CommentUserInformation | null;
2637
2660
  isRequested: boolean;
2638
2661
  /** @format date-time */
2639
2662
  requestedDate?: string | null;
2640
- requestedBy: CommentUserInformation;
2663
+ requestedBy?: CommentUserInformation | null;
2641
2664
  isReceived: boolean;
2642
2665
  /** @format date-time */
2643
2666
  receivedDate?: string | null;
2644
- receivedBy: CommentUserInformation;
2667
+ receivedBy?: CommentUserInformation | null;
2645
2668
  priorTo?: string | null;
2646
2669
  category?: string | null;
2647
2670
  isFulfilled: boolean;
2648
2671
  /** @format date-time */
2649
2672
  fulfilledDate?: string | null;
2650
- fulfilledBy: CommentUserInformation;
2673
+ fulfilledBy?: CommentUserInformation | null;
2651
2674
  comments: ConditionComment[];
2652
2675
  allowToClear: boolean;
2653
2676
  printExternally: boolean;
@@ -2667,7 +2690,7 @@ export interface UpdateAccountRequest {
2667
2690
  /** @format int32 */
2668
2691
  allowedLoginsWithoutMFA: number;
2669
2692
  losSettings: LOSSettingsUpdateRequest;
2670
- asoSettings: ASOSettings;
2693
+ asoSettings?: ASOSettings | null;
2671
2694
  }
2672
2695
  export interface UpdateDocumentTemplateRequest {
2673
2696
  /** @minLength 1 */
@@ -2777,7 +2800,7 @@ export interface UserBase {
2777
2800
  }
2778
2801
  export interface UserLoan {
2779
2802
  loanID: string;
2780
- customLoanData: CustomLoanData;
2803
+ customLoanData?: CustomLoanData | null;
2781
2804
  }
2782
2805
  export interface UserLoanTask {
2783
2806
  /** @format uuid */
@@ -2795,8 +2818,8 @@ export interface UserLoanTask {
2795
2818
  /** @format date-time */
2796
2819
  createdAt: string;
2797
2820
  createdBy: User;
2798
- submittedBy: User;
2799
- completedBy: User;
2821
+ submittedBy?: User | null;
2822
+ completedBy?: User | null;
2800
2823
  }
2801
2824
  export interface UserLoanTaskRequest {
2802
2825
  value?: string | null;
@@ -2980,7 +3003,7 @@ export declare class HttpClient<SecurityDataType = unknown> {
2980
3003
  }
2981
3004
  /**
2982
3005
  * @title The Big POS API
2983
- * @version v2.12.1
3006
+ * @version v2.13.0
2984
3007
  * @termsOfService https://www.thebigpos.com/terms-of-use/
2985
3008
  * @contact Mortgage Automation Technologies <support@thebigpos.com> (https://www.thebigpos.com/terms-of-use/)
2986
3009
  */
@@ -3274,7 +3297,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3274
3297
  * @request GET:/api/branches/{branchId}/loan-officers
3275
3298
  * @secure
3276
3299
  */
3277
- getLoanOfficersByBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<PublicLoanOfficer, any>>;
3300
+ getLoanOfficersByBranch: (branchId: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic, any>>;
3278
3301
  /**
3279
3302
  * No description
3280
3303
  *
@@ -3473,7 +3496,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3473
3496
  * @request GET:/api/corporates/{id}/loan-officers
3474
3497
  * @secure
3475
3498
  */
3476
- getLoanOfficersByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<PublicLoanOfficer, any>>;
3499
+ getLoanOfficersByCorporate: (id: string, params?: RequestParams) => Promise<AxiosResponse<LoanOfficerPublic, any>>;
3477
3500
  /**
3478
3501
  * No description
3479
3502
  *
@@ -4608,6 +4631,53 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4608
4631
  replaceLoanOfficerSiteConfiguration: (loanOfficerId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
4609
4632
  applyToChildren?: boolean;
4610
4633
  }, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
4634
+ /**
4635
+ * No description
4636
+ *
4637
+ * @tags LoanQueue
4638
+ * @name SearchLoanQueue
4639
+ * @summary Search
4640
+ * @request POST:/api/loans/queue/search
4641
+ * @secure
4642
+ */
4643
+ searchLoanQueue: (data: LoanQueueSearchCriteria, query?: {
4644
+ /** @format int32 */
4645
+ pageSize?: number;
4646
+ /** @format int32 */
4647
+ pageNumber?: number;
4648
+ sortBy?: string;
4649
+ sortDirection?: string;
4650
+ }, params?: RequestParams) => Promise<AxiosResponse<LoanQueuePaginated, any>>;
4651
+ /**
4652
+ * No description
4653
+ *
4654
+ * @tags LoanQueue
4655
+ * @name GetLoanQueueData
4656
+ * @summary Get Data
4657
+ * @request GET:/api/loans/queue/{loanQueueId}/data
4658
+ * @secure
4659
+ */
4660
+ getLoanQueueData: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<any, any>>;
4661
+ /**
4662
+ * No description
4663
+ *
4664
+ * @tags LoanQueue
4665
+ * @name UpdateLoanQueueData
4666
+ * @summary Update Data
4667
+ * @request PUT:/api/loans/queue/{loanQueueId}/data
4668
+ * @secure
4669
+ */
4670
+ updateLoanQueueData: (loanQueueId: string, data: any, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
4671
+ /**
4672
+ * No description
4673
+ *
4674
+ * @tags LoanQueue
4675
+ * @name RetryLoanQueue
4676
+ * @summary Retry
4677
+ * @request POST:/api/loans/queue/{loanQueueId}/retry
4678
+ * @secure
4679
+ */
4680
+ retryLoanQueue: (loanQueueId: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
4611
4681
  /**
4612
4682
  * No description
4613
4683
  *
@@ -4857,40 +4927,6 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4857
4927
  * @secure
4858
4928
  */
4859
4929
  deleteMilestone: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
4860
- /**
4861
- * No description
4862
- *
4863
- * @tags NotificationLogs
4864
- * @name GetNotificationLogs
4865
- * @summary Get All
4866
- * @request GET:/api/notifications/logs
4867
- * @secure
4868
- */
4869
- getNotificationLogs: (query?: {
4870
- /** @format int32 */
4871
- pageSize?: number;
4872
- /** @format int32 */
4873
- pageNumber?: number;
4874
- sortBy?: string;
4875
- sortDirection?: string;
4876
- }, params?: RequestParams) => Promise<AxiosResponse<NotificationLog[], any>>;
4877
- /**
4878
- * No description
4879
- *
4880
- * @tags NotificationLogs
4881
- * @name SearchNotificationLog
4882
- * @summary Search
4883
- * @request POST:/api/notifications/logs/search
4884
- * @secure
4885
- */
4886
- searchNotificationLog: (data: NotificationLogSearchCriteria, query?: {
4887
- /** @format int32 */
4888
- pageSize?: number;
4889
- /** @format int32 */
4890
- pageNumber?: number;
4891
- sortBy?: string;
4892
- sortDirection?: string;
4893
- }, params?: RequestParams) => Promise<AxiosResponse<NotificationLogPaginated, any>>;
4894
4930
  /**
4895
4931
  * No description
4896
4932
  *
@@ -5034,7 +5070,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5034
5070
  */
5035
5071
  getPartners: (query?: {
5036
5072
  showAll?: boolean;
5037
- role?: UserRole;
5073
+ /** @default 4 */
5074
+ role?: "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "BranchManager" | "SystemAdmin";
5038
5075
  /** @format int32 */
5039
5076
  pageSize?: number;
5040
5077
  /** @format int32 */
@@ -5118,6 +5155,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5118
5155
  * @name GetRequestQueues
5119
5156
  * @summary Get All
5120
5157
  * @request GET:/api/request-queues
5158
+ * @deprecated
5121
5159
  * @secure
5122
5160
  */
5123
5161
  getRequestQueues: (params?: RequestParams) => Promise<AxiosResponse<RequestQueue[], any>>;
@@ -5128,6 +5166,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5128
5166
  * @name RunRequestQueue
5129
5167
  * @summary Run
5130
5168
  * @request POST:/api/request-queues/{id}/run
5169
+ * @deprecated
5131
5170
  * @secure
5132
5171
  */
5133
5172
  runRequestQueue: (id: string, query?: {
@@ -5141,6 +5180,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
5141
5180
  * @name DeleteQueueRequest
5142
5181
  * @summary Delete
5143
5182
  * @request DELETE:/api/request-queues/{id}
5183
+ * @deprecated
5144
5184
  * @secure
5145
5185
  */
5146
5186
  deleteQueueRequest: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;