@matech/thebigpos-sdk 2.24.1 → 2.25.3

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
@@ -525,7 +525,7 @@ export interface CorporateSearchCriteria {
525
525
  isActive?: boolean | null;
526
526
  }
527
527
  export interface CreateAccessScopeRequest {
528
- scopeType: "User" | "Branch";
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: "Development" | "Staging" | "UAT" | "Production";
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: "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
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: "NotApplicable" | "Spouse" | "NonSpouse";
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: "All" | "NewOnly" | "UpdateOnly";
613
+ importMode: CreateLoanImportRequestImportModeEnum;
614
614
  }
615
615
  export interface CreateUserDeviceRequest {
616
616
  token: string;
617
617
  }
618
618
  export interface CreateUserDraft {
619
- loanRole: "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
619
+ loanRole: CreateUserDraftLoanRoleEnum;
620
620
  }
621
621
  export interface CreateUserGroupRequest {
622
622
  /**
@@ -1167,7 +1167,7 @@ export interface FusionFieldDisplay {
1167
1167
  fieldValue: string;
1168
1168
  }
1169
1169
  export interface FusionReportFilter {
1170
- filterType: "DateGreaterThanOrEqualTo" | "DateGreaterThan" | "DateLessThan" | "DateLessThanOrEqualTo" | "DateEquals" | "DateDoesntEqual" | "DateNonEmpty" | "DateEmpty" | "StringContains" | "StringEquals" | "StringNotEmpty" | "StringNotEquals" | "StringNotContains";
1170
+ filterType: FusionReportFilterFilterTypeEnum;
1171
1171
  targetField: string;
1172
1172
  targetValue: string;
1173
1173
  }
@@ -1485,6 +1485,7 @@ export interface Loan {
1485
1485
  loanProgram?: string | null;
1486
1486
  loanType?: string | null;
1487
1487
  status?: string | null;
1488
+ isActive: boolean;
1488
1489
  loanOfficer?: LoanOfficer | null;
1489
1490
  propertyAddress?: Address | null;
1490
1491
  loanSettings?: LoanSettings | null;
@@ -1625,7 +1626,7 @@ export interface LoanContact {
1625
1626
  email?: string | null;
1626
1627
  phone?: string | null;
1627
1628
  companyName?: string | null;
1628
- role: "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
1629
+ role: LoanContactRoleEnum;
1629
1630
  }
1630
1631
  export interface LoanContactList {
1631
1632
  email: string;
@@ -1637,6 +1638,9 @@ export interface LoanCreateRequest {
1637
1638
  */
1638
1639
  draftId: string;
1639
1640
  }
1641
+ export interface LoanCustomFieldsRequest {
1642
+ additionalFields?: Record<string, string>;
1643
+ }
1640
1644
  export interface LoanDocument {
1641
1645
  /** @format date-time */
1642
1646
  createdAt: string;
@@ -1708,13 +1712,13 @@ export interface LoanImport {
1708
1712
  /** @format int32 */
1709
1713
  importedCount: number;
1710
1714
  statusMessage?: string | null;
1711
- status: "WaitingProcess" | "InProgress" | "Completed" | "Failed" | "Cancelled";
1712
- importMode: "All" | "NewOnly" | "UpdateOnly";
1715
+ status: LoanImportStatusEnum;
1716
+ importMode: LoanImportImportModeEnum;
1713
1717
  /** @format date-time */
1714
1718
  createdAt?: string | null;
1715
1719
  }
1716
1720
  export interface LoanImportLog {
1717
- level: "None" | "Info" | "Warning" | "Error";
1721
+ level: LoanImportLogLevelEnum;
1718
1722
  message: string;
1719
1723
  /** @format date-time */
1720
1724
  createdAt: string;
@@ -1741,11 +1745,13 @@ export interface LoanList {
1741
1745
  totalLoanAmount?: number | null;
1742
1746
  /** @format date-time */
1743
1747
  startDate?: string | null;
1748
+ isActive: boolean;
1744
1749
  propertyAddress?: Address | null;
1745
1750
  loanOfficer?: LoanOfficerList | null;
1746
1751
  buyerAgentContact?: LoanContactList | null;
1747
1752
  sellerAgentContact?: LoanContactList | null;
1748
1753
  userLoans: UserLoan[];
1754
+ contacts: LoanContact[];
1749
1755
  }
1750
1756
  export interface LoanListPaginated {
1751
1757
  rows: LoanList[];
@@ -1756,8 +1762,8 @@ export interface LoanListPaginated {
1756
1762
  export interface LoanLog {
1757
1763
  /** @format uuid */
1758
1764
  id: string;
1759
- level: "None" | "Info" | "Warning" | "Error";
1760
- type: "Loan" | "Queue" | "POSFlagChanged" | "Verification";
1765
+ level: LoanLogLevelEnum;
1766
+ type: LoanLogTypeEnum;
1761
1767
  message: string;
1762
1768
  /** @format date-time */
1763
1769
  createdAt: string;
@@ -1879,7 +1885,7 @@ export interface LoanUpdateRequestJsonPatchDocument {
1879
1885
  contractResolver?: IContractResolver | null;
1880
1886
  }
1881
1887
  export interface LoanUpdateRequestOperation {
1882
- operationType: "Add" | "Remove" | "Replace" | "Move" | "Copy" | "Test" | "Invalid";
1888
+ operationType: LoanUpdateRequestOperationOperationTypeEnum;
1883
1889
  path?: string | null;
1884
1890
  op?: string | null;
1885
1891
  from?: string | null;
@@ -1893,7 +1899,7 @@ export interface LoanUser {
1893
1899
  email: string;
1894
1900
  phone?: string | null;
1895
1901
  role: string;
1896
- loanRole: "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
1902
+ loanRole: LoanUserLoanRoleEnum;
1897
1903
  isUser: boolean;
1898
1904
  /** @format date-time */
1899
1905
  createdAt: string;
@@ -2398,20 +2404,6 @@ export interface RequestImpersonationRequest {
2398
2404
  */
2399
2405
  email: string;
2400
2406
  }
2401
- export interface RequestQueue {
2402
- /** @format date-time */
2403
- createdAt?: string | null;
2404
- /** @format date-time */
2405
- updatedAt?: string | null;
2406
- /** @format date-time */
2407
- deletedAt?: string | null;
2408
- /** @format uuid */
2409
- id: string;
2410
- userEmail?: string | null;
2411
- endpoint?: string | null;
2412
- errorMessage?: string | null;
2413
- status?: string | null;
2414
- }
2415
2407
  export interface RunLOCalculation {
2416
2408
  loanID: string;
2417
2409
  loanAmount?: string | null;
@@ -2502,7 +2494,7 @@ export interface SSOTokenRequest {
2502
2494
  redirectUri: string;
2503
2495
  }
2504
2496
  export interface SamlMetadataRequest {
2505
- ssoIntegration: "ConsumerConnect" | "TheBigPOS";
2497
+ ssoIntegration: SamlMetadataRequestSsoIntegrationEnum;
2506
2498
  }
2507
2499
  export interface SendForgotPasswordRequest {
2508
2500
  /**
@@ -2537,7 +2529,7 @@ export interface SiteConfiguration {
2537
2529
  deletedAt?: string | null;
2538
2530
  /** @format uuid */
2539
2531
  id: string;
2540
- type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
2532
+ type: SiteConfigurationTypeEnum;
2541
2533
  /** @format uuid */
2542
2534
  entityID: string;
2543
2535
  /** @format int32 */
@@ -2731,7 +2723,7 @@ export interface SiteConfigurationByUrl {
2731
2723
  deletedAt?: string | null;
2732
2724
  /** @format uuid */
2733
2725
  id: string;
2734
- type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
2726
+ type: SiteConfigurationByUrlTypeEnum;
2735
2727
  /** @format uuid */
2736
2728
  entityID: string;
2737
2729
  /** @format int32 */
@@ -2942,7 +2934,7 @@ export interface SiteConfigurationForm {
2942
2934
  export interface SiteConfigurationReduced {
2943
2935
  /** @format uuid */
2944
2936
  id: string;
2945
- type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
2937
+ type: SiteConfigurationReducedTypeEnum;
2946
2938
  url?: string | null;
2947
2939
  name: string;
2948
2940
  /** @format int64 */
@@ -2959,7 +2951,7 @@ export interface SiteConfigurationRequest {
2959
2951
  entityID: string;
2960
2952
  /** @format int32 */
2961
2953
  entityType: number;
2962
- type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
2954
+ type: SiteConfigurationRequestTypeEnum;
2963
2955
  url: string;
2964
2956
  name: string;
2965
2957
  introduction?: string | null;
@@ -3134,7 +3126,7 @@ export interface SiteConfigurationSearchCriteria {
3134
3126
  export interface SiteConfigurationSummary {
3135
3127
  /** @format uuid */
3136
3128
  id: string;
3137
- type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
3129
+ type: SiteConfigurationSummaryTypeEnum;
3138
3130
  url?: string | null;
3139
3131
  name: string;
3140
3132
  /** @format int64 */
@@ -3536,7 +3528,7 @@ export interface UserDevice {
3536
3528
  export interface UserDraft {
3537
3529
  /** @format uuid */
3538
3530
  draftID: string;
3539
- role: "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
3531
+ role: UserDraftRoleEnum;
3540
3532
  user: User;
3541
3533
  }
3542
3534
  export interface UserDraftPaginated {
@@ -3560,7 +3552,7 @@ export interface UserGroupAccessScope {
3560
3552
  id: string;
3561
3553
  /** @format uuid */
3562
3554
  groupId: string;
3563
- scopeType: "User" | "Branch";
3555
+ scopeType: UserGroupAccessScopeScopeTypeEnum;
3564
3556
  /** @format uuid */
3565
3557
  userId?: string | null;
3566
3558
  /** @format uuid */
@@ -3593,7 +3585,7 @@ export interface UserLoan {
3593
3585
  deletedAt?: string | null;
3594
3586
  loanID: string;
3595
3587
  user: User;
3596
- role: "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
3588
+ role: UserLoanRoleEnum;
3597
3589
  /** @format int32 */
3598
3590
  borrowerPair?: number | null;
3599
3591
  /** @format int32 */
@@ -3726,7 +3718,7 @@ export interface UserSummary {
3726
3718
  id: string;
3727
3719
  name?: string | null;
3728
3720
  email?: string | null;
3729
- role: "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "BranchManager" | "SystemAdmin";
3721
+ role: UserSummaryRoleEnum;
3730
3722
  }
3731
3723
  export interface VerifyPasswordRequest {
3732
3724
  /**
@@ -3759,6 +3751,38 @@ export interface Workflow {
3759
3751
  tileSubtitle: string;
3760
3752
  icon: string;
3761
3753
  }
3754
+ export type CreateAccessScopeRequestScopeTypeEnum = "User" | "Branch";
3755
+ export type CreateAccountRequestEnvironmentEnum = "Development" | "Staging" | "UAT" | "Production";
3756
+ export type CreateGroupMemberRequestLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
3757
+ /** @deprecated */
3758
+ export type CreateInviteRequestRelationshipEnum = "NotApplicable" | "Spouse" | "NonSpouse";
3759
+ export type CreateLoanImportRequestImportModeEnum = "All" | "NewOnly" | "UpdateOnly";
3760
+ export type CreateUserDraftLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
3761
+ export type FusionReportFilterFilterTypeEnum = "DateGreaterThanOrEqualTo" | "DateGreaterThan" | "DateLessThan" | "DateLessThanOrEqualTo" | "DateEquals" | "DateDoesntEqual" | "DateNonEmpty" | "DateEmpty" | "StringContains" | "StringEquals" | "StringNotEmpty" | "StringNotEquals" | "StringNotContains";
3762
+ export type LoanContactRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
3763
+ export type LoanImportStatusEnum = "WaitingProcess" | "InProgress" | "Completed" | "Failed" | "Cancelled";
3764
+ export type LoanImportImportModeEnum = "All" | "NewOnly" | "UpdateOnly";
3765
+ export type LoanImportLogLevelEnum = "None" | "Info" | "Warning" | "Error";
3766
+ export type LoanLogLevelEnum = "None" | "Info" | "Warning" | "Error";
3767
+ export type LoanLogTypeEnum = "Loan" | "Queue" | "POSFlagChanged" | "Verification";
3768
+ export type LoanUpdateRequestOperationOperationTypeEnum = "Add" | "Remove" | "Replace" | "Move" | "Copy" | "Test" | "Invalid";
3769
+ export type LoanUserLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
3770
+ export type SamlMetadataRequestSsoIntegrationEnum = "ConsumerConnect" | "TheBigPOS";
3771
+ export type SiteConfigurationTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
3772
+ export type SiteConfigurationByUrlTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
3773
+ export type SiteConfigurationReducedTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
3774
+ export type SiteConfigurationRequestTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
3775
+ export type SiteConfigurationSummaryTypeEnum = "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
3776
+ export type UserDraftRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
3777
+ export type UserGroupAccessScopeScopeTypeEnum = "User" | "Branch";
3778
+ export type UserLoanRoleEnum = "Borrower" | "CoBorrower" | "NonBorrower" | "LoanOfficer" | "LoanProcessor" | "LoanOfficerAssistant" | "SupportingLoanOfficer" | "BuyerAgent" | "SellerAgent" | "TitleInsuranceAgent" | "EscrowAgent" | "SettlementAgent";
3779
+ export type UserSummaryRoleEnum = "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "BranchManager" | "SystemAdmin";
3780
+ /** @default "Realtor" */
3781
+ export type GetPartnersParamsRoleEnum = "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "BranchManager" | "SystemAdmin";
3782
+ export type GetSamlMetadataParamsSSoIntegrationEnum = "ConsumerConnect" | "TheBigPOS";
3783
+ export type GetSamlMetadataParamsEnum = "ConsumerConnect" | "TheBigPOS";
3784
+ export type CreateOrReplaceSamlMetadataParamsSSoIntegrationEnum = "ConsumerConnect" | "TheBigPOS";
3785
+ export type CreateOrReplaceSamlMetadataParamsEnum = "ConsumerConnect" | "TheBigPOS";
3762
3786
  import type { AxiosInstance, AxiosRequestConfig, AxiosResponse, ResponseType } from "axios";
3763
3787
  export type QueryParamsType = Record<string | number, any>;
3764
3788
  export interface FullRequestParams extends Omit<AxiosRequestConfig, "data" | "params" | "url" | "responseType"> {
@@ -3804,7 +3828,7 @@ export declare class HttpClient<SecurityDataType = unknown> {
3804
3828
  }
3805
3829
  /**
3806
3830
  * @title The Big POS API
3807
- * @version v2.24.1
3831
+ * @version v2.25.3
3808
3832
  * @termsOfService https://www.thebigpos.com/terms-of-use/
3809
3833
  * @contact Mortgage Automation Technologies <support@thebigpos.com> (https://www.thebigpos.com/terms-of-use/)
3810
3834
  */
@@ -4959,14 +4983,15 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4959
4983
  * No description
4960
4984
  *
4961
4985
  * @tags LegacyLoan
4962
- * @name UpdateLoanConsent
4963
- * @summary Update Loan Consent
4986
+ * @name UpdateLoanConsentAndCustomFieldsObsolete
4987
+ * @summary Update Loan Consent and Custom Fields
4964
4988
  * @request PATCH:/api/los/loan/application/{loanID}
4989
+ * @deprecated
4965
4990
  * @secure
4966
4991
  * @response `200` `string` Success
4967
4992
  * @response `422` `UnprocessableEntity` Client Error
4968
4993
  */
4969
- updateLoanConsent: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
4994
+ updateLoanConsentAndCustomFieldsObsolete: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
4970
4995
  /**
4971
4996
  * No description
4972
4997
  *
@@ -4991,6 +5016,30 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
4991
5016
  * @response `423` `UnprocessableEntity` Client Error
4992
5017
  */
4993
5018
  createLoan: (data: any, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
5019
+ /**
5020
+ * No description
5021
+ *
5022
+ * @tags LegacyLoan
5023
+ * @name UpdateLoanCustomFields
5024
+ * @summary Update Loan Custom Fields
5025
+ * @request PATCH:/api/los/loan/application/{loanID}/custom-fields
5026
+ * @secure
5027
+ * @response `200` `string` Success
5028
+ * @response `422` `UnprocessableEntity` Client Error
5029
+ */
5030
+ updateLoanCustomFields: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
5031
+ /**
5032
+ * No description
5033
+ *
5034
+ * @tags LegacyLoan
5035
+ * @name UpdateLoanConsent
5036
+ * @summary Update Loan Consent and Custom Fields
5037
+ * @request PATCH:/api/los/loan/application/{loanID}/consent
5038
+ * @secure
5039
+ * @response `200` `string` Success
5040
+ * @response `422` `UnprocessableEntity` Client Error
5041
+ */
5042
+ updateLoanConsent: (loanId: string, data: JsonPatchDocument, params?: RequestParams) => Promise<AxiosResponse<string, any>>;
4994
5043
  /**
4995
5044
  * No description
4996
5045
  *
@@ -6420,7 +6469,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6420
6469
  getPartners: (query?: {
6421
6470
  showAll?: boolean;
6422
6471
  /** @default "Realtor" */
6423
- role?: "Borrower" | "LoanOfficer" | "Admin" | "SuperAdmin" | "Realtor" | "SettlementAgent" | "LoanProcessor" | "LoanOfficerAssistant" | "BranchManager" | "SystemAdmin";
6472
+ role?: GetPartnersParamsRoleEnum;
6424
6473
  /** @format int32 */
6425
6474
  pageSize?: number;
6426
6475
  /** @format int32 */
@@ -6494,45 +6543,6 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6494
6543
  replacePartnerSiteConfiguration: (realtorId: string, siteConfigurationId: string, data: SiteConfigurationRequest, query?: {
6495
6544
  applyToChildren?: boolean;
6496
6545
  }, params?: RequestParams) => Promise<AxiosResponse<SiteConfiguration, any>>;
6497
- /**
6498
- * No description
6499
- *
6500
- * @tags RequestQueue
6501
- * @name GetRequestQueues
6502
- * @summary Get All
6503
- * @request GET:/api/request-queues
6504
- * @deprecated
6505
- * @secure
6506
- * @response `200` `(RequestQueue)[]` Success
6507
- */
6508
- getRequestQueues: (params?: RequestParams) => Promise<AxiosResponse<RequestQueue[], any>>;
6509
- /**
6510
- * No description
6511
- *
6512
- * @tags RequestQueue
6513
- * @name RunRequestQueue
6514
- * @summary Run
6515
- * @request POST:/api/request-queues/{id}/run
6516
- * @deprecated
6517
- * @secure
6518
- * @response `200` `void` Success
6519
- */
6520
- runRequestQueue: (id: string, query?: {
6521
- /** @default false */
6522
- force?: boolean;
6523
- }, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6524
- /**
6525
- * No description
6526
- *
6527
- * @tags RequestQueue
6528
- * @name DeleteQueueRequest
6529
- * @summary Delete
6530
- * @request DELETE:/api/request-queues/{id}
6531
- * @deprecated
6532
- * @secure
6533
- * @response `204` `void` No Content
6534
- */
6535
- deleteQueueRequest: (id: string, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
6536
6546
  /**
6537
6547
  * No description
6538
6548
  *
@@ -6637,7 +6647,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6637
6647
  * @response `200` `File` Success
6638
6648
  * @response `404` `ProblemDetails` Not Found
6639
6649
  */
6640
- getSamlMetadata: (sSoIntegration: "ConsumerConnect" | "TheBigPOS", ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
6650
+ getSamlMetadata: (sSoIntegration: GetSamlMetadataParamsEnum, ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
6641
6651
  /**
6642
6652
  * No description
6643
6653
  *
@@ -6648,7 +6658,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
6648
6658
  * @secure
6649
6659
  * @response `200` `File` Success
6650
6660
  */
6651
- createOrReplaceSamlMetadata: (sSoIntegration: "ConsumerConnect" | "TheBigPOS", ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
6661
+ createOrReplaceSamlMetadata: (sSoIntegration: CreateOrReplaceSamlMetadataParamsEnum, ssoIntegration: string, params?: RequestParams) => Promise<AxiosResponse<File, any>>;
6652
6662
  /**
6653
6663
  * No description
6654
6664
  *
package/dist/index.js CHANGED
@@ -104,7 +104,7 @@ export class HttpClient {
104
104
  }
105
105
  /**
106
106
  * @title The Big POS API
107
- * @version v2.24.1
107
+ * @version v2.25.3
108
108
  * @termsOfService https://www.thebigpos.com/terms-of-use/
109
109
  * @contact Mortgage Automation Technologies <support@thebigpos.com> (https://www.thebigpos.com/terms-of-use/)
110
110
  */
@@ -1156,14 +1156,15 @@ export class Api extends HttpClient {
1156
1156
  * No description
1157
1157
  *
1158
1158
  * @tags LegacyLoan
1159
- * @name UpdateLoanConsent
1160
- * @summary Update Loan Consent
1159
+ * @name UpdateLoanConsentAndCustomFieldsObsolete
1160
+ * @summary Update Loan Consent and Custom Fields
1161
1161
  * @request PATCH:/api/los/loan/application/{loanID}
1162
+ * @deprecated
1162
1163
  * @secure
1163
1164
  * @response `200` `string` Success
1164
1165
  * @response `422` `UnprocessableEntity` Client Error
1165
1166
  */
1166
- updateLoanConsent: (loanId, data, params = {}) => this.request(Object.assign({ path: `/api/los/loan/application/${loanId}`, method: "PATCH", body: data, secure: true, type: ContentType.JsonPatch, format: "json" }, params)),
1167
+ updateLoanConsentAndCustomFieldsObsolete: (loanId, data, params = {}) => this.request(Object.assign({ path: `/api/los/loan/application/${loanId}`, method: "PATCH", body: data, secure: true, type: ContentType.JsonPatch, format: "json" }, params)),
1167
1168
  /**
1168
1169
  * No description
1169
1170
  *
@@ -1188,6 +1189,30 @@ export class Api extends HttpClient {
1188
1189
  * @response `423` `UnprocessableEntity` Client Error
1189
1190
  */
1190
1191
  createLoan: (data, params = {}) => this.request(Object.assign({ path: `/api/los/loan/application`, method: "POST", body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
1192
+ /**
1193
+ * No description
1194
+ *
1195
+ * @tags LegacyLoan
1196
+ * @name UpdateLoanCustomFields
1197
+ * @summary Update Loan Custom Fields
1198
+ * @request PATCH:/api/los/loan/application/{loanID}/custom-fields
1199
+ * @secure
1200
+ * @response `200` `string` Success
1201
+ * @response `422` `UnprocessableEntity` Client Error
1202
+ */
1203
+ updateLoanCustomFields: (loanId, data, params = {}) => this.request(Object.assign({ path: `/api/los/loan/application/${loanId}/custom-fields`, method: "PATCH", body: data, secure: true, type: ContentType.JsonPatch, format: "json" }, params)),
1204
+ /**
1205
+ * No description
1206
+ *
1207
+ * @tags LegacyLoan
1208
+ * @name UpdateLoanConsent
1209
+ * @summary Update Loan Consent and Custom Fields
1210
+ * @request PATCH:/api/los/loan/application/{loanID}/consent
1211
+ * @secure
1212
+ * @response `200` `string` Success
1213
+ * @response `422` `UnprocessableEntity` Client Error
1214
+ */
1215
+ updateLoanConsent: (loanId, data, params = {}) => this.request(Object.assign({ path: `/api/los/loan/application/${loanId}/consent`, method: "PATCH", body: data, secure: true, type: ContentType.JsonPatch, format: "json" }, params)),
1191
1216
  /**
1192
1217
  * No description
1193
1218
  *
@@ -2543,42 +2568,6 @@ export class Api extends HttpClient {
2543
2568
  * @response `422` `UnprocessableEntity` Client Error
2544
2569
  */
2545
2570
  replacePartnerSiteConfiguration: (realtorId, siteConfigurationId, data, query, params = {}) => this.request(Object.assign({ path: `/api/partners/${realtorId}/site-configurations/${siteConfigurationId}`, method: "PUT", query: query, body: data, secure: true, type: ContentType.Json, format: "json" }, params)),
2546
- /**
2547
- * No description
2548
- *
2549
- * @tags RequestQueue
2550
- * @name GetRequestQueues
2551
- * @summary Get All
2552
- * @request GET:/api/request-queues
2553
- * @deprecated
2554
- * @secure
2555
- * @response `200` `(RequestQueue)[]` Success
2556
- */
2557
- getRequestQueues: (params = {}) => this.request(Object.assign({ path: `/api/request-queues`, method: "GET", secure: true, format: "json" }, params)),
2558
- /**
2559
- * No description
2560
- *
2561
- * @tags RequestQueue
2562
- * @name RunRequestQueue
2563
- * @summary Run
2564
- * @request POST:/api/request-queues/{id}/run
2565
- * @deprecated
2566
- * @secure
2567
- * @response `200` `void` Success
2568
- */
2569
- runRequestQueue: (id, query, params = {}) => this.request(Object.assign({ path: `/api/request-queues/${id}/run`, method: "POST", query: query, secure: true }, params)),
2570
- /**
2571
- * No description
2572
- *
2573
- * @tags RequestQueue
2574
- * @name DeleteQueueRequest
2575
- * @summary Delete
2576
- * @request DELETE:/api/request-queues/{id}
2577
- * @deprecated
2578
- * @secure
2579
- * @response `204` `void` No Content
2580
- */
2581
- deleteQueueRequest: (id, params = {}) => this.request(Object.assign({ path: `/api/request-queues/${id}`, method: "DELETE", secure: true }, params)),
2582
2571
  /**
2583
2572
  * No description
2584
2573
  *