@matech/thebigpos-sdk 2.41.0-rc1 → 2.42.1

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/src/index.ts CHANGED
@@ -485,7 +485,7 @@ export interface AccountBilling {
485
485
  }
486
486
 
487
487
  export interface AccountBillingRequest {
488
- billingType: "ClosedLoan" | "LoanOfficer";
488
+ billingType: AccountBillingRequestBillingTypeEnum;
489
489
  /**
490
490
  * @format double
491
491
  * @min 0
@@ -537,7 +537,7 @@ export interface Action {
537
537
  comments?: string | null;
538
538
  /** @format uuid */
539
539
  siteConfigurationID: string;
540
- applicationSettings?: any;
540
+ applicationSettings?: any | null;
541
541
  surveysToken?: string | null;
542
542
  }
543
543
 
@@ -845,21 +845,14 @@ export interface AuditLogEntry {
845
845
  /** @format uuid */
846
846
  id: string;
847
847
  entityType: string;
848
- changeType:
849
- | "Created"
850
- | "Modified"
851
- | "SoftDeleted"
852
- | "HardDeleted"
853
- | "Restored"
854
- | "Deactivated"
855
- | "Reactivated";
848
+ changeType: AuditLogEntryChangeTypeEnum;
856
849
  /** @format uuid */
857
850
  entityId: string;
858
851
  performedBy?: AuditLogUser | null;
859
852
  rootEntityType?: string | null;
860
853
  /** @format uuid */
861
854
  rootEntityId?: string | null;
862
- changes?: any;
855
+ changes?: any | null;
863
856
  /** @format date-time */
864
857
  createdAt: string;
865
858
  }
@@ -1166,7 +1159,7 @@ export interface CorporateSearchCriteria {
1166
1159
  }
1167
1160
 
1168
1161
  export interface CreateAccessScopeRequest {
1169
- scopeType: "User" | "Branch";
1162
+ scopeType: CreateAccessScopeRequestScopeTypeEnum;
1170
1163
  /** @format uuid */
1171
1164
  userId?: string | null;
1172
1165
  /** @format uuid */
@@ -1190,7 +1183,7 @@ export interface CreateAccountRequest {
1190
1183
  */
1191
1184
  nlmsid: number;
1192
1185
  settings: AccountSettingsRequest;
1193
- environment: "Development" | "Staging" | "UAT" | "Production";
1186
+ environment: CreateAccountRequestEnvironmentEnum;
1194
1187
  losIntegration: LOSIntegration;
1195
1188
  billingSettings: AccountBillingRequest;
1196
1189
  }
@@ -1228,15 +1221,8 @@ export interface CreateCustomFieldDefinitionRequest {
1228
1221
  name: string;
1229
1222
  defaultValue?: string | null;
1230
1223
  regexPattern?: string | null;
1231
- dataType:
1232
- | "String"
1233
- | "Number"
1234
- | "Decimal"
1235
- | "Boolean"
1236
- | "Date"
1237
- | "SingleSelect"
1238
- | "MultiSelect";
1239
- entityType: "Loan";
1224
+ dataType: CreateCustomFieldDefinitionRequestDataTypeEnum;
1225
+ entityType: CreateCustomFieldDefinitionRequestEntityTypeEnum;
1240
1226
  options?: CustomFieldOptionRequest[] | null;
1241
1227
  permissions?: CustomFieldPermissionRequest[] | null;
1242
1228
  }
@@ -1258,20 +1244,7 @@ export interface CreateDocumentTemplateRequest {
1258
1244
  export interface CreateGroupMemberRequest {
1259
1245
  /** @format uuid */
1260
1246
  userId: string;
1261
- loanRole:
1262
- | "Borrower"
1263
- | "CoBorrower"
1264
- | "NonBorrower"
1265
- | "LoanOfficer"
1266
- | "LoanProcessor"
1267
- | "LoanOfficerAssistant"
1268
- | "SupportingLoanOfficer"
1269
- | "BuyerAgent"
1270
- | "SellerAgent"
1271
- | "TitleInsuranceAgent"
1272
- | "EscrowAgent"
1273
- | "SettlementAgent"
1274
- | "Admin";
1247
+ loanRole: CreateGroupMemberRequestLoanRoleEnum;
1275
1248
  }
1276
1249
 
1277
1250
  export interface CreateInviteRequest {
@@ -1283,7 +1256,7 @@ export interface CreateInviteRequest {
1283
1256
  emailAddress: string;
1284
1257
  phoneNumber?: string | null;
1285
1258
  /** @deprecated */
1286
- relationship: "NotApplicable" | "Spouse" | "NonSpouse";
1259
+ relationship: CreateInviteRequestRelationshipEnum;
1287
1260
  loanID: string;
1288
1261
  route?: string | null;
1289
1262
  /** @format uuid */
@@ -1315,7 +1288,7 @@ export interface CreateLoanImportRequest {
1315
1288
  * @minLength 1
1316
1289
  */
1317
1290
  startDate: string;
1318
- importMode: "All" | "NewOnly" | "UpdateOnly";
1291
+ importMode: CreateLoanImportRequestImportModeEnum;
1319
1292
  }
1320
1293
 
1321
1294
  export interface CreateSession {
@@ -1337,20 +1310,7 @@ export interface CreateUserDeviceRequest {
1337
1310
  }
1338
1311
 
1339
1312
  export interface CreateUserDraft {
1340
- loanRole:
1341
- | "Borrower"
1342
- | "CoBorrower"
1343
- | "NonBorrower"
1344
- | "LoanOfficer"
1345
- | "LoanProcessor"
1346
- | "LoanOfficerAssistant"
1347
- | "SupportingLoanOfficer"
1348
- | "BuyerAgent"
1349
- | "SellerAgent"
1350
- | "TitleInsuranceAgent"
1351
- | "EscrowAgent"
1352
- | "SettlementAgent"
1353
- | "Admin";
1313
+ loanRole: CreateUserDraftLoanRoleEnum;
1354
1314
  }
1355
1315
 
1356
1316
  export interface CreateUserGroupRequest {
@@ -1437,15 +1397,8 @@ export interface CustomFieldDefinition {
1437
1397
  name: string;
1438
1398
  defaultValue?: string | null;
1439
1399
  regexPattern?: string | null;
1440
- dataType:
1441
- | "String"
1442
- | "Number"
1443
- | "Decimal"
1444
- | "Boolean"
1445
- | "Date"
1446
- | "SingleSelect"
1447
- | "MultiSelect";
1448
- entityType: "Loan";
1400
+ dataType: CustomFieldDefinitionDataTypeEnum;
1401
+ entityType: CustomFieldDefinitionEntityTypeEnum;
1449
1402
  options: CustomFieldOption[];
1450
1403
  permissions: CustomFieldPermission[];
1451
1404
  encompassMapping?: EncompassMapping | null;
@@ -1460,14 +1413,7 @@ export interface CustomFieldEntry {
1460
1413
  displayOrder: number;
1461
1414
  name: string;
1462
1415
  value: string;
1463
- dataType:
1464
- | "String"
1465
- | "Number"
1466
- | "Decimal"
1467
- | "Boolean"
1468
- | "Date"
1469
- | "SingleSelect"
1470
- | "MultiSelect";
1416
+ dataType: CustomFieldEntryDataTypeEnum;
1471
1417
  }
1472
1418
 
1473
1419
  export interface CustomFieldOption {
@@ -1487,31 +1433,13 @@ export interface CustomFieldOptionRequest {
1487
1433
  export interface CustomFieldPermission {
1488
1434
  /** @format uuid */
1489
1435
  id: string;
1490
- role:
1491
- | "Borrower"
1492
- | "LoanOfficer"
1493
- | "Admin"
1494
- | "SuperAdmin"
1495
- | "Realtor"
1496
- | "SettlementAgent"
1497
- | "LoanProcessor"
1498
- | "LoanOfficerAssistant"
1499
- | "SystemAdmin";
1500
- accessLevel: "NoAccess" | "ReadOnly" | "ReadWrite";
1436
+ role: CustomFieldPermissionRoleEnum;
1437
+ accessLevel: CustomFieldPermissionAccessLevelEnum;
1501
1438
  }
1502
1439
 
1503
1440
  export interface CustomFieldPermissionRequest {
1504
- role:
1505
- | "Borrower"
1506
- | "LoanOfficer"
1507
- | "Admin"
1508
- | "SuperAdmin"
1509
- | "Realtor"
1510
- | "SettlementAgent"
1511
- | "LoanProcessor"
1512
- | "LoanOfficerAssistant"
1513
- | "SystemAdmin";
1514
- accessLevel: "NoAccess" | "ReadOnly" | "ReadWrite";
1441
+ role: CustomFieldPermissionRequestRoleEnum;
1442
+ accessLevel: CustomFieldPermissionRequestAccessLevelEnum;
1515
1443
  }
1516
1444
 
1517
1445
  export interface CustomFieldValue {
@@ -1523,14 +1451,7 @@ export interface CustomFieldValue {
1523
1451
  customFieldDefinitionID: string;
1524
1452
  value: string;
1525
1453
  definitionName: string;
1526
- dataType:
1527
- | "String"
1528
- | "Number"
1529
- | "Decimal"
1530
- | "Boolean"
1531
- | "Date"
1532
- | "SingleSelect"
1533
- | "MultiSelect";
1454
+ dataType: CustomFieldValueDataTypeEnum;
1534
1455
  }
1535
1456
 
1536
1457
  export interface DetailedUser {
@@ -1790,7 +1711,7 @@ export interface Draft {
1790
1711
  siteConfiguration: SiteConfigurationReduced;
1791
1712
  /** @format uuid */
1792
1713
  loanID?: string | null;
1793
- type: "NewLoan" | "EditLoan";
1714
+ type: DraftTypeEnum;
1794
1715
  isCoBorrower: boolean;
1795
1716
  }
1796
1717
 
@@ -1809,7 +1730,7 @@ export interface DraftContent {
1809
1730
  siteConfiguration: SiteConfigurationReduced;
1810
1731
  /** @format uuid */
1811
1732
  loanID?: string | null;
1812
- type: "NewLoan" | "EditLoan";
1733
+ type: DraftContentTypeEnum;
1813
1734
  isCoBorrower: boolean;
1814
1735
  applicationPayload: any;
1815
1736
  }
@@ -1828,7 +1749,7 @@ export interface DraftLoanOfficerReassignRequest {
1828
1749
 
1829
1750
  export interface DraftRequest {
1830
1751
  applicationPayload: any;
1831
- customData?: any;
1752
+ customData?: any | null;
1832
1753
  isCoBorrower: boolean;
1833
1754
  }
1834
1755
 
@@ -1900,9 +1821,9 @@ export interface EncompassCredentialsDetail {
1900
1821
  clearStateIfUnlicensed: boolean;
1901
1822
  /** @deprecated */
1902
1823
  baseUrl?: string | null;
1903
- encompassEnvironment: "Production" | "UAT";
1824
+ encompassEnvironment: EncompassCredentialsDetailEncompassEnvironmentEnum;
1904
1825
  consumerConnectWidgetHost?: string | null;
1905
- signingMethod: "ConsumerConnect" | "POSF";
1826
+ signingMethod: EncompassCredentialsDetailSigningMethodEnum;
1906
1827
  subscriptionId?: string | null;
1907
1828
  environment?: string | null;
1908
1829
  }
@@ -1919,9 +1840,9 @@ export interface EncompassCredentialsRequest {
1919
1840
  clearStateIfUnlicensed: boolean;
1920
1841
  /** @deprecated */
1921
1842
  baseUrl?: string | null;
1922
- encompassEnvironment: "Production" | "UAT";
1843
+ encompassEnvironment: EncompassCredentialsRequestEncompassEnvironmentEnum;
1923
1844
  consumerConnectWidgetHost?: string | null;
1924
- signingMethod: "ConsumerConnect" | "POSF";
1845
+ signingMethod: EncompassCredentialsRequestSigningMethodEnum;
1925
1846
  subscriptionId?: string | null;
1926
1847
  environment?: string | null;
1927
1848
  clientID?: string | null;
@@ -2042,15 +1963,8 @@ export interface EncompassRequestLog {
2042
1963
  losId?: string | null;
2043
1964
  /** @format uuid */
2044
1965
  accountId: string;
2045
- operationType:
2046
- | "FieldUpdate"
2047
- | "ConsentUpdate"
2048
- | "DocumentSync"
2049
- | "MilestoneUpdate"
2050
- | "DocumentAttachment"
2051
- | "General"
2052
- | "FieldReader";
2053
- outcome: "Success" | "Failure" | "PartialSuccess";
1966
+ operationType: EncompassRequestLogOperationTypeEnum;
1967
+ outcome: EncompassRequestLogOutcomeEnum;
2054
1968
  message: string;
2055
1969
  endpoint?: string | null;
2056
1970
  httpMethod?: string | null;
@@ -2058,7 +1972,7 @@ export interface EncompassRequestLog {
2058
1972
  httpStatusCode?: number | null;
2059
1973
  /** @format int64 */
2060
1974
  durationMs?: number | null;
2061
- context?: any;
1975
+ context?: any | null;
2062
1976
  /** @format date-time */
2063
1977
  createdAt: string;
2064
1978
  }
@@ -2108,7 +2022,7 @@ export interface FileSearchCriteria {
2108
2022
  export interface FileWithBytes {
2109
2023
  name: string;
2110
2024
  /** @format byte */
2111
- data: string;
2025
+ data: Blob;
2112
2026
  fileName: string;
2113
2027
  mimeType?: string | null;
2114
2028
  extension?: string | null;
@@ -2187,7 +2101,7 @@ export interface FormSubmission {
2187
2101
  subjectPropertyAddressCounty?: string | null;
2188
2102
  subjectPropertyAddressState?: string | null;
2189
2103
  subjectPropertyAddressZip?: string | null;
2190
- data?: any;
2104
+ data?: any | null;
2191
2105
  /** @format uuid */
2192
2106
  listingID?: string | null;
2193
2107
  listing?: Listing | null;
@@ -2225,7 +2139,7 @@ export interface FormSubmissionRequest {
2225
2139
  subjectPropertyAddressCounty?: string | null;
2226
2140
  subjectPropertyAddressState?: string | null;
2227
2141
  subjectPropertyAddressZip?: string | null;
2228
- data?: any;
2142
+ data?: any | null;
2229
2143
  /** @format uuid */
2230
2144
  listingID?: string | null;
2231
2145
  }
@@ -2282,20 +2196,7 @@ export interface FusionFieldDisplay {
2282
2196
  }
2283
2197
 
2284
2198
  export interface FusionReportFilter {
2285
- filterType:
2286
- | "DateGreaterThanOrEqualTo"
2287
- | "DateGreaterThan"
2288
- | "DateLessThan"
2289
- | "DateLessThanOrEqualTo"
2290
- | "DateEquals"
2291
- | "DateDoesntEqual"
2292
- | "DateNonEmpty"
2293
- | "DateEmpty"
2294
- | "StringContains"
2295
- | "StringEquals"
2296
- | "StringNotEmpty"
2297
- | "StringNotEquals"
2298
- | "StringNotContains";
2199
+ filterType: FusionReportFilterFilterTypeEnum;
2299
2200
  targetField: string;
2300
2201
  targetValue: string;
2301
2202
  }
@@ -2418,45 +2319,12 @@ export interface GetWorkflowRequest {
2418
2319
  export interface GuidPatchOperation {
2419
2320
  op: string;
2420
2321
  path: string;
2421
- value?: any;
2322
+ value?: any | null;
2422
2323
  from?: string | null;
2423
2324
  }
2424
2325
 
2425
2326
  export interface IPAddress {
2426
- addressFamily:
2427
- | "Unspecified"
2428
- | "Unix"
2429
- | "InterNetwork"
2430
- | "ImpLink"
2431
- | "Pup"
2432
- | "Chaos"
2433
- | "NS"
2434
- | "Ipx"
2435
- | "Iso"
2436
- | "Osi"
2437
- | "Ecma"
2438
- | "DataKit"
2439
- | "Ccitt"
2440
- | "Sna"
2441
- | "DecNet"
2442
- | "DataLink"
2443
- | "Lat"
2444
- | "HyperChannel"
2445
- | "AppleTalk"
2446
- | "NetBios"
2447
- | "VoiceView"
2448
- | "FireFox"
2449
- | "Banyan"
2450
- | "Atm"
2451
- | "InterNetworkV6"
2452
- | "Cluster"
2453
- | "Ieee12844"
2454
- | "Irda"
2455
- | "NetworkDesigners"
2456
- | "Max"
2457
- | "Packet"
2458
- | "ControllerAreaNetwork"
2459
- | "Unknown";
2327
+ addressFamily: IpAddressAddressFamilyEnum;
2460
2328
  /** @format int64 */
2461
2329
  scopeId: number;
2462
2330
  isIPv6Multicast: boolean;
@@ -2728,7 +2596,7 @@ export interface Loan {
2728
2596
  userLoans: UserLoan[];
2729
2597
  contacts: LoanContact[];
2730
2598
  customFields: CustomFieldEntry[];
2731
- signingMethod: "ConsumerConnect" | "POSF";
2599
+ signingMethod: LoanSigningMethodEnum;
2732
2600
  }
2733
2601
 
2734
2602
  export interface LoanApplication {
@@ -2767,7 +2635,7 @@ export interface LoanApplicationRequest {
2767
2635
  nonOwningBorrowers: LoanNonOwningBorrowerRequest[];
2768
2636
  /** @format uuid */
2769
2637
  draftId?: string | null;
2770
- additionalFields?: Record<string, any>;
2638
+ additionalFields?: Record<string, any> | null;
2771
2639
  /** @format uuid */
2772
2640
  existingLoanId?: string | null;
2773
2641
  }
@@ -2787,7 +2655,7 @@ export interface LoanBorrower {
2787
2655
  citizenship?: LoanCitizenship | null;
2788
2656
  maritalStatus?: LoanMaritalStatus | null;
2789
2657
  languagePreference?: LoanLanguagePreference | null;
2790
- applicationStatus: "Draft" | "Complete";
2658
+ applicationStatus: LoanBorrowerApplicationStatusEnum;
2791
2659
  /** @format int32 */
2792
2660
  numberOfDependents?: number | null;
2793
2661
  isPrimaryBorrower: boolean;
@@ -3694,7 +3562,7 @@ export interface LoanConsentRequest {
3694
3562
  borrowerEConsent?: boolean | null;
3695
3563
  borrowerCreditAuth?: boolean | null;
3696
3564
  borrowerTCPAOptIn?: boolean | null;
3697
- additionalFields?: Record<string, string>;
3565
+ additionalFields?: Record<string, string> | null;
3698
3566
  }
3699
3567
 
3700
3568
  export interface LoanContact {
@@ -3713,20 +3581,7 @@ export interface LoanContact {
3713
3581
  email?: string | null;
3714
3582
  phone?: string | null;
3715
3583
  companyName?: string | null;
3716
- role:
3717
- | "Borrower"
3718
- | "CoBorrower"
3719
- | "NonBorrower"
3720
- | "LoanOfficer"
3721
- | "LoanProcessor"
3722
- | "LoanOfficerAssistant"
3723
- | "SupportingLoanOfficer"
3724
- | "BuyerAgent"
3725
- | "SellerAgent"
3726
- | "TitleInsuranceAgent"
3727
- | "EscrowAgent"
3728
- | "SettlementAgent"
3729
- | "Admin";
3584
+ role: LoanContactRoleEnum;
3730
3585
  }
3731
3586
 
3732
3587
  export interface LoanContactList {
@@ -3734,7 +3589,7 @@ export interface LoanContactList {
3734
3589
  }
3735
3590
 
3736
3591
  export interface LoanCustomFieldsRequest {
3737
- additionalFields?: Record<string, string>;
3592
+ additionalFields?: Record<string, string> | null;
3738
3593
  }
3739
3594
 
3740
3595
  export interface LoanDocument {
@@ -3780,39 +3635,13 @@ export interface LoanDocumentFolderPermission {
3780
3635
  id: string;
3781
3636
  /** @format uuid */
3782
3637
  loanDocumentFolderID: string;
3783
- role:
3784
- | "Borrower"
3785
- | "CoBorrower"
3786
- | "NonBorrower"
3787
- | "LoanOfficer"
3788
- | "LoanProcessor"
3789
- | "LoanOfficerAssistant"
3790
- | "SupportingLoanOfficer"
3791
- | "BuyerAgent"
3792
- | "SellerAgent"
3793
- | "TitleInsuranceAgent"
3794
- | "EscrowAgent"
3795
- | "SettlementAgent"
3796
- | "Admin";
3797
- level: "None" | "Read" | "Write" | "Manage";
3638
+ role: LoanDocumentFolderPermissionRoleEnum;
3639
+ level: LoanDocumentFolderPermissionLevelEnum;
3798
3640
  }
3799
3641
 
3800
3642
  export interface LoanDocumentFolderPermissionRequest {
3801
- role:
3802
- | "Borrower"
3803
- | "CoBorrower"
3804
- | "NonBorrower"
3805
- | "LoanOfficer"
3806
- | "LoanProcessor"
3807
- | "LoanOfficerAssistant"
3808
- | "SupportingLoanOfficer"
3809
- | "BuyerAgent"
3810
- | "SellerAgent"
3811
- | "TitleInsuranceAgent"
3812
- | "EscrowAgent"
3813
- | "SettlementAgent"
3814
- | "Admin";
3815
- level: "None" | "Read" | "Write" | "Manage";
3643
+ role: LoanDocumentFolderPermissionRequestRoleEnum;
3644
+ level: LoanDocumentFolderPermissionRequestLevelEnum;
3816
3645
  }
3817
3646
 
3818
3647
  export interface LoanDocumentFolderUsage {
@@ -3930,19 +3759,14 @@ export interface LoanImport {
3930
3759
  /** @format int32 */
3931
3760
  importedCount: number;
3932
3761
  statusMessage?: string | null;
3933
- status:
3934
- | "WaitingProcess"
3935
- | "InProgress"
3936
- | "Completed"
3937
- | "Failed"
3938
- | "Cancelled";
3939
- importMode: "All" | "NewOnly" | "UpdateOnly";
3762
+ status: LoanImportStatusEnum;
3763
+ importMode: LoanImportImportModeEnum;
3940
3764
  /** @format date-time */
3941
3765
  createdAt?: string | null;
3942
3766
  }
3943
3767
 
3944
3768
  export interface LoanImportLog {
3945
- level: "None" | "Info" | "Warning" | "Error";
3769
+ level: LoanImportLogLevelEnum;
3946
3770
  message: string;
3947
3771
  /** @format date-time */
3948
3772
  createdAt: string;
@@ -4003,24 +3827,8 @@ export interface LoanListPaginated {
4003
3827
  export interface LoanLog {
4004
3828
  /** @format uuid */
4005
3829
  id: string;
4006
- level: "None" | "Info" | "Warning" | "Error";
4007
- type:
4008
- | "Loan"
4009
- | "Queue"
4010
- | "POSFlagChanged"
4011
- | "Verification"
4012
- | "DocumentUploaded"
4013
- | "LoanCreated"
4014
- | "WorkflowSubmitted"
4015
- | "UserInvitationSent"
4016
- | "CoBorrowerAdded"
4017
- | "TaskCompleted"
4018
- | "LoanStatusChanged"
4019
- | "Consent"
4020
- | "SensitiveDataPurge"
4021
- | "ClosingDateUpdated"
4022
- | "ConsumerConnectAssociation"
4023
- | "TaskReminderSent";
3830
+ level: LoanLogLevelEnum;
3831
+ type: LoanLogTypeEnum;
4024
3832
  message: string;
4025
3833
  /** @format date-time */
4026
3834
  createdAt: string;
@@ -4029,24 +3837,8 @@ export interface LoanLog {
4029
3837
  export interface LoanLogDetail {
4030
3838
  /** @format uuid */
4031
3839
  id: string;
4032
- level: "None" | "Info" | "Warning" | "Error";
4033
- type:
4034
- | "Loan"
4035
- | "Queue"
4036
- | "POSFlagChanged"
4037
- | "Verification"
4038
- | "DocumentUploaded"
4039
- | "LoanCreated"
4040
- | "WorkflowSubmitted"
4041
- | "UserInvitationSent"
4042
- | "CoBorrowerAdded"
4043
- | "TaskCompleted"
4044
- | "LoanStatusChanged"
4045
- | "Consent"
4046
- | "SensitiveDataPurge"
4047
- | "ClosingDateUpdated"
4048
- | "ConsumerConnectAssociation"
4049
- | "TaskReminderSent";
3840
+ level: LoanLogDetailLevelEnum;
3841
+ type: LoanLogDetailTypeEnum;
4050
3842
  message: string;
4051
3843
  /** @format date-time */
4052
3844
  createdAt: string;
@@ -4303,7 +4095,7 @@ export interface LoanQueueWithData {
4303
4095
  user: UserPublic;
4304
4096
  loanOfficer: LoanOfficerPublic;
4305
4097
  siteConfiguration: SiteConfigurationReduced;
4306
- data?: any;
4098
+ data?: any | null;
4307
4099
  }
4308
4100
 
4309
4101
  export interface LoanRecord {
@@ -4339,7 +4131,7 @@ export interface LoanTaskSearchRequest {
4339
4131
  }
4340
4132
 
4341
4133
  export interface LoanTaskStatusSummary {
4342
- status: "Outstanding" | "Pending" | "Completed" | "Rejected" | "Unknown";
4134
+ status: LoanTaskStatusSummaryStatusEnum;
4343
4135
  /** @format int32 */
4344
4136
  count: number;
4345
4137
  }
@@ -4352,20 +4144,7 @@ export interface LoanUser {
4352
4144
  email: string;
4353
4145
  phone?: string | null;
4354
4146
  role: string;
4355
- loanRole:
4356
- | "Borrower"
4357
- | "CoBorrower"
4358
- | "NonBorrower"
4359
- | "LoanOfficer"
4360
- | "LoanProcessor"
4361
- | "LoanOfficerAssistant"
4362
- | "SupportingLoanOfficer"
4363
- | "BuyerAgent"
4364
- | "SellerAgent"
4365
- | "TitleInsuranceAgent"
4366
- | "EscrowAgent"
4367
- | "SettlementAgent"
4368
- | "Admin";
4147
+ loanRole: LoanUserLoanRoleEnum;
4369
4148
  isUser: boolean;
4370
4149
  /** @format date-time */
4371
4150
  createdAt: string;
@@ -4401,13 +4180,7 @@ export interface LosOperationTracking {
4401
4180
  operationType: string;
4402
4181
  correlationKey: string;
4403
4182
  lastTriggerSource?: string | null;
4404
- status:
4405
- | "Pending"
4406
- | "Success"
4407
- | "Failed"
4408
- | "ConfigurationError"
4409
- | "PermanentFailure"
4410
- | "Locked";
4183
+ status: LosOperationTrackingStatusEnum;
4411
4184
  /** @format date-time */
4412
4185
  createdAt: string;
4413
4186
  /** @format date-time */
@@ -4474,7 +4247,7 @@ export interface LosSyncStep {
4474
4247
  /** @format int32 */
4475
4248
  order: number;
4476
4249
  name: string;
4477
- severity: "Success" | "Info" | "Warning" | "Error";
4250
+ severity: LosSyncStepSeverityEnum;
4478
4251
  message: string;
4479
4252
  /** @format date-time */
4480
4253
  atUtc: string;
@@ -4583,7 +4356,7 @@ export interface ModuleParameterValue {
4583
4356
  parameterID: string;
4584
4357
  parameterName: string;
4585
4358
  parameterType: string;
4586
- value?: any;
4359
+ value?: any | null;
4587
4360
  isInherited: boolean;
4588
4361
  }
4589
4362
 
@@ -4807,7 +4580,7 @@ export interface NotificationTemplateVersionUpdateRequest {
4807
4580
 
4808
4581
  export interface Operation {
4809
4582
  op?: string;
4810
- value?: string | number | boolean | null | object;
4583
+ value?: object | null;
4811
4584
  path?: string;
4812
4585
  }
4813
4586
 
@@ -5163,7 +4936,7 @@ export interface SSOTokenRequest {
5163
4936
  }
5164
4937
 
5165
4938
  export interface SamlMetadataRequest {
5166
- ssoIntegration: "ConsumerConnect" | "TheBigPOS" | "POSF";
4939
+ ssoIntegration: SamlMetadataRequestSsoIntegrationEnum;
5167
4940
  }
5168
4941
 
5169
4942
  export interface SendForgotPasswordRequest {
@@ -5221,7 +4994,7 @@ export interface SiteConfiguration {
5221
4994
  deletedAt?: string | null;
5222
4995
  /** @format uuid */
5223
4996
  id: string;
5224
- type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
4997
+ type: SiteConfigurationTypeEnum;
5225
4998
  /** @format uuid */
5226
4999
  entityID: string;
5227
5000
  /** @format int32 */
@@ -5416,7 +5189,7 @@ export interface SiteConfigurationByUrl {
5416
5189
  deletedAt?: string | null;
5417
5190
  /** @format uuid */
5418
5191
  id: string;
5419
- type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
5192
+ type: SiteConfigurationByUrlTypeEnum;
5420
5193
  /** @format uuid */
5421
5194
  entityID: string;
5422
5195
  /** @format int32 */
@@ -5629,7 +5402,7 @@ export interface SiteConfigurationForm {
5629
5402
  export interface SiteConfigurationReduced {
5630
5403
  /** @format uuid */
5631
5404
  id: string;
5632
- type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
5405
+ type: SiteConfigurationReducedTypeEnum;
5633
5406
  url?: string | null;
5634
5407
  name: string;
5635
5408
  /** @format int64 */
@@ -5647,7 +5420,7 @@ export interface SiteConfigurationRequest {
5647
5420
  entityID: string;
5648
5421
  /** @format int32 */
5649
5422
  entityType: number;
5650
- type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
5423
+ type: SiteConfigurationRequestTypeEnum;
5651
5424
  url: string;
5652
5425
  name: string;
5653
5426
  introduction?: string | null;
@@ -5824,7 +5597,7 @@ export interface SiteConfigurationSearchCriteria {
5824
5597
  export interface SiteConfigurationSummary {
5825
5598
  /** @format uuid */
5826
5599
  id: string;
5827
- type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
5600
+ type: SiteConfigurationSummaryTypeEnum;
5828
5601
  url?: string | null;
5829
5602
  name: string;
5830
5603
  /** @format int64 */
@@ -6492,20 +6265,7 @@ export interface UserDevice {
6492
6265
  export interface UserDraft {
6493
6266
  /** @format uuid */
6494
6267
  draftID: string;
6495
- role:
6496
- | "Borrower"
6497
- | "CoBorrower"
6498
- | "NonBorrower"
6499
- | "LoanOfficer"
6500
- | "LoanProcessor"
6501
- | "LoanOfficerAssistant"
6502
- | "SupportingLoanOfficer"
6503
- | "BuyerAgent"
6504
- | "SellerAgent"
6505
- | "TitleInsuranceAgent"
6506
- | "EscrowAgent"
6507
- | "SettlementAgent"
6508
- | "Admin";
6268
+ role: UserDraftRoleEnum;
6509
6269
  user: User;
6510
6270
  }
6511
6271
 
@@ -6532,7 +6292,7 @@ export interface UserGroupAccessScope {
6532
6292
  id: string;
6533
6293
  /** @format uuid */
6534
6294
  groupId: string;
6535
- scopeType: "User" | "Branch";
6295
+ scopeType: UserGroupAccessScopeScopeTypeEnum;
6536
6296
  /** @format uuid */
6537
6297
  userId?: string | null;
6538
6298
  /** @format uuid */
@@ -6568,20 +6328,7 @@ export interface UserLoan {
6568
6328
  deletedAt?: string | null;
6569
6329
  loanID: string;
6570
6330
  user: User;
6571
- role:
6572
- | "Borrower"
6573
- | "CoBorrower"
6574
- | "NonBorrower"
6575
- | "LoanOfficer"
6576
- | "LoanProcessor"
6577
- | "LoanOfficerAssistant"
6578
- | "SupportingLoanOfficer"
6579
- | "BuyerAgent"
6580
- | "SellerAgent"
6581
- | "TitleInsuranceAgent"
6582
- | "EscrowAgent"
6583
- | "SettlementAgent"
6584
- | "Admin";
6331
+ role: UserLoanRoleEnum;
6585
6332
  /** @format int32 */
6586
6333
  borrowerPair?: number | null;
6587
6334
  /** @format int32 */
@@ -6594,11 +6341,11 @@ export interface UserLoanConsent {
6594
6341
  id: string;
6595
6342
  /** @format uuid */
6596
6343
  userLoanID: string;
6597
- type: "Econsent" | "CreditAuthorization" | "Tcpa";
6344
+ type: UserLoanConsentTypeEnum;
6598
6345
  providedConsent: boolean;
6599
6346
  source?: ConsentSource | null;
6600
6347
  ipAddress?: string | null;
6601
- losSyncStatus: "NotStarted" | "Failed" | "Success";
6348
+ losSyncStatus: UserLoanConsentLosSyncStatusEnum;
6602
6349
  /** @format date-time */
6603
6350
  createdAt: string;
6604
6351
  /** @format date-time */
@@ -6753,16 +6500,7 @@ export interface UserSummary {
6753
6500
  id: string;
6754
6501
  name?: string | null;
6755
6502
  email?: string | null;
6756
- role:
6757
- | "Borrower"
6758
- | "LoanOfficer"
6759
- | "Admin"
6760
- | "SuperAdmin"
6761
- | "Realtor"
6762
- | "SettlementAgent"
6763
- | "LoanProcessor"
6764
- | "LoanOfficerAssistant"
6765
- | "SystemAdmin";
6503
+ role: UserSummaryRoleEnum;
6766
6504
  }
6767
6505
 
6768
6506
  export interface VerifyPasswordRequest {
@@ -6798,6 +6536,498 @@ export interface Workflow {
6798
6536
  icon: string;
6799
6537
  }
6800
6538
 
6539
+ export type AccountBillingRequestBillingTypeEnum = "ClosedLoan" | "LoanOfficer";
6540
+
6541
+ export type AuditLogEntryChangeTypeEnum =
6542
+ | "Created"
6543
+ | "Modified"
6544
+ | "SoftDeleted"
6545
+ | "HardDeleted"
6546
+ | "Restored"
6547
+ | "Deactivated"
6548
+ | "Reactivated";
6549
+
6550
+ export type CreateAccessScopeRequestScopeTypeEnum = "User" | "Branch";
6551
+
6552
+ export type CreateAccountRequestEnvironmentEnum =
6553
+ | "Development"
6554
+ | "Staging"
6555
+ | "UAT"
6556
+ | "Production";
6557
+
6558
+ export type CreateCustomFieldDefinitionRequestDataTypeEnum =
6559
+ | "String"
6560
+ | "Number"
6561
+ | "Decimal"
6562
+ | "Boolean"
6563
+ | "Date"
6564
+ | "SingleSelect"
6565
+ | "MultiSelect";
6566
+
6567
+ export type CreateCustomFieldDefinitionRequestEntityTypeEnum = "Loan";
6568
+
6569
+ export type CreateGroupMemberRequestLoanRoleEnum =
6570
+ | "Borrower"
6571
+ | "CoBorrower"
6572
+ | "NonBorrower"
6573
+ | "LoanOfficer"
6574
+ | "LoanProcessor"
6575
+ | "LoanOfficerAssistant"
6576
+ | "SupportingLoanOfficer"
6577
+ | "BuyerAgent"
6578
+ | "SellerAgent"
6579
+ | "TitleInsuranceAgent"
6580
+ | "EscrowAgent"
6581
+ | "SettlementAgent"
6582
+ | "Admin";
6583
+
6584
+ /** @deprecated */
6585
+ export type CreateInviteRequestRelationshipEnum =
6586
+ | "NotApplicable"
6587
+ | "Spouse"
6588
+ | "NonSpouse";
6589
+
6590
+ export type CreateLoanImportRequestImportModeEnum =
6591
+ | "All"
6592
+ | "NewOnly"
6593
+ | "UpdateOnly";
6594
+
6595
+ export type CreateUserDraftLoanRoleEnum =
6596
+ | "Borrower"
6597
+ | "CoBorrower"
6598
+ | "NonBorrower"
6599
+ | "LoanOfficer"
6600
+ | "LoanProcessor"
6601
+ | "LoanOfficerAssistant"
6602
+ | "SupportingLoanOfficer"
6603
+ | "BuyerAgent"
6604
+ | "SellerAgent"
6605
+ | "TitleInsuranceAgent"
6606
+ | "EscrowAgent"
6607
+ | "SettlementAgent"
6608
+ | "Admin";
6609
+
6610
+ export type CustomFieldDefinitionDataTypeEnum =
6611
+ | "String"
6612
+ | "Number"
6613
+ | "Decimal"
6614
+ | "Boolean"
6615
+ | "Date"
6616
+ | "SingleSelect"
6617
+ | "MultiSelect";
6618
+
6619
+ export type CustomFieldDefinitionEntityTypeEnum = "Loan";
6620
+
6621
+ export type CustomFieldEntryDataTypeEnum =
6622
+ | "String"
6623
+ | "Number"
6624
+ | "Decimal"
6625
+ | "Boolean"
6626
+ | "Date"
6627
+ | "SingleSelect"
6628
+ | "MultiSelect";
6629
+
6630
+ export type CustomFieldPermissionRoleEnum =
6631
+ | "Borrower"
6632
+ | "LoanOfficer"
6633
+ | "Admin"
6634
+ | "SuperAdmin"
6635
+ | "Realtor"
6636
+ | "SettlementAgent"
6637
+ | "LoanProcessor"
6638
+ | "LoanOfficerAssistant"
6639
+ | "SystemAdmin";
6640
+
6641
+ export type CustomFieldPermissionAccessLevelEnum =
6642
+ | "NoAccess"
6643
+ | "ReadOnly"
6644
+ | "ReadWrite";
6645
+
6646
+ export type CustomFieldPermissionRequestRoleEnum =
6647
+ | "Borrower"
6648
+ | "LoanOfficer"
6649
+ | "Admin"
6650
+ | "SuperAdmin"
6651
+ | "Realtor"
6652
+ | "SettlementAgent"
6653
+ | "LoanProcessor"
6654
+ | "LoanOfficerAssistant"
6655
+ | "SystemAdmin";
6656
+
6657
+ export type CustomFieldPermissionRequestAccessLevelEnum =
6658
+ | "NoAccess"
6659
+ | "ReadOnly"
6660
+ | "ReadWrite";
6661
+
6662
+ export type CustomFieldValueDataTypeEnum =
6663
+ | "String"
6664
+ | "Number"
6665
+ | "Decimal"
6666
+ | "Boolean"
6667
+ | "Date"
6668
+ | "SingleSelect"
6669
+ | "MultiSelect";
6670
+
6671
+ export type DraftTypeEnum = "NewLoan" | "EditLoan";
6672
+
6673
+ export type DraftContentTypeEnum = "NewLoan" | "EditLoan";
6674
+
6675
+ export type EncompassCredentialsDetailEncompassEnvironmentEnum =
6676
+ | "Production"
6677
+ | "UAT";
6678
+
6679
+ export type EncompassCredentialsDetailSigningMethodEnum =
6680
+ | "ConsumerConnect"
6681
+ | "POSF";
6682
+
6683
+ export type EncompassCredentialsRequestEncompassEnvironmentEnum =
6684
+ | "Production"
6685
+ | "UAT";
6686
+
6687
+ export type EncompassCredentialsRequestSigningMethodEnum =
6688
+ | "ConsumerConnect"
6689
+ | "POSF";
6690
+
6691
+ export type EncompassRequestLogOperationTypeEnum =
6692
+ | "FieldUpdate"
6693
+ | "ConsentUpdate"
6694
+ | "DocumentSync"
6695
+ | "MilestoneUpdate"
6696
+ | "DocumentAttachment"
6697
+ | "General"
6698
+ | "FieldReader";
6699
+
6700
+ export type EncompassRequestLogOutcomeEnum =
6701
+ | "Success"
6702
+ | "Failure"
6703
+ | "PartialSuccess";
6704
+
6705
+ export type FusionReportFilterFilterTypeEnum =
6706
+ | "DateGreaterThanOrEqualTo"
6707
+ | "DateGreaterThan"
6708
+ | "DateLessThan"
6709
+ | "DateLessThanOrEqualTo"
6710
+ | "DateEquals"
6711
+ | "DateDoesntEqual"
6712
+ | "DateNonEmpty"
6713
+ | "DateEmpty"
6714
+ | "StringContains"
6715
+ | "StringEquals"
6716
+ | "StringNotEmpty"
6717
+ | "StringNotEquals"
6718
+ | "StringNotContains";
6719
+
6720
+ export type IpAddressAddressFamilyEnum =
6721
+ | "Unspecified"
6722
+ | "Unix"
6723
+ | "InterNetwork"
6724
+ | "ImpLink"
6725
+ | "Pup"
6726
+ | "Chaos"
6727
+ | "NS"
6728
+ | "Ipx"
6729
+ | "Iso"
6730
+ | "Osi"
6731
+ | "Ecma"
6732
+ | "DataKit"
6733
+ | "Ccitt"
6734
+ | "Sna"
6735
+ | "DecNet"
6736
+ | "DataLink"
6737
+ | "Lat"
6738
+ | "HyperChannel"
6739
+ | "AppleTalk"
6740
+ | "NetBios"
6741
+ | "VoiceView"
6742
+ | "FireFox"
6743
+ | "Banyan"
6744
+ | "Atm"
6745
+ | "InterNetworkV6"
6746
+ | "Cluster"
6747
+ | "Ieee12844"
6748
+ | "Irda"
6749
+ | "NetworkDesigners"
6750
+ | "Max"
6751
+ | "Packet"
6752
+ | "ControllerAreaNetwork"
6753
+ | "Unknown";
6754
+
6755
+ export type LoanSigningMethodEnum = "ConsumerConnect" | "POSF";
6756
+
6757
+ export type LoanBorrowerApplicationStatusEnum = "Draft" | "Complete";
6758
+
6759
+ export type LoanContactRoleEnum =
6760
+ | "Borrower"
6761
+ | "CoBorrower"
6762
+ | "NonBorrower"
6763
+ | "LoanOfficer"
6764
+ | "LoanProcessor"
6765
+ | "LoanOfficerAssistant"
6766
+ | "SupportingLoanOfficer"
6767
+ | "BuyerAgent"
6768
+ | "SellerAgent"
6769
+ | "TitleInsuranceAgent"
6770
+ | "EscrowAgent"
6771
+ | "SettlementAgent"
6772
+ | "Admin";
6773
+
6774
+ export type LoanDocumentFolderPermissionRoleEnum =
6775
+ | "Borrower"
6776
+ | "CoBorrower"
6777
+ | "NonBorrower"
6778
+ | "LoanOfficer"
6779
+ | "LoanProcessor"
6780
+ | "LoanOfficerAssistant"
6781
+ | "SupportingLoanOfficer"
6782
+ | "BuyerAgent"
6783
+ | "SellerAgent"
6784
+ | "TitleInsuranceAgent"
6785
+ | "EscrowAgent"
6786
+ | "SettlementAgent"
6787
+ | "Admin";
6788
+
6789
+ export type LoanDocumentFolderPermissionLevelEnum =
6790
+ | "None"
6791
+ | "Read"
6792
+ | "Write"
6793
+ | "Manage";
6794
+
6795
+ export type LoanDocumentFolderPermissionRequestRoleEnum =
6796
+ | "Borrower"
6797
+ | "CoBorrower"
6798
+ | "NonBorrower"
6799
+ | "LoanOfficer"
6800
+ | "LoanProcessor"
6801
+ | "LoanOfficerAssistant"
6802
+ | "SupportingLoanOfficer"
6803
+ | "BuyerAgent"
6804
+ | "SellerAgent"
6805
+ | "TitleInsuranceAgent"
6806
+ | "EscrowAgent"
6807
+ | "SettlementAgent"
6808
+ | "Admin";
6809
+
6810
+ export type LoanDocumentFolderPermissionRequestLevelEnum =
6811
+ | "None"
6812
+ | "Read"
6813
+ | "Write"
6814
+ | "Manage";
6815
+
6816
+ export type LoanImportStatusEnum =
6817
+ | "WaitingProcess"
6818
+ | "InProgress"
6819
+ | "Completed"
6820
+ | "Failed"
6821
+ | "Cancelled";
6822
+
6823
+ export type LoanImportImportModeEnum = "All" | "NewOnly" | "UpdateOnly";
6824
+
6825
+ export type LoanImportLogLevelEnum = "None" | "Info" | "Warning" | "Error";
6826
+
6827
+ export type LoanLogLevelEnum = "None" | "Info" | "Warning" | "Error";
6828
+
6829
+ export type LoanLogTypeEnum =
6830
+ | "Loan"
6831
+ | "Queue"
6832
+ | "POSFlagChanged"
6833
+ | "Verification"
6834
+ | "DocumentUploaded"
6835
+ | "LoanCreated"
6836
+ | "WorkflowSubmitted"
6837
+ | "UserInvitationSent"
6838
+ | "CoBorrowerAdded"
6839
+ | "TaskCompleted"
6840
+ | "LoanStatusChanged"
6841
+ | "Consent"
6842
+ | "SensitiveDataPurge"
6843
+ | "ClosingDateUpdated"
6844
+ | "ConsumerConnectAssociation"
6845
+ | "TaskReminderSent";
6846
+
6847
+ export type LoanLogDetailLevelEnum = "None" | "Info" | "Warning" | "Error";
6848
+
6849
+ export type LoanLogDetailTypeEnum =
6850
+ | "Loan"
6851
+ | "Queue"
6852
+ | "POSFlagChanged"
6853
+ | "Verification"
6854
+ | "DocumentUploaded"
6855
+ | "LoanCreated"
6856
+ | "WorkflowSubmitted"
6857
+ | "UserInvitationSent"
6858
+ | "CoBorrowerAdded"
6859
+ | "TaskCompleted"
6860
+ | "LoanStatusChanged"
6861
+ | "Consent"
6862
+ | "SensitiveDataPurge"
6863
+ | "ClosingDateUpdated"
6864
+ | "ConsumerConnectAssociation"
6865
+ | "TaskReminderSent";
6866
+
6867
+ export type LoanTaskStatusSummaryStatusEnum =
6868
+ | "Outstanding"
6869
+ | "Pending"
6870
+ | "Completed"
6871
+ | "Rejected"
6872
+ | "Unknown";
6873
+
6874
+ export type LoanUserLoanRoleEnum =
6875
+ | "Borrower"
6876
+ | "CoBorrower"
6877
+ | "NonBorrower"
6878
+ | "LoanOfficer"
6879
+ | "LoanProcessor"
6880
+ | "LoanOfficerAssistant"
6881
+ | "SupportingLoanOfficer"
6882
+ | "BuyerAgent"
6883
+ | "SellerAgent"
6884
+ | "TitleInsuranceAgent"
6885
+ | "EscrowAgent"
6886
+ | "SettlementAgent"
6887
+ | "Admin";
6888
+
6889
+ export type LosOperationTrackingStatusEnum =
6890
+ | "Pending"
6891
+ | "Success"
6892
+ | "Failed"
6893
+ | "ConfigurationError"
6894
+ | "PermanentFailure"
6895
+ | "Locked";
6896
+
6897
+ export type LosSyncStepSeverityEnum = "Success" | "Info" | "Warning" | "Error";
6898
+
6899
+ export type SamlMetadataRequestSsoIntegrationEnum =
6900
+ | "ConsumerConnect"
6901
+ | "TheBigPOS"
6902
+ | "POSF";
6903
+
6904
+ export type SiteConfigurationTypeEnum =
6905
+ | "None"
6906
+ | "Account"
6907
+ | "Corporate"
6908
+ | "Branch"
6909
+ | "LoanOfficer"
6910
+ | "Partner";
6911
+
6912
+ export type SiteConfigurationByUrlTypeEnum =
6913
+ | "None"
6914
+ | "Account"
6915
+ | "Corporate"
6916
+ | "Branch"
6917
+ | "LoanOfficer"
6918
+ | "Partner";
6919
+
6920
+ export type SiteConfigurationReducedTypeEnum =
6921
+ | "None"
6922
+ | "Account"
6923
+ | "Corporate"
6924
+ | "Branch"
6925
+ | "LoanOfficer"
6926
+ | "Partner";
6927
+
6928
+ export type SiteConfigurationRequestTypeEnum =
6929
+ | "None"
6930
+ | "Account"
6931
+ | "Corporate"
6932
+ | "Branch"
6933
+ | "LoanOfficer"
6934
+ | "Partner";
6935
+
6936
+ export type SiteConfigurationSummaryTypeEnum =
6937
+ | "None"
6938
+ | "Account"
6939
+ | "Corporate"
6940
+ | "Branch"
6941
+ | "LoanOfficer"
6942
+ | "Partner";
6943
+
6944
+ export type UserDraftRoleEnum =
6945
+ | "Borrower"
6946
+ | "CoBorrower"
6947
+ | "NonBorrower"
6948
+ | "LoanOfficer"
6949
+ | "LoanProcessor"
6950
+ | "LoanOfficerAssistant"
6951
+ | "SupportingLoanOfficer"
6952
+ | "BuyerAgent"
6953
+ | "SellerAgent"
6954
+ | "TitleInsuranceAgent"
6955
+ | "EscrowAgent"
6956
+ | "SettlementAgent"
6957
+ | "Admin";
6958
+
6959
+ export type UserGroupAccessScopeScopeTypeEnum = "User" | "Branch";
6960
+
6961
+ export type UserLoanRoleEnum =
6962
+ | "Borrower"
6963
+ | "CoBorrower"
6964
+ | "NonBorrower"
6965
+ | "LoanOfficer"
6966
+ | "LoanProcessor"
6967
+ | "LoanOfficerAssistant"
6968
+ | "SupportingLoanOfficer"
6969
+ | "BuyerAgent"
6970
+ | "SellerAgent"
6971
+ | "TitleInsuranceAgent"
6972
+ | "EscrowAgent"
6973
+ | "SettlementAgent"
6974
+ | "Admin";
6975
+
6976
+ export type UserLoanConsentTypeEnum =
6977
+ | "Econsent"
6978
+ | "CreditAuthorization"
6979
+ | "Tcpa";
6980
+
6981
+ export type UserLoanConsentLosSyncStatusEnum =
6982
+ | "NotStarted"
6983
+ | "Failed"
6984
+ | "Success";
6985
+
6986
+ export type UserSummaryRoleEnum =
6987
+ | "Borrower"
6988
+ | "LoanOfficer"
6989
+ | "Admin"
6990
+ | "SuperAdmin"
6991
+ | "Realtor"
6992
+ | "SettlementAgent"
6993
+ | "LoanProcessor"
6994
+ | "LoanOfficerAssistant"
6995
+ | "SystemAdmin";
6996
+
6997
+ export type GetCustomFieldDefinitionsParamsEntityTypeEnum = "Loan";
6998
+
6999
+ /** @default "Realtor" */
7000
+ export type GetPartnersParamsRoleEnum =
7001
+ | "Borrower"
7002
+ | "LoanOfficer"
7003
+ | "Admin"
7004
+ | "SuperAdmin"
7005
+ | "Realtor"
7006
+ | "SettlementAgent"
7007
+ | "LoanProcessor"
7008
+ | "LoanOfficerAssistant"
7009
+ | "SystemAdmin";
7010
+
7011
+ export type GetSamlMetadataParamsSSoIntegrationEnum =
7012
+ | "ConsumerConnect"
7013
+ | "TheBigPOS"
7014
+ | "POSF";
7015
+
7016
+ export type GetSamlMetadataParamsEnum =
7017
+ | "ConsumerConnect"
7018
+ | "TheBigPOS"
7019
+ | "POSF";
7020
+
7021
+ export type CreateOrReplaceSamlMetadataParamsSSoIntegrationEnum =
7022
+ | "ConsumerConnect"
7023
+ | "TheBigPOS"
7024
+ | "POSF";
7025
+
7026
+ export type CreateOrReplaceSamlMetadataParamsEnum =
7027
+ | "ConsumerConnect"
7028
+ | "TheBigPOS"
7029
+ | "POSF";
7030
+
6801
7031
  import type {
6802
7032
  AxiosInstance,
6803
7033
  AxiosRequestConfig,
@@ -6839,14 +7069,12 @@ export interface ApiConfig<SecurityDataType = unknown>
6839
7069
  format?: ResponseType;
6840
7070
  }
6841
7071
 
6842
- export enum ContentType {
6843
- JsonPatch = "application/json-patch+json",
6844
- Json = "application/json",
6845
- JsonApi = "application/vnd.api+json",
6846
- FormData = "multipart/form-data",
6847
- UrlEncoded = "application/x-www-form-urlencoded",
6848
- Text = "text/plain",
6849
- }
7072
+ export type ContentType =
7073
+ | "application/json"
7074
+ | "application/vnd.api+json"
7075
+ | "multipart/form-data"
7076
+ | "application/x-www-form-urlencoded"
7077
+ | "text/plain";
6850
7078
 
6851
7079
  export class HttpClient<SecurityDataType = unknown> {
6852
7080
  public instance: AxiosInstance;
@@ -6943,7 +7171,7 @@ export class HttpClient<SecurityDataType = unknown> {
6943
7171
  const responseFormat = format || this.format || undefined;
6944
7172
 
6945
7173
  if (
6946
- type === ContentType.FormData &&
7174
+ type === "multipart/form-data" &&
6947
7175
  body &&
6948
7176
  body !== null &&
6949
7177
  typeof body === "object"
@@ -6952,7 +7180,7 @@ export class HttpClient<SecurityDataType = unknown> {
6952
7180
  }
6953
7181
 
6954
7182
  if (
6955
- type === ContentType.Text &&
7183
+ type === "text/plain" &&
6956
7184
  body &&
6957
7185
  body !== null &&
6958
7186
  typeof body !== "string"
@@ -6976,7 +7204,7 @@ export class HttpClient<SecurityDataType = unknown> {
6976
7204
 
6977
7205
  /**
6978
7206
  * @title The Big POS API
6979
- * @version v2.41.0
7207
+ * @version v2.42.0
6980
7208
  * @termsOfService https://www.thebigpos.com/terms-of-use/
6981
7209
  * @contact Mortgage Automation Technologies <support@thebigpos.com> (https://www.thebigpos.com/terms-of-use/)
6982
7210
  */
@@ -7059,7 +7287,7 @@ export class Api<
7059
7287
  method: "PUT",
7060
7288
  body: data,
7061
7289
  secure: true,
7062
- type: ContentType.Json,
7290
+ type: "application/json",
7063
7291
  format: "json",
7064
7292
  ...params,
7065
7293
  }),
@@ -7103,7 +7331,7 @@ export class Api<
7103
7331
  method: "PUT",
7104
7332
  body: data,
7105
7333
  secure: true,
7106
- type: ContentType.Json,
7334
+ type: "application/json",
7107
7335
  format: "json",
7108
7336
  ...params,
7109
7337
  }),
@@ -7127,7 +7355,7 @@ export class Api<
7127
7355
  method: "POST",
7128
7356
  body: data,
7129
7357
  secure: true,
7130
- type: ContentType.Json,
7358
+ type: "application/json",
7131
7359
  ...params,
7132
7360
  }),
7133
7361
 
@@ -7151,7 +7379,7 @@ export class Api<
7151
7379
  method: "POST",
7152
7380
  body: data,
7153
7381
  secure: true,
7154
- type: ContentType.Json,
7382
+ type: "application/json",
7155
7383
  ...params,
7156
7384
  }),
7157
7385
 
@@ -7191,7 +7419,7 @@ export class Api<
7191
7419
  method: "POST",
7192
7420
  body: data,
7193
7421
  secure: true,
7194
- type: ContentType.Json,
7422
+ type: "application/json",
7195
7423
  format: "json",
7196
7424
  ...params,
7197
7425
  }),
@@ -7267,7 +7495,7 @@ export class Api<
7267
7495
  method: "PUT",
7268
7496
  body: data,
7269
7497
  secure: true,
7270
- type: ContentType.Json,
7498
+ type: "application/json",
7271
7499
  format: "json",
7272
7500
  ...params,
7273
7501
  }),
@@ -7300,7 +7528,7 @@ export class Api<
7300
7528
  query: query,
7301
7529
  body: data,
7302
7530
  secure: true,
7303
- type: ContentType.Json,
7531
+ type: "application/json",
7304
7532
  format: "json",
7305
7533
  ...params,
7306
7534
  }),
@@ -7365,7 +7593,7 @@ export class Api<
7365
7593
  method: "POST",
7366
7594
  body: data,
7367
7595
  secure: true,
7368
- type: ContentType.Json,
7596
+ type: "application/json",
7369
7597
  format: "json",
7370
7598
  ...params,
7371
7599
  }),
@@ -7387,7 +7615,7 @@ export class Api<
7387
7615
  method: "POST",
7388
7616
  body: data,
7389
7617
  secure: true,
7390
- type: ContentType.Json,
7618
+ type: "application/json",
7391
7619
  format: "json",
7392
7620
  ...params,
7393
7621
  }),
@@ -7412,7 +7640,7 @@ export class Api<
7412
7640
  method: "POST",
7413
7641
  body: data,
7414
7642
  secure: true,
7415
- type: ContentType.Json,
7643
+ type: "application/json",
7416
7644
  format: "json",
7417
7645
  ...params,
7418
7646
  }),
@@ -7434,7 +7662,7 @@ export class Api<
7434
7662
  method: "POST",
7435
7663
  body: data,
7436
7664
  secure: true,
7437
- type: ContentType.Json,
7665
+ type: "application/json",
7438
7666
  format: "json",
7439
7667
  ...params,
7440
7668
  }),
@@ -7456,7 +7684,7 @@ export class Api<
7456
7684
  method: "POST",
7457
7685
  body: data,
7458
7686
  secure: true,
7459
- type: ContentType.Json,
7687
+ type: "application/json",
7460
7688
  format: "json",
7461
7689
  ...params,
7462
7690
  }),
@@ -7529,7 +7757,7 @@ export class Api<
7529
7757
  method: "POST",
7530
7758
  body: data,
7531
7759
  secure: true,
7532
- type: ContentType.Json,
7760
+ type: "application/json",
7533
7761
  format: "json",
7534
7762
  ...params,
7535
7763
  }),
@@ -7562,7 +7790,7 @@ export class Api<
7562
7790
  query: query,
7563
7791
  body: data,
7564
7792
  secure: true,
7565
- type: ContentType.Json,
7793
+ type: "application/json",
7566
7794
  format: "json",
7567
7795
  ...params,
7568
7796
  }),
@@ -7607,7 +7835,7 @@ export class Api<
7607
7835
  method: "PUT",
7608
7836
  body: data,
7609
7837
  secure: true,
7610
- type: ContentType.Json,
7838
+ type: "application/json",
7611
7839
  format: "json",
7612
7840
  ...params,
7613
7841
  }),
@@ -7670,7 +7898,7 @@ export class Api<
7670
7898
  method: "POST",
7671
7899
  body: data,
7672
7900
  secure: true,
7673
- type: ContentType.Json,
7901
+ type: "application/json",
7674
7902
  format: "json",
7675
7903
  ...params,
7676
7904
  }),
@@ -7724,7 +7952,7 @@ export class Api<
7724
7952
  query: query,
7725
7953
  body: data,
7726
7954
  secure: true,
7727
- type: ContentType.Json,
7955
+ type: "application/json",
7728
7956
  format: "json",
7729
7957
  ...params,
7730
7958
  }),
@@ -7793,7 +8021,7 @@ export class Api<
7793
8021
  method: "POST",
7794
8022
  body: data,
7795
8023
  secure: true,
7796
- type: ContentType.Json,
8024
+ type: "application/json",
7797
8025
  format: "json",
7798
8026
  ...params,
7799
8027
  }),
@@ -7838,7 +8066,7 @@ export class Api<
7838
8066
  method: "PUT",
7839
8067
  body: data,
7840
8068
  secure: true,
7841
- type: ContentType.Json,
8069
+ type: "application/json",
7842
8070
  format: "json",
7843
8071
  ...params,
7844
8072
  }),
@@ -7899,7 +8127,7 @@ export class Api<
7899
8127
  method: "POST",
7900
8128
  body: data,
7901
8129
  secure: true,
7902
- type: ContentType.Json,
8130
+ type: "application/json",
7903
8131
  format: "json",
7904
8132
  ...params,
7905
8133
  }),
@@ -7993,7 +8221,7 @@ export class Api<
7993
8221
  method: "POST",
7994
8222
  body: data,
7995
8223
  secure: true,
7996
- type: ContentType.Json,
8224
+ type: "application/json",
7997
8225
  format: "json",
7998
8226
  ...params,
7999
8227
  }),
@@ -8026,7 +8254,7 @@ export class Api<
8026
8254
  query: query,
8027
8255
  body: data,
8028
8256
  secure: true,
8029
- type: ContentType.Json,
8257
+ type: "application/json",
8030
8258
  format: "json",
8031
8259
  ...params,
8032
8260
  }),
@@ -8071,7 +8299,7 @@ export class Api<
8071
8299
  method: "PUT",
8072
8300
  body: data,
8073
8301
  secure: true,
8074
- type: ContentType.Json,
8302
+ type: "application/json",
8075
8303
  format: "json",
8076
8304
  ...params,
8077
8305
  }),
@@ -8133,7 +8361,7 @@ export class Api<
8133
8361
  method: "POST",
8134
8362
  body: data,
8135
8363
  secure: true,
8136
- type: ContentType.Json,
8364
+ type: "application/json",
8137
8365
  format: "json",
8138
8366
  ...params,
8139
8367
  }),
@@ -8187,7 +8415,7 @@ export class Api<
8187
8415
  query: query,
8188
8416
  body: data,
8189
8417
  secure: true,
8190
- type: ContentType.Json,
8418
+ type: "application/json",
8191
8419
  format: "json",
8192
8420
  ...params,
8193
8421
  }),
@@ -8242,7 +8470,7 @@ export class Api<
8242
8470
  */
8243
8471
  getCustomFieldDefinitions: (
8244
8472
  query?: {
8245
- entityType?: "Loan";
8473
+ entityType?: GetCustomFieldDefinitionsParamsEntityTypeEnum;
8246
8474
  },
8247
8475
  params: RequestParams = {},
8248
8476
  ) =>
@@ -8276,7 +8504,7 @@ export class Api<
8276
8504
  method: "POST",
8277
8505
  body: data,
8278
8506
  secure: true,
8279
- type: ContentType.Json,
8507
+ type: "application/json",
8280
8508
  format: "json",
8281
8509
  ...params,
8282
8510
  }),
@@ -8325,7 +8553,7 @@ export class Api<
8325
8553
  method: "PUT",
8326
8554
  body: data,
8327
8555
  secure: true,
8328
- type: ContentType.Json,
8556
+ type: "application/json",
8329
8557
  format: "json",
8330
8558
  ...params,
8331
8559
  }),
@@ -8459,7 +8687,7 @@ export class Api<
8459
8687
  method: "PUT",
8460
8688
  body: data,
8461
8689
  secure: true,
8462
- type: ContentType.Json,
8690
+ type: "application/json",
8463
8691
  format: "json",
8464
8692
  ...params,
8465
8693
  }),
@@ -8578,7 +8806,7 @@ export class Api<
8578
8806
  method: "POST",
8579
8807
  body: data,
8580
8808
  secure: true,
8581
- type: ContentType.Json,
8809
+ type: "application/json",
8582
8810
  format: "json",
8583
8811
  ...params,
8584
8812
  }),
@@ -8655,7 +8883,7 @@ export class Api<
8655
8883
  method: "PUT",
8656
8884
  body: data,
8657
8885
  secure: true,
8658
- type: ContentType.Json,
8886
+ type: "application/json",
8659
8887
  format: "json",
8660
8888
  ...params,
8661
8889
  }),
@@ -8742,7 +8970,7 @@ export class Api<
8742
8970
  method: "POST",
8743
8971
  body: data,
8744
8972
  secure: true,
8745
- type: ContentType.Json,
8973
+ type: "application/json",
8746
8974
  format: "json",
8747
8975
  ...params,
8748
8976
  }),
@@ -8791,7 +9019,7 @@ export class Api<
8791
9019
  method: "PUT",
8792
9020
  body: data,
8793
9021
  secure: true,
8794
- type: ContentType.Json,
9022
+ type: "application/json",
8795
9023
  format: "json",
8796
9024
  ...params,
8797
9025
  }),
@@ -8864,7 +9092,7 @@ export class Api<
8864
9092
  method: "POST",
8865
9093
  body: data,
8866
9094
  secure: true,
8867
- type: ContentType.Json,
9095
+ type: "application/json",
8868
9096
  format: "json",
8869
9097
  ...params,
8870
9098
  }),
@@ -9036,7 +9264,7 @@ export class Api<
9036
9264
  method: "POST",
9037
9265
  body: data,
9038
9266
  secure: true,
9039
- type: ContentType.Json,
9267
+ type: "application/json",
9040
9268
  format: "json",
9041
9269
  ...params,
9042
9270
  }),
@@ -9099,7 +9327,7 @@ export class Api<
9099
9327
  method: "POST",
9100
9328
  body: data,
9101
9329
  secure: true,
9102
- type: ContentType.FormData,
9330
+ type: "multipart/form-data",
9103
9331
  format: "json",
9104
9332
  ...params,
9105
9333
  }),
@@ -9140,7 +9368,7 @@ export class Api<
9140
9368
  method: "PUT",
9141
9369
  body: data,
9142
9370
  secure: true,
9143
- type: ContentType.Json,
9371
+ type: "application/json",
9144
9372
  format: "json",
9145
9373
  ...params,
9146
9374
  }),
@@ -9191,7 +9419,7 @@ export class Api<
9191
9419
  query: query,
9192
9420
  body: data,
9193
9421
  secure: true,
9194
- type: ContentType.Json,
9422
+ type: "application/json",
9195
9423
  format: "json",
9196
9424
  ...params,
9197
9425
  }),
@@ -9238,7 +9466,7 @@ export class Api<
9238
9466
  method: "POST",
9239
9467
  body: data,
9240
9468
  secure: true,
9241
- type: ContentType.Json,
9469
+ type: "application/json",
9242
9470
  format: "json",
9243
9471
  ...params,
9244
9472
  }),
@@ -9279,7 +9507,7 @@ export class Api<
9279
9507
  method: "PUT",
9280
9508
  body: data,
9281
9509
  secure: true,
9282
- type: ContentType.Json,
9510
+ type: "application/json",
9283
9511
  format: "json",
9284
9512
  ...params,
9285
9513
  }),
@@ -9345,7 +9573,7 @@ export class Api<
9345
9573
  method: "POST",
9346
9574
  body: data,
9347
9575
  secure: true,
9348
- type: ContentType.FormData,
9576
+ type: "multipart/form-data",
9349
9577
  format: "json",
9350
9578
  ...params,
9351
9579
  }),
@@ -9453,7 +9681,7 @@ export class Api<
9453
9681
  query: query,
9454
9682
  body: data,
9455
9683
  secure: true,
9456
- type: ContentType.Json,
9684
+ type: "application/json",
9457
9685
  format: "json",
9458
9686
  ...params,
9459
9687
  }),
@@ -9497,7 +9725,7 @@ export class Api<
9497
9725
  method: "PUT",
9498
9726
  body: data,
9499
9727
  secure: true,
9500
- type: ContentType.Json,
9728
+ type: "application/json",
9501
9729
  format: "json",
9502
9730
  ...params,
9503
9731
  }),
@@ -9548,7 +9776,7 @@ export class Api<
9548
9776
  query: query,
9549
9777
  body: data,
9550
9778
  secure: true,
9551
- type: ContentType.Json,
9779
+ type: "application/json",
9552
9780
  format: "json",
9553
9781
  ...params,
9554
9782
  }),
@@ -9592,7 +9820,7 @@ export class Api<
9592
9820
  method: "POST",
9593
9821
  body: data,
9594
9822
  secure: true,
9595
- type: ContentType.Json,
9823
+ type: "application/json",
9596
9824
  format: "json",
9597
9825
  ...params,
9598
9826
  }),
@@ -9637,7 +9865,7 @@ export class Api<
9637
9865
  method: "PUT",
9638
9866
  body: data,
9639
9867
  secure: true,
9640
- type: ContentType.Json,
9868
+ type: "application/json",
9641
9869
  format: "json",
9642
9870
  ...params,
9643
9871
  }),
@@ -9725,7 +9953,7 @@ export class Api<
9725
9953
  method: "PATCH",
9726
9954
  body: data,
9727
9955
  secure: true,
9728
- type: ContentType.JsonPatch,
9956
+ type: "application/json",
9729
9957
  format: "json",
9730
9958
  ...params,
9731
9959
  }),
@@ -9746,7 +9974,7 @@ export class Api<
9746
9974
  method: "POST",
9747
9975
  body: data,
9748
9976
  secure: true,
9749
- type: ContentType.Json,
9977
+ type: "application/json",
9750
9978
  format: "json",
9751
9979
  ...params,
9752
9980
  }),
@@ -9778,7 +10006,7 @@ export class Api<
9778
10006
  query: query,
9779
10007
  body: data,
9780
10008
  secure: true,
9781
- type: ContentType.Json,
10009
+ type: "application/json",
9782
10010
  format: "json",
9783
10011
  ...params,
9784
10012
  }),
@@ -9809,7 +10037,7 @@ export class Api<
9809
10037
  query: query,
9810
10038
  body: data,
9811
10039
  secure: true,
9812
- type: ContentType.Json,
10040
+ type: "application/json",
9813
10041
  format: "json",
9814
10042
  ...params,
9815
10043
  }),
@@ -9835,7 +10063,7 @@ export class Api<
9835
10063
  method: "PATCH",
9836
10064
  body: data,
9837
10065
  secure: true,
9838
- type: ContentType.JsonPatch,
10066
+ type: "application/json",
9839
10067
  format: "json",
9840
10068
  ...params,
9841
10069
  }),
@@ -9862,7 +10090,7 @@ export class Api<
9862
10090
  method: "PATCH",
9863
10091
  body: data,
9864
10092
  secure: true,
9865
- type: ContentType.JsonPatch,
10093
+ type: "application/json",
9866
10094
  format: "json",
9867
10095
  ...params,
9868
10096
  }),
@@ -10019,7 +10247,7 @@ export class Api<
10019
10247
  method: "POST",
10020
10248
  body: data,
10021
10249
  secure: true,
10022
- type: ContentType.Json,
10250
+ type: "application/json",
10023
10251
  format: "json",
10024
10252
  ...params,
10025
10253
  }),
@@ -10079,7 +10307,7 @@ export class Api<
10079
10307
  method: "POST",
10080
10308
  body: data,
10081
10309
  secure: true,
10082
- type: ContentType.FormData,
10310
+ type: "multipart/form-data",
10083
10311
  format: "json",
10084
10312
  ...params,
10085
10313
  }),
@@ -10104,7 +10332,7 @@ export class Api<
10104
10332
  method: "PATCH",
10105
10333
  body: data,
10106
10334
  secure: true,
10107
- type: ContentType.JsonPatch,
10335
+ type: "application/json",
10108
10336
  format: "json",
10109
10337
  ...params,
10110
10338
  }),
@@ -10159,7 +10387,7 @@ export class Api<
10159
10387
  method: "POST",
10160
10388
  body: data,
10161
10389
  secure: true,
10162
- type: ContentType.FormData,
10390
+ type: "multipart/form-data",
10163
10391
  format: "json",
10164
10392
  ...params,
10165
10393
  }),
@@ -10184,7 +10412,7 @@ export class Api<
10184
10412
  method: "PATCH",
10185
10413
  body: data,
10186
10414
  secure: true,
10187
- type: ContentType.JsonPatch,
10415
+ type: "application/json",
10188
10416
  format: "json",
10189
10417
  ...params,
10190
10418
  }),
@@ -10258,7 +10486,7 @@ export class Api<
10258
10486
  method: "POST",
10259
10487
  body: data,
10260
10488
  secure: true,
10261
- type: ContentType.Json,
10489
+ type: "application/json",
10262
10490
  format: "json",
10263
10491
  ...params,
10264
10492
  }),
@@ -10321,7 +10549,7 @@ export class Api<
10321
10549
  method: "PUT",
10322
10550
  body: data,
10323
10551
  secure: true,
10324
- type: ContentType.Json,
10552
+ type: "application/json",
10325
10553
  format: "json",
10326
10554
  ...params,
10327
10555
  }),
@@ -10372,7 +10600,7 @@ export class Api<
10372
10600
  query: query,
10373
10601
  body: data,
10374
10602
  secure: true,
10375
- type: ContentType.Json,
10603
+ type: "application/json",
10376
10604
  format: "json",
10377
10605
  ...params,
10378
10606
  }),
@@ -10400,7 +10628,7 @@ export class Api<
10400
10628
  method: "PUT",
10401
10629
  body: data,
10402
10630
  secure: true,
10403
- type: ContentType.FormData,
10631
+ type: "multipart/form-data",
10404
10632
  format: "json",
10405
10633
  ...params,
10406
10634
  }),
@@ -10483,7 +10711,7 @@ export class Api<
10483
10711
  method: "POST",
10484
10712
  body: data,
10485
10713
  secure: true,
10486
- type: ContentType.Json,
10714
+ type: "application/json",
10487
10715
  format: "json",
10488
10716
  ...params,
10489
10717
  }),
@@ -10530,7 +10758,7 @@ export class Api<
10530
10758
  method: "POST",
10531
10759
  body: data,
10532
10760
  secure: true,
10533
- type: ContentType.Json,
10761
+ type: "application/json",
10534
10762
  format: "json",
10535
10763
  ...params,
10536
10764
  }),
@@ -10578,7 +10806,7 @@ export class Api<
10578
10806
  method: "POST",
10579
10807
  body: data,
10580
10808
  secure: true,
10581
- type: ContentType.Json,
10809
+ type: "application/json",
10582
10810
  ...params,
10583
10811
  }),
10584
10812
 
@@ -10643,7 +10871,7 @@ export class Api<
10643
10871
  method: "PUT",
10644
10872
  body: data,
10645
10873
  secure: true,
10646
- type: ContentType.Json,
10874
+ type: "application/json",
10647
10875
  ...params,
10648
10876
  }),
10649
10877
 
@@ -10671,7 +10899,7 @@ export class Api<
10671
10899
  method: "PUT",
10672
10900
  body: data,
10673
10901
  secure: true,
10674
- type: ContentType.Json,
10902
+ type: "application/json",
10675
10903
  ...params,
10676
10904
  }),
10677
10905
 
@@ -10737,7 +10965,7 @@ export class Api<
10737
10965
  method: "POST",
10738
10966
  body: data,
10739
10967
  secure: true,
10740
- type: ContentType.Json,
10968
+ type: "application/json",
10741
10969
  format: "json",
10742
10970
  ...params,
10743
10971
  }),
@@ -10782,7 +11010,7 @@ export class Api<
10782
11010
  method: "POST",
10783
11011
  body: data,
10784
11012
  secure: true,
10785
- type: ContentType.Json,
11013
+ type: "application/json",
10786
11014
  format: "json",
10787
11015
  ...params,
10788
11016
  }),
@@ -10831,7 +11059,7 @@ export class Api<
10831
11059
  method: "PUT",
10832
11060
  body: data,
10833
11061
  secure: true,
10834
- type: ContentType.Json,
11062
+ type: "application/json",
10835
11063
  format: "json",
10836
11064
  ...params,
10837
11065
  }),
@@ -10966,7 +11194,7 @@ export class Api<
10966
11194
  method: "POST",
10967
11195
  body: data,
10968
11196
  secure: true,
10969
- type: ContentType.Json,
11197
+ type: "application/json",
10970
11198
  format: "json",
10971
11199
  ...params,
10972
11200
  }),
@@ -11000,7 +11228,7 @@ export class Api<
11000
11228
  query: query,
11001
11229
  body: data,
11002
11230
  secure: true,
11003
- type: ContentType.Json,
11231
+ type: "application/json",
11004
11232
  format: "json",
11005
11233
  ...params,
11006
11234
  }),
@@ -11030,7 +11258,7 @@ export class Api<
11030
11258
  query: query,
11031
11259
  body: data,
11032
11260
  secure: true,
11033
- type: ContentType.Json,
11261
+ type: "application/json",
11034
11262
  format: "json",
11035
11263
  ...params,
11036
11264
  }),
@@ -11043,7 +11271,7 @@ export class Api<
11043
11271
  * @summary Download By ID
11044
11272
  * @request GET:/api/loans/{loanId}/documents/{documentId}/download
11045
11273
  * @secure
11046
- * @response `200` `string` Success
11274
+ * @response `200` `Blob` Success
11047
11275
  * @response `404` `ProblemDetails` Not Found
11048
11276
  */
11049
11277
  downloadLoanDocument: (
@@ -11051,7 +11279,7 @@ export class Api<
11051
11279
  documentId: string,
11052
11280
  params: RequestParams = {},
11053
11281
  ) =>
11054
- this.request<string, ProblemDetails>({
11282
+ this.request<Blob, ProblemDetails>({
11055
11283
  path: `/api/loans/${loanId}/documents/${documentId}/download`,
11056
11284
  method: "GET",
11057
11285
  secure: true,
@@ -11088,7 +11316,7 @@ export class Api<
11088
11316
  method: "POST",
11089
11317
  body: data,
11090
11318
  secure: true,
11091
- type: ContentType.FormData,
11319
+ type: "multipart/form-data",
11092
11320
  format: "json",
11093
11321
  ...params,
11094
11322
  }),
@@ -11138,7 +11366,7 @@ export class Api<
11138
11366
  method: "POST",
11139
11367
  body: data,
11140
11368
  secure: true,
11141
- type: ContentType.Json,
11369
+ type: "application/json",
11142
11370
  format: "json",
11143
11371
  ...params,
11144
11372
  }),
@@ -11165,7 +11393,7 @@ export class Api<
11165
11393
  method: "POST",
11166
11394
  body: data,
11167
11395
  secure: true,
11168
- type: ContentType.Json,
11396
+ type: "application/json",
11169
11397
  ...params,
11170
11398
  }),
11171
11399
 
@@ -11229,7 +11457,7 @@ export class Api<
11229
11457
  method: "POST",
11230
11458
  body: data,
11231
11459
  secure: true,
11232
- type: ContentType.Json,
11460
+ type: "application/json",
11233
11461
  format: "json",
11234
11462
  ...params,
11235
11463
  }),
@@ -11292,7 +11520,7 @@ export class Api<
11292
11520
  method: "PUT",
11293
11521
  body: data,
11294
11522
  secure: true,
11295
- type: ContentType.Json,
11523
+ type: "application/json",
11296
11524
  format: "json",
11297
11525
  ...params,
11298
11526
  }),
@@ -11343,7 +11571,7 @@ export class Api<
11343
11571
  query: query,
11344
11572
  body: data,
11345
11573
  secure: true,
11346
- type: ContentType.Json,
11574
+ type: "application/json",
11347
11575
  format: "json",
11348
11576
  ...params,
11349
11577
  }),
@@ -11368,7 +11596,7 @@ export class Api<
11368
11596
  method: "PUT",
11369
11597
  body: data,
11370
11598
  secure: true,
11371
- type: ContentType.Json,
11599
+ type: "application/json",
11372
11600
  format: "json",
11373
11601
  ...params,
11374
11602
  }),
@@ -11443,7 +11671,7 @@ export class Api<
11443
11671
  method: "POST",
11444
11672
  body: data,
11445
11673
  secure: true,
11446
- type: ContentType.Json,
11674
+ type: "application/json",
11447
11675
  format: "json",
11448
11676
  ...params,
11449
11677
  }),
@@ -11539,7 +11767,7 @@ export class Api<
11539
11767
  method: "POST",
11540
11768
  body: data,
11541
11769
  secure: true,
11542
- type: ContentType.Json,
11770
+ type: "application/json",
11543
11771
  format: "json",
11544
11772
  ...params,
11545
11773
  }),
@@ -11573,7 +11801,7 @@ export class Api<
11573
11801
  query: query,
11574
11802
  body: data,
11575
11803
  secure: true,
11576
- type: ContentType.Json,
11804
+ type: "application/json",
11577
11805
  format: "json",
11578
11806
  ...params,
11579
11807
  }),
@@ -11661,7 +11889,7 @@ export class Api<
11661
11889
  query: query,
11662
11890
  body: data,
11663
11891
  secure: true,
11664
- type: ContentType.Json,
11892
+ type: "application/json",
11665
11893
  format: "json",
11666
11894
  ...params,
11667
11895
  }),
@@ -11706,7 +11934,7 @@ export class Api<
11706
11934
  method: "POST",
11707
11935
  body: data,
11708
11936
  secure: true,
11709
- type: ContentType.Json,
11937
+ type: "application/json",
11710
11938
  format: "json",
11711
11939
  ...params,
11712
11940
  }),
@@ -11760,7 +11988,7 @@ export class Api<
11760
11988
  query: query,
11761
11989
  body: data,
11762
11990
  secure: true,
11763
- type: ContentType.Json,
11991
+ type: "application/json",
11764
11992
  format: "json",
11765
11993
  ...params,
11766
11994
  }),
@@ -11793,7 +12021,7 @@ export class Api<
11793
12021
  query: query,
11794
12022
  body: data,
11795
12023
  secure: true,
11796
- type: ContentType.Json,
12024
+ type: "application/json",
11797
12025
  format: "json",
11798
12026
  ...params,
11799
12027
  }),
@@ -11839,7 +12067,7 @@ export class Api<
11839
12067
  method: "PUT",
11840
12068
  body: data,
11841
12069
  secure: true,
11842
- type: ContentType.Json,
12070
+ type: "application/json",
11843
12071
  format: "json",
11844
12072
  ...params,
11845
12073
  }),
@@ -11940,7 +12168,7 @@ export class Api<
11940
12168
  method: "POST",
11941
12169
  body: data,
11942
12170
  secure: true,
11943
- type: ContentType.Json,
12171
+ type: "application/json",
11944
12172
  format: "json",
11945
12173
  ...params,
11946
12174
  }),
@@ -11973,7 +12201,7 @@ export class Api<
11973
12201
  query: query,
11974
12202
  body: data,
11975
12203
  secure: true,
11976
- type: ContentType.Json,
12204
+ type: "application/json",
11977
12205
  format: "json",
11978
12206
  ...params,
11979
12207
  }),
@@ -12108,7 +12336,7 @@ export class Api<
12108
12336
  method: "POST",
12109
12337
  body: data,
12110
12338
  secure: true,
12111
- type: ContentType.JsonPatch,
12339
+ type: "application/json",
12112
12340
  format: "json",
12113
12341
  ...params,
12114
12342
  }),
@@ -12144,7 +12372,7 @@ export class Api<
12144
12372
  query: query,
12145
12373
  body: data,
12146
12374
  secure: true,
12147
- type: ContentType.Json,
12375
+ type: "application/json",
12148
12376
  format: "json",
12149
12377
  ...params,
12150
12378
  }),
@@ -12196,7 +12424,7 @@ export class Api<
12196
12424
  method: "POST",
12197
12425
  body: data,
12198
12426
  secure: true,
12199
- type: ContentType.Json,
12427
+ type: "application/json",
12200
12428
  format: "json",
12201
12429
  ...params,
12202
12430
  }),
@@ -12224,7 +12452,7 @@ export class Api<
12224
12452
  method: "PUT",
12225
12453
  body: data,
12226
12454
  secure: true,
12227
- type: ContentType.Json,
12455
+ type: "application/json",
12228
12456
  format: "json",
12229
12457
  ...params,
12230
12458
  }),
@@ -12283,7 +12511,7 @@ export class Api<
12283
12511
  method: "POST",
12284
12512
  body: data,
12285
12513
  secure: true,
12286
- type: ContentType.FormData,
12514
+ type: "multipart/form-data",
12287
12515
  format: "json",
12288
12516
  ...params,
12289
12517
  }),
@@ -12356,7 +12584,7 @@ export class Api<
12356
12584
  method: "POST",
12357
12585
  body: data,
12358
12586
  secure: true,
12359
- type: ContentType.Json,
12587
+ type: "application/json",
12360
12588
  ...params,
12361
12589
  }),
12362
12590
 
@@ -12388,7 +12616,7 @@ export class Api<
12388
12616
  query: query,
12389
12617
  body: data,
12390
12618
  secure: true,
12391
- type: ContentType.Json,
12619
+ type: "application/json",
12392
12620
  format: "json",
12393
12621
  ...params,
12394
12622
  }),
@@ -12413,7 +12641,7 @@ export class Api<
12413
12641
  method: "POST",
12414
12642
  body: data,
12415
12643
  secure: true,
12416
- type: ContentType.Json,
12644
+ type: "application/json",
12417
12645
  format: "json",
12418
12646
  ...params,
12419
12647
  }),
@@ -12500,7 +12728,7 @@ export class Api<
12500
12728
  method: "POST",
12501
12729
  body: data,
12502
12730
  secure: true,
12503
- type: ContentType.Json,
12731
+ type: "application/json",
12504
12732
  format: "json",
12505
12733
  ...params,
12506
12734
  }),
@@ -12526,7 +12754,7 @@ export class Api<
12526
12754
  method: "POST",
12527
12755
  body: data,
12528
12756
  secure: true,
12529
- type: ContentType.Json,
12757
+ type: "application/json",
12530
12758
  format: "json",
12531
12759
  ...params,
12532
12760
  }),
@@ -12553,7 +12781,7 @@ export class Api<
12553
12781
  method: "PUT",
12554
12782
  body: data,
12555
12783
  secure: true,
12556
- type: ContentType.Json,
12784
+ type: "application/json",
12557
12785
  format: "json",
12558
12786
  ...params,
12559
12787
  }),
@@ -12670,7 +12898,7 @@ export class Api<
12670
12898
  method: "POST",
12671
12899
  body: data,
12672
12900
  secure: true,
12673
- type: ContentType.Json,
12901
+ type: "application/json",
12674
12902
  format: "json",
12675
12903
  ...params,
12676
12904
  }),
@@ -12748,7 +12976,7 @@ export class Api<
12748
12976
  query: query,
12749
12977
  body: data,
12750
12978
  secure: true,
12751
- type: ContentType.Json,
12979
+ type: "application/json",
12752
12980
  format: "json",
12753
12981
  ...params,
12754
12982
  }),
@@ -12792,7 +13020,7 @@ export class Api<
12792
13020
  method: "POST",
12793
13021
  body: data,
12794
13022
  secure: true,
12795
- type: ContentType.Json,
13023
+ type: "application/json",
12796
13024
  format: "json",
12797
13025
  ...params,
12798
13026
  }),
@@ -12839,7 +13067,7 @@ export class Api<
12839
13067
  method: "PUT",
12840
13068
  body: data,
12841
13069
  secure: true,
12842
- type: ContentType.Json,
13070
+ type: "application/json",
12843
13071
  format: "json",
12844
13072
  ...params,
12845
13073
  }),
@@ -12885,7 +13113,7 @@ export class Api<
12885
13113
  method: "POST",
12886
13114
  body: data,
12887
13115
  secure: true,
12888
- type: ContentType.Json,
13116
+ type: "application/json",
12889
13117
  format: "json",
12890
13118
  ...params,
12891
13119
  }),
@@ -12910,7 +13138,7 @@ export class Api<
12910
13138
  method: "POST",
12911
13139
  body: data,
12912
13140
  secure: true,
12913
- type: ContentType.Json,
13141
+ type: "application/json",
12914
13142
  format: "json",
12915
13143
  ...params,
12916
13144
  }),
@@ -12935,7 +13163,7 @@ export class Api<
12935
13163
  method: "POST",
12936
13164
  body: data,
12937
13165
  secure: true,
12938
- type: ContentType.Json,
13166
+ type: "application/json",
12939
13167
  format: "json",
12940
13168
  ...params,
12941
13169
  }),
@@ -12960,7 +13188,7 @@ export class Api<
12960
13188
  method: "POST",
12961
13189
  body: data,
12962
13190
  secure: true,
12963
- type: ContentType.Json,
13191
+ type: "application/json",
12964
13192
  format: "json",
12965
13193
  ...params,
12966
13194
  }),
@@ -12985,7 +13213,7 @@ export class Api<
12985
13213
  method: "POST",
12986
13214
  body: data,
12987
13215
  secure: true,
12988
- type: ContentType.Json,
13216
+ type: "application/json",
12989
13217
  format: "json",
12990
13218
  ...params,
12991
13219
  }),
@@ -13010,7 +13238,7 @@ export class Api<
13010
13238
  method: "POST",
13011
13239
  body: data,
13012
13240
  secure: true,
13013
- type: ContentType.Json,
13241
+ type: "application/json",
13014
13242
  ...params,
13015
13243
  }),
13016
13244
 
@@ -13034,7 +13262,7 @@ export class Api<
13034
13262
  method: "POST",
13035
13263
  body: data,
13036
13264
  secure: true,
13037
- type: ContentType.Json,
13265
+ type: "application/json",
13038
13266
  ...params,
13039
13267
  }),
13040
13268
 
@@ -13083,7 +13311,7 @@ export class Api<
13083
13311
  method: "POST",
13084
13312
  body: data,
13085
13313
  secure: true,
13086
- type: ContentType.Json,
13314
+ type: "application/json",
13087
13315
  format: "json",
13088
13316
  ...params,
13089
13317
  }),
@@ -13116,7 +13344,7 @@ export class Api<
13116
13344
  query: query,
13117
13345
  body: data,
13118
13346
  secure: true,
13119
- type: ContentType.Json,
13347
+ type: "application/json",
13120
13348
  format: "json",
13121
13349
  ...params,
13122
13350
  }),
@@ -13161,7 +13389,7 @@ export class Api<
13161
13389
  method: "PUT",
13162
13390
  body: data,
13163
13391
  secure: true,
13164
- type: ContentType.Json,
13392
+ type: "application/json",
13165
13393
  format: "json",
13166
13394
  ...params,
13167
13395
  }),
@@ -13245,7 +13473,7 @@ export class Api<
13245
13473
  method: "POST",
13246
13474
  body: data,
13247
13475
  secure: true,
13248
- type: ContentType.Json,
13476
+ type: "application/json",
13249
13477
  format: "json",
13250
13478
  ...params,
13251
13479
  }),
@@ -13294,7 +13522,7 @@ export class Api<
13294
13522
  method: "PUT",
13295
13523
  body: data,
13296
13524
  secure: true,
13297
- type: ContentType.Json,
13525
+ type: "application/json",
13298
13526
  format: "json",
13299
13527
  ...params,
13300
13528
  }),
@@ -13336,16 +13564,7 @@ export class Api<
13336
13564
  query?: {
13337
13565
  showAll?: boolean;
13338
13566
  /** @default "Realtor" */
13339
- role?:
13340
- | "Borrower"
13341
- | "LoanOfficer"
13342
- | "Admin"
13343
- | "SuperAdmin"
13344
- | "Realtor"
13345
- | "SettlementAgent"
13346
- | "LoanProcessor"
13347
- | "LoanOfficerAssistant"
13348
- | "SystemAdmin";
13567
+ role?: GetPartnersParamsRoleEnum;
13349
13568
  /** @format int32 */
13350
13569
  pageSize?: number;
13351
13570
  /** @format int32 */
@@ -13392,7 +13611,7 @@ export class Api<
13392
13611
  query: query,
13393
13612
  body: data,
13394
13613
  secure: true,
13395
- type: ContentType.Json,
13614
+ type: "application/json",
13396
13615
  format: "json",
13397
13616
  ...params,
13398
13617
  }),
@@ -13437,7 +13656,7 @@ export class Api<
13437
13656
  method: "POST",
13438
13657
  body: data,
13439
13658
  secure: true,
13440
- type: ContentType.Json,
13659
+ type: "application/json",
13441
13660
  format: "json",
13442
13661
  ...params,
13443
13662
  }),
@@ -13491,7 +13710,7 @@ export class Api<
13491
13710
  query: query,
13492
13711
  body: data,
13493
13712
  secure: true,
13494
- type: ContentType.Json,
13713
+ type: "application/json",
13495
13714
  format: "json",
13496
13715
  ...params,
13497
13716
  }),
@@ -13536,7 +13755,7 @@ export class Api<
13536
13755
  method: "POST",
13537
13756
  body: data,
13538
13757
  secure: true,
13539
- type: ContentType.Json,
13758
+ type: "application/json",
13540
13759
  format: "json",
13541
13760
  ...params,
13542
13761
  }),
@@ -13588,7 +13807,7 @@ export class Api<
13588
13807
  method: "POST",
13589
13808
  body: data,
13590
13809
  secure: true,
13591
- type: ContentType.Json,
13810
+ type: "application/json",
13592
13811
  format: "json",
13593
13812
  ...params,
13594
13813
  }),
@@ -13645,7 +13864,7 @@ export class Api<
13645
13864
  query: query,
13646
13865
  body: data,
13647
13866
  secure: true,
13648
- type: ContentType.Json,
13867
+ type: "application/json",
13649
13868
  format: "json",
13650
13869
  ...params,
13651
13870
  }),
@@ -13681,7 +13900,7 @@ export class Api<
13681
13900
  * @response `404` `ProblemDetails` Not Found
13682
13901
  */
13683
13902
  getSamlMetadata: (
13684
- sSoIntegration: "ConsumerConnect" | "TheBigPOS" | "POSF",
13903
+ sSoIntegration: GetSamlMetadataParamsEnum,
13685
13904
  ssoIntegration: string,
13686
13905
  params: RequestParams = {},
13687
13906
  ) =>
@@ -13703,7 +13922,7 @@ export class Api<
13703
13922
  * @response `200` `File` Success
13704
13923
  */
13705
13924
  createOrReplaceSamlMetadata: (
13706
- sSoIntegration: "ConsumerConnect" | "TheBigPOS" | "POSF",
13925
+ sSoIntegration: CreateOrReplaceSamlMetadataParamsEnum,
13707
13926
  ssoIntegration: string,
13708
13927
  params: RequestParams = {},
13709
13928
  ) =>
@@ -13828,7 +14047,7 @@ export class Api<
13828
14047
  method: "POST",
13829
14048
  body: data,
13830
14049
  secure: true,
13831
- type: ContentType.Json,
14050
+ type: "application/json",
13832
14051
  format: "json",
13833
14052
  ...params,
13834
14053
  }),
@@ -13876,7 +14095,7 @@ export class Api<
13876
14095
  method: "POST",
13877
14096
  body: data,
13878
14097
  secure: true,
13879
- type: ContentType.Json,
14098
+ type: "application/json",
13880
14099
  format: "json",
13881
14100
  ...params,
13882
14101
  }),
@@ -13928,7 +14147,7 @@ export class Api<
13928
14147
  method: "POST",
13929
14148
  body: data,
13930
14149
  secure: true,
13931
- type: ContentType.Json,
14150
+ type: "application/json",
13932
14151
  format: "json",
13933
14152
  ...params,
13934
14153
  }),
@@ -13970,7 +14189,7 @@ export class Api<
13970
14189
  method: "PUT",
13971
14190
  body: data,
13972
14191
  secure: true,
13973
- type: ContentType.Json,
14192
+ type: "application/json",
13974
14193
  ...params,
13975
14194
  }),
13976
14195
 
@@ -14021,7 +14240,7 @@ export class Api<
14021
14240
  query: query,
14022
14241
  body: data,
14023
14242
  secure: true,
14024
- type: ContentType.Json,
14243
+ type: "application/json",
14025
14244
  format: "json",
14026
14245
  ...params,
14027
14246
  }),
@@ -14044,7 +14263,7 @@ export class Api<
14044
14263
  method: "POST",
14045
14264
  body: data,
14046
14265
  secure: true,
14047
- type: ContentType.Json,
14266
+ type: "application/json",
14048
14267
  ...params,
14049
14268
  }),
14050
14269
 
@@ -14076,7 +14295,7 @@ export class Api<
14076
14295
  query: query,
14077
14296
  body: data,
14078
14297
  secure: true,
14079
- type: ContentType.Json,
14298
+ type: "application/json",
14080
14299
  format: "json",
14081
14300
  ...params,
14082
14301
  }),
@@ -14118,7 +14337,7 @@ export class Api<
14118
14337
  method: "POST",
14119
14338
  body: data,
14120
14339
  secure: true,
14121
- type: ContentType.Json,
14340
+ type: "application/json",
14122
14341
  format: "json",
14123
14342
  ...params,
14124
14343
  }),
@@ -14141,7 +14360,7 @@ export class Api<
14141
14360
  method: "PUT",
14142
14361
  body: data,
14143
14362
  secure: true,
14144
- type: ContentType.Json,
14363
+ type: "application/json",
14145
14364
  format: "json",
14146
14365
  ...params,
14147
14366
  }),
@@ -14182,7 +14401,7 @@ export class Api<
14182
14401
  method: "POST",
14183
14402
  body: data,
14184
14403
  secure: true,
14185
- type: ContentType.Json,
14404
+ type: "application/json",
14186
14405
  format: "json",
14187
14406
  ...params,
14188
14407
  }),
@@ -14232,7 +14451,7 @@ export class Api<
14232
14451
  query: query,
14233
14452
  body: data,
14234
14453
  secure: true,
14235
- type: ContentType.Json,
14454
+ type: "application/json",
14236
14455
  format: "json",
14237
14456
  ...params,
14238
14457
  }),
@@ -14406,7 +14625,7 @@ export class Api<
14406
14625
  method: "POST",
14407
14626
  body: data,
14408
14627
  secure: true,
14409
- type: ContentType.Json,
14628
+ type: "application/json",
14410
14629
  format: "json",
14411
14630
  ...params,
14412
14631
  }),
@@ -14505,7 +14724,7 @@ export class Api<
14505
14724
  method: "POST",
14506
14725
  body: data,
14507
14726
  secure: true,
14508
- type: ContentType.Json,
14727
+ type: "application/json",
14509
14728
  format: "json",
14510
14729
  ...params,
14511
14730
  }),
@@ -14571,7 +14790,7 @@ export class Api<
14571
14790
  method: "POST",
14572
14791
  body: data,
14573
14792
  secure: true,
14574
- type: ContentType.Json,
14793
+ type: "application/json",
14575
14794
  format: "json",
14576
14795
  ...params,
14577
14796
  }),
@@ -14642,7 +14861,7 @@ export class Api<
14642
14861
  query: query,
14643
14862
  body: data,
14644
14863
  secure: true,
14645
- type: ContentType.Json,
14864
+ type: "application/json",
14646
14865
  format: "json",
14647
14866
  ...params,
14648
14867
  }),
@@ -14739,7 +14958,7 @@ export class Api<
14739
14958
  method: "PUT",
14740
14959
  body: data,
14741
14960
  secure: true,
14742
- type: ContentType.Json,
14961
+ type: "application/json",
14743
14962
  format: "json",
14744
14963
  ...params,
14745
14964
  }),
@@ -14781,7 +15000,7 @@ export class Api<
14781
15000
  method: "POST",
14782
15001
  body: data,
14783
15002
  secure: true,
14784
- type: ContentType.Json,
15003
+ type: "application/json",
14785
15004
  format: "json",
14786
15005
  ...params,
14787
15006
  }),
@@ -14807,7 +15026,7 @@ export class Api<
14807
15026
  method: "POST",
14808
15027
  body: data,
14809
15028
  secure: true,
14810
- type: ContentType.Json,
15029
+ type: "application/json",
14811
15030
  ...params,
14812
15031
  }),
14813
15032
 
@@ -14832,7 +15051,7 @@ export class Api<
14832
15051
  method: "POST",
14833
15052
  body: data,
14834
15053
  secure: true,
14835
- type: ContentType.Json,
15054
+ type: "application/json",
14836
15055
  ...params,
14837
15056
  }),
14838
15057
 
@@ -14918,7 +15137,7 @@ export class Api<
14918
15137
  method: "POST",
14919
15138
  body: data,
14920
15139
  secure: true,
14921
- type: ContentType.Json,
15140
+ type: "application/json",
14922
15141
  ...params,
14923
15142
  }),
14924
15143
 
@@ -14958,7 +15177,7 @@ export class Api<
14958
15177
  method: "POST",
14959
15178
  body: data,
14960
15179
  secure: true,
14961
- type: ContentType.Json,
15180
+ type: "application/json",
14962
15181
  ...params,
14963
15182
  }),
14964
15183
 
@@ -15041,7 +15260,7 @@ export class Api<
15041
15260
  method: "POST",
15042
15261
  body: data,
15043
15262
  secure: true,
15044
- type: ContentType.Json,
15263
+ type: "application/json",
15045
15264
  ...params,
15046
15265
  }),
15047
15266
 
@@ -15133,7 +15352,7 @@ export class Api<
15133
15352
  method: "POST",
15134
15353
  body: data,
15135
15354
  secure: true,
15136
- type: ContentType.Json,
15355
+ type: "application/json",
15137
15356
  format: "json",
15138
15357
  ...params,
15139
15358
  }),
@@ -15166,7 +15385,7 @@ export class Api<
15166
15385
  query: query,
15167
15386
  body: data,
15168
15387
  secure: true,
15169
- type: ContentType.Json,
15388
+ type: "application/json",
15170
15389
  format: "json",
15171
15390
  ...params,
15172
15391
  }),
@@ -15187,7 +15406,7 @@ export class Api<
15187
15406
  method: "POST",
15188
15407
  body: data,
15189
15408
  secure: true,
15190
- type: ContentType.Json,
15409
+ type: "application/json",
15191
15410
  format: "json",
15192
15411
  ...params,
15193
15412
  }),
@@ -15209,7 +15428,7 @@ export class Api<
15209
15428
  method: "POST",
15210
15429
  body: data,
15211
15430
  secure: true,
15212
- type: ContentType.Json,
15431
+ type: "application/json",
15213
15432
  format: "json",
15214
15433
  ...params,
15215
15434
  }),
@@ -15235,7 +15454,7 @@ export class Api<
15235
15454
  method: "PUT",
15236
15455
  body: data,
15237
15456
  secure: true,
15238
- type: ContentType.Json,
15457
+ type: "application/json",
15239
15458
  format: "json",
15240
15459
  ...params,
15241
15460
  }),
@@ -15301,7 +15520,7 @@ export class Api<
15301
15520
  method: "POST",
15302
15521
  body: data,
15303
15522
  secure: true,
15304
- type: ContentType.Json,
15523
+ type: "application/json",
15305
15524
  ...params,
15306
15525
  }),
15307
15526
 
@@ -15322,7 +15541,7 @@ export class Api<
15322
15541
  method: "POST",
15323
15542
  body: data,
15324
15543
  secure: true,
15325
- type: ContentType.Json,
15544
+ type: "application/json",
15326
15545
  ...params,
15327
15546
  }),
15328
15547
 
@@ -15347,7 +15566,7 @@ export class Api<
15347
15566
  method: "POST",
15348
15567
  body: data,
15349
15568
  secure: true,
15350
- type: ContentType.Json,
15569
+ type: "application/json",
15351
15570
  ...params,
15352
15571
  }),
15353
15572
 
@@ -15371,7 +15590,7 @@ export class Api<
15371
15590
  method: "POST",
15372
15591
  body: data,
15373
15592
  secure: true,
15374
- type: ContentType.Json,
15593
+ type: "application/json",
15375
15594
  ...params,
15376
15595
  }),
15377
15596
 
@@ -15414,7 +15633,7 @@ export class Api<
15414
15633
  method: "PUT",
15415
15634
  body: data,
15416
15635
  secure: true,
15417
- type: ContentType.Json,
15636
+ type: "application/json",
15418
15637
  ...params,
15419
15638
  }),
15420
15639
 
@@ -15454,7 +15673,7 @@ export class Api<
15454
15673
  method: "PUT",
15455
15674
  body: data,
15456
15675
  secure: true,
15457
- type: ContentType.Json,
15676
+ type: "application/json",
15458
15677
  format: "json",
15459
15678
  ...params,
15460
15679
  }),
@@ -15478,7 +15697,7 @@ export class Api<
15478
15697
  method: "PUT",
15479
15698
  body: data,
15480
15699
  secure: true,
15481
- type: ContentType.Json,
15700
+ type: "application/json",
15482
15701
  format: "json",
15483
15702
  ...params,
15484
15703
  }),
@@ -15555,7 +15774,7 @@ export class Api<
15555
15774
  method: "POST",
15556
15775
  body: data,
15557
15776
  secure: true,
15558
- type: ContentType.Json,
15777
+ type: "application/json",
15559
15778
  ...params,
15560
15779
  }),
15561
15780
 
@@ -15575,7 +15794,7 @@ export class Api<
15575
15794
  method: "POST",
15576
15795
  body: data,
15577
15796
  secure: true,
15578
- type: ContentType.Json,
15797
+ type: "application/json",
15579
15798
  format: "json",
15580
15799
  ...params,
15581
15800
  }),