@matech/thebigpos-sdk 2.43.1-rc.0 → 2.43.8

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: AccountBillingRequestBillingTypeEnum;
488
+ billingType: "ClosedLoan" | "LoanOfficer";
489
489
  /** @format double */
490
490
  contractedRate: number;
491
491
  }
@@ -533,7 +533,7 @@ export interface Action {
533
533
  comments?: string | null;
534
534
  /** @format uuid */
535
535
  siteConfigurationID: string;
536
- applicationSettings?: any | null;
536
+ applicationSettings?: any;
537
537
  surveysToken?: string | null;
538
538
  }
539
539
 
@@ -785,14 +785,21 @@ export interface AuditLogEntry {
785
785
  /** @format uuid */
786
786
  id: string;
787
787
  entityType: string;
788
- changeType: AuditLogEntryChangeTypeEnum;
788
+ changeType:
789
+ | "Created"
790
+ | "Modified"
791
+ | "SoftDeleted"
792
+ | "HardDeleted"
793
+ | "Restored"
794
+ | "Deactivated"
795
+ | "Reactivated";
789
796
  /** @format uuid */
790
797
  entityId: string;
791
798
  performedBy?: AuditLogUser | null;
792
799
  rootEntityType?: string | null;
793
800
  /** @format uuid */
794
801
  rootEntityId?: string | null;
795
- changes?: any | null;
802
+ changes?: any;
796
803
  /** @format date-time */
797
804
  createdAt: string;
798
805
  }
@@ -837,7 +844,20 @@ export interface BorrowerCount {
837
844
  firstName: string;
838
845
  lastName: string;
839
846
  email: string;
840
- role: BorrowerCountRoleEnum;
847
+ role:
848
+ | "Borrower"
849
+ | "CoBorrower"
850
+ | "NonBorrower"
851
+ | "LoanOfficer"
852
+ | "LoanProcessor"
853
+ | "LoanOfficerAssistant"
854
+ | "SupportingLoanOfficer"
855
+ | "BuyerAgent"
856
+ | "SellerAgent"
857
+ | "TitleInsuranceAgent"
858
+ | "EscrowAgent"
859
+ | "SettlementAgent"
860
+ | "Admin";
841
861
  /** @format int32 */
842
862
  count: number;
843
863
  }
@@ -848,7 +868,20 @@ export interface BorrowerIdentity {
848
868
  firstName: string;
849
869
  lastName: string;
850
870
  email: string;
851
- role: BorrowerIdentityRoleEnum;
871
+ role:
872
+ | "Borrower"
873
+ | "CoBorrower"
874
+ | "NonBorrower"
875
+ | "LoanOfficer"
876
+ | "LoanProcessor"
877
+ | "LoanOfficerAssistant"
878
+ | "SupportingLoanOfficer"
879
+ | "BuyerAgent"
880
+ | "SellerAgent"
881
+ | "TitleInsuranceAgent"
882
+ | "EscrowAgent"
883
+ | "SettlementAgent"
884
+ | "Admin";
852
885
  }
853
886
 
854
887
  export interface BorrowersNotUsingPosSummary {
@@ -1109,7 +1142,7 @@ export interface CorporateSearchCriteria {
1109
1142
  }
1110
1143
 
1111
1144
  export interface CreateAccessScopeRequest {
1112
- scopeType: CreateAccessScopeRequestScopeTypeEnum;
1145
+ scopeType: "User" | "Branch";
1113
1146
  /** @format uuid */
1114
1147
  userId?: string | null;
1115
1148
  /** @format uuid */
@@ -1128,7 +1161,7 @@ export interface CreateAccountRequest {
1128
1161
  /** @format int64 */
1129
1162
  nlmsid: number;
1130
1163
  settings: AccountSettingsRequest;
1131
- environment: CreateAccountRequestEnvironmentEnum;
1164
+ environment: "Development" | "Staging" | "UAT" | "Production";
1132
1165
  losIntegration: LOSIntegration;
1133
1166
  billingSettings: AccountBillingRequest;
1134
1167
  }
@@ -1155,8 +1188,15 @@ export interface CreateCustomFieldDefinitionRequest {
1155
1188
  name: string;
1156
1189
  defaultValue?: string | null;
1157
1190
  regexPattern?: string | null;
1158
- dataType: CreateCustomFieldDefinitionRequestDataTypeEnum;
1159
- entityType: CreateCustomFieldDefinitionRequestEntityTypeEnum;
1191
+ dataType:
1192
+ | "String"
1193
+ | "Number"
1194
+ | "Decimal"
1195
+ | "Boolean"
1196
+ | "Date"
1197
+ | "SingleSelect"
1198
+ | "MultiSelect";
1199
+ entityType: "Loan";
1160
1200
  options?: CustomFieldOptionRequest[] | null;
1161
1201
  permissions?: CustomFieldPermissionRequest[] | null;
1162
1202
  }
@@ -1173,7 +1213,20 @@ export interface CreateDocumentTemplateRequest {
1173
1213
  export interface CreateGroupMemberRequest {
1174
1214
  /** @format uuid */
1175
1215
  userId: string;
1176
- loanRole: CreateGroupMemberRequestLoanRoleEnum;
1216
+ loanRole:
1217
+ | "Borrower"
1218
+ | "CoBorrower"
1219
+ | "NonBorrower"
1220
+ | "LoanOfficer"
1221
+ | "LoanProcessor"
1222
+ | "LoanOfficerAssistant"
1223
+ | "SupportingLoanOfficer"
1224
+ | "BuyerAgent"
1225
+ | "SellerAgent"
1226
+ | "TitleInsuranceAgent"
1227
+ | "EscrowAgent"
1228
+ | "SettlementAgent"
1229
+ | "Admin";
1177
1230
  }
1178
1231
 
1179
1232
  export interface CreateInviteRequest {
@@ -1182,7 +1235,7 @@ export interface CreateInviteRequest {
1182
1235
  emailAddress: string;
1183
1236
  phoneNumber?: string | null;
1184
1237
  /** @deprecated */
1185
- relationship: CreateInviteRequestRelationshipEnum;
1238
+ relationship: "NotApplicable" | "Spouse" | "NonSpouse";
1186
1239
  loanID: string;
1187
1240
  route?: string | null;
1188
1241
  /** @format uuid */
@@ -1204,7 +1257,7 @@ export interface CreateLoanImportRequest {
1204
1257
  endDate: string;
1205
1258
  /** @format date-time */
1206
1259
  startDate: string;
1207
- importMode: CreateLoanImportRequestImportModeEnum;
1260
+ importMode: "All" | "NewOnly" | "UpdateOnly";
1208
1261
  }
1209
1262
 
1210
1263
  export interface CreateSession {
@@ -1226,7 +1279,20 @@ export interface CreateUserDeviceRequest {
1226
1279
  }
1227
1280
 
1228
1281
  export interface CreateUserDraft {
1229
- loanRole: CreateUserDraftLoanRoleEnum;
1282
+ loanRole:
1283
+ | "Borrower"
1284
+ | "CoBorrower"
1285
+ | "NonBorrower"
1286
+ | "LoanOfficer"
1287
+ | "LoanProcessor"
1288
+ | "LoanOfficerAssistant"
1289
+ | "SupportingLoanOfficer"
1290
+ | "BuyerAgent"
1291
+ | "SellerAgent"
1292
+ | "TitleInsuranceAgent"
1293
+ | "EscrowAgent"
1294
+ | "SettlementAgent"
1295
+ | "Admin";
1230
1296
  }
1231
1297
 
1232
1298
  export interface CreateUserGroupRequest {
@@ -1294,8 +1360,15 @@ export interface CustomFieldDefinition {
1294
1360
  name: string;
1295
1361
  defaultValue?: string | null;
1296
1362
  regexPattern?: string | null;
1297
- dataType: CustomFieldDefinitionDataTypeEnum;
1298
- entityType: CustomFieldDefinitionEntityTypeEnum;
1363
+ dataType:
1364
+ | "String"
1365
+ | "Number"
1366
+ | "Decimal"
1367
+ | "Boolean"
1368
+ | "Date"
1369
+ | "SingleSelect"
1370
+ | "MultiSelect";
1371
+ entityType: "Loan";
1299
1372
  options: CustomFieldOption[];
1300
1373
  permissions: CustomFieldPermission[];
1301
1374
  encompassMapping?: EncompassMapping | null;
@@ -1310,7 +1383,14 @@ export interface CustomFieldEntry {
1310
1383
  displayOrder: number;
1311
1384
  name: string;
1312
1385
  value: string;
1313
- dataType: CustomFieldEntryDataTypeEnum;
1386
+ dataType:
1387
+ | "String"
1388
+ | "Number"
1389
+ | "Decimal"
1390
+ | "Boolean"
1391
+ | "Date"
1392
+ | "SingleSelect"
1393
+ | "MultiSelect";
1314
1394
  }
1315
1395
 
1316
1396
  export interface CustomFieldOption {
@@ -1330,13 +1410,31 @@ export interface CustomFieldOptionRequest {
1330
1410
  export interface CustomFieldPermission {
1331
1411
  /** @format uuid */
1332
1412
  id: string;
1333
- role: CustomFieldPermissionRoleEnum;
1334
- accessLevel: CustomFieldPermissionAccessLevelEnum;
1413
+ role:
1414
+ | "Borrower"
1415
+ | "LoanOfficer"
1416
+ | "Admin"
1417
+ | "SuperAdmin"
1418
+ | "Realtor"
1419
+ | "SettlementAgent"
1420
+ | "LoanProcessor"
1421
+ | "LoanOfficerAssistant"
1422
+ | "SystemAdmin";
1423
+ accessLevel: "NoAccess" | "ReadOnly" | "ReadWrite";
1335
1424
  }
1336
1425
 
1337
1426
  export interface CustomFieldPermissionRequest {
1338
- role: CustomFieldPermissionRequestRoleEnum;
1339
- accessLevel: CustomFieldPermissionRequestAccessLevelEnum;
1427
+ role:
1428
+ | "Borrower"
1429
+ | "LoanOfficer"
1430
+ | "Admin"
1431
+ | "SuperAdmin"
1432
+ | "Realtor"
1433
+ | "SettlementAgent"
1434
+ | "LoanProcessor"
1435
+ | "LoanOfficerAssistant"
1436
+ | "SystemAdmin";
1437
+ accessLevel: "NoAccess" | "ReadOnly" | "ReadWrite";
1340
1438
  }
1341
1439
 
1342
1440
  export interface CustomFieldValue {
@@ -1348,7 +1446,14 @@ export interface CustomFieldValue {
1348
1446
  customFieldDefinitionID: string;
1349
1447
  value: string;
1350
1448
  definitionName: string;
1351
- dataType: CustomFieldValueDataTypeEnum;
1449
+ dataType:
1450
+ | "String"
1451
+ | "Number"
1452
+ | "Decimal"
1453
+ | "Boolean"
1454
+ | "Date"
1455
+ | "SingleSelect"
1456
+ | "MultiSelect";
1352
1457
  }
1353
1458
 
1354
1459
  export interface DetailedUser {
@@ -1605,7 +1710,7 @@ export interface Draft {
1605
1710
  siteConfiguration: SiteConfigurationReduced;
1606
1711
  /** @format uuid */
1607
1712
  loanID?: string | null;
1608
- type: DraftTypeEnum;
1713
+ type: "NewLoan" | "EditLoan";
1609
1714
  isCoBorrower: boolean;
1610
1715
  }
1611
1716
 
@@ -1624,7 +1729,7 @@ export interface DraftContent {
1624
1729
  siteConfiguration: SiteConfigurationReduced;
1625
1730
  /** @format uuid */
1626
1731
  loanID?: string | null;
1627
- type: DraftContentTypeEnum;
1732
+ type: "NewLoan" | "EditLoan";
1628
1733
  isCoBorrower: boolean;
1629
1734
  applicationPayload: any;
1630
1735
  }
@@ -1643,7 +1748,7 @@ export interface DraftLoanOfficerReassignRequest {
1643
1748
 
1644
1749
  export interface DraftRequest {
1645
1750
  applicationPayload: any;
1646
- customData?: any | null;
1751
+ customData?: any;
1647
1752
  isCoBorrower: boolean;
1648
1753
  }
1649
1754
 
@@ -1721,9 +1826,9 @@ export interface EncompassCredentialsDetail {
1721
1826
  clearStateIfUnlicensed: boolean;
1722
1827
  /** @deprecated */
1723
1828
  baseUrl?: string | null;
1724
- encompassEnvironment: EncompassCredentialsDetailEncompassEnvironmentEnum;
1829
+ encompassEnvironment: "Production" | "UAT";
1725
1830
  consumerConnectWidgetHost?: string | null;
1726
- signingMethod: EncompassCredentialsDetailSigningMethodEnum;
1831
+ signingMethod: "ConsumerConnect" | "POSF";
1727
1832
  subscriptionId?: string | null;
1728
1833
  environment?: string | null;
1729
1834
  }
@@ -1740,9 +1845,9 @@ export interface EncompassCredentialsRequest {
1740
1845
  clearStateIfUnlicensed: boolean;
1741
1846
  /** @deprecated */
1742
1847
  baseUrl?: string | null;
1743
- encompassEnvironment: EncompassCredentialsRequestEncompassEnvironmentEnum;
1848
+ encompassEnvironment: "Production" | "UAT";
1744
1849
  consumerConnectWidgetHost?: string | null;
1745
- signingMethod: EncompassCredentialsRequestSigningMethodEnum;
1850
+ signingMethod: "ConsumerConnect" | "POSF";
1746
1851
  subscriptionId?: string | null;
1747
1852
  environment?: string | null;
1748
1853
  clientID?: string | null;
@@ -1863,8 +1968,15 @@ export interface EncompassRequestLog {
1863
1968
  losId?: string | null;
1864
1969
  /** @format uuid */
1865
1970
  accountId: string;
1866
- operationType: EncompassRequestLogOperationTypeEnum;
1867
- outcome: EncompassRequestLogOutcomeEnum;
1971
+ operationType:
1972
+ | "FieldUpdate"
1973
+ | "ConsentUpdate"
1974
+ | "DocumentSync"
1975
+ | "MilestoneUpdate"
1976
+ | "DocumentAttachment"
1977
+ | "General"
1978
+ | "FieldReader";
1979
+ outcome: "Success" | "Failure" | "PartialSuccess";
1868
1980
  message: string;
1869
1981
  endpoint?: string | null;
1870
1982
  httpMethod?: string | null;
@@ -1872,7 +1984,7 @@ export interface EncompassRequestLog {
1872
1984
  httpStatusCode?: number | null;
1873
1985
  /** @format int64 */
1874
1986
  durationMs?: number | null;
1875
- context?: any | null;
1987
+ context?: any;
1876
1988
  /** @format date-time */
1877
1989
  createdAt: string;
1878
1990
  }
@@ -1918,7 +2030,7 @@ export interface FileSearchCriteria {
1918
2030
  export interface FileWithBytes {
1919
2031
  name: string;
1920
2032
  /** @format byte */
1921
- data: Blob;
2033
+ data: string;
1922
2034
  fileName: string;
1923
2035
  mimeType?: string | null;
1924
2036
  extension?: string | null;
@@ -1997,7 +2109,7 @@ export interface FormSubmission {
1997
2109
  subjectPropertyAddressCounty?: string | null;
1998
2110
  subjectPropertyAddressState?: string | null;
1999
2111
  subjectPropertyAddressZip?: string | null;
2000
- data?: any | null;
2112
+ data?: any;
2001
2113
  /** @format uuid */
2002
2114
  listingID?: string | null;
2003
2115
  listing?: Listing | null;
@@ -2035,7 +2147,7 @@ export interface FormSubmissionRequest {
2035
2147
  subjectPropertyAddressCounty?: string | null;
2036
2148
  subjectPropertyAddressState?: string | null;
2037
2149
  subjectPropertyAddressZip?: string | null;
2038
- data?: any | null;
2150
+ data?: any;
2039
2151
  /** @format uuid */
2040
2152
  listingID?: string | null;
2041
2153
  }
@@ -2090,7 +2202,20 @@ export interface FusionFieldDisplay {
2090
2202
  }
2091
2203
 
2092
2204
  export interface FusionReportFilter {
2093
- filterType: FusionReportFilterFilterTypeEnum;
2205
+ filterType:
2206
+ | "DateGreaterThanOrEqualTo"
2207
+ | "DateGreaterThan"
2208
+ | "DateLessThan"
2209
+ | "DateLessThanOrEqualTo"
2210
+ | "DateEquals"
2211
+ | "DateDoesntEqual"
2212
+ | "DateNonEmpty"
2213
+ | "DateEmpty"
2214
+ | "StringContains"
2215
+ | "StringEquals"
2216
+ | "StringNotEmpty"
2217
+ | "StringNotEquals"
2218
+ | "StringNotContains";
2094
2219
  targetField: string;
2095
2220
  targetValue: string;
2096
2221
  }
@@ -2202,12 +2327,45 @@ export interface GetWorkflowRequest {
2202
2327
  export interface GuidPatchOperation {
2203
2328
  op: string;
2204
2329
  path: string;
2205
- value?: any | null;
2330
+ value?: any;
2206
2331
  from?: string | null;
2207
2332
  }
2208
2333
 
2209
2334
  export interface IPAddress {
2210
- addressFamily: IpAddressAddressFamilyEnum;
2335
+ addressFamily:
2336
+ | "Unspecified"
2337
+ | "Unix"
2338
+ | "InterNetwork"
2339
+ | "ImpLink"
2340
+ | "Pup"
2341
+ | "Chaos"
2342
+ | "NS"
2343
+ | "Ipx"
2344
+ | "Iso"
2345
+ | "Osi"
2346
+ | "Ecma"
2347
+ | "DataKit"
2348
+ | "Ccitt"
2349
+ | "Sna"
2350
+ | "DecNet"
2351
+ | "DataLink"
2352
+ | "Lat"
2353
+ | "HyperChannel"
2354
+ | "AppleTalk"
2355
+ | "NetBios"
2356
+ | "VoiceView"
2357
+ | "FireFox"
2358
+ | "Banyan"
2359
+ | "Atm"
2360
+ | "InterNetworkV6"
2361
+ | "Cluster"
2362
+ | "Ieee12844"
2363
+ | "Irda"
2364
+ | "NetworkDesigners"
2365
+ | "Max"
2366
+ | "Packet"
2367
+ | "ControllerAreaNetwork"
2368
+ | "Unknown";
2211
2369
  /** @format int64 */
2212
2370
  scopeId: number;
2213
2371
  isIPv6Multicast: boolean;
@@ -2466,7 +2624,7 @@ export interface Loan {
2466
2624
  userLoans: UserLoan[];
2467
2625
  contacts: LoanContact[];
2468
2626
  customFields: CustomFieldEntry[];
2469
- signingMethod: LoanSigningMethodEnum;
2627
+ signingMethod: "ConsumerConnect" | "POSF";
2470
2628
  }
2471
2629
 
2472
2630
  export interface LoanApplication {
@@ -2504,7 +2662,7 @@ export interface LoanApplicationRequest {
2504
2662
  nonOwningBorrowers: LoanNonOwningBorrowerRequest[];
2505
2663
  /** @format uuid */
2506
2664
  draftId?: string | null;
2507
- additionalFields?: Record<string, any> | null;
2665
+ additionalFields?: Record<string, any>;
2508
2666
  /** @format uuid */
2509
2667
  existingLoanId?: string | null;
2510
2668
  }
@@ -2524,7 +2682,7 @@ export interface LoanBorrower {
2524
2682
  citizenship?: LoanCitizenship | null;
2525
2683
  maritalStatus?: LoanMaritalStatus | null;
2526
2684
  languagePreference?: LoanLanguagePreference | null;
2527
- applicationStatus: LoanBorrowerApplicationStatusEnum;
2685
+ applicationStatus: "Draft" | "Complete";
2528
2686
  /** @format int32 */
2529
2687
  numberOfDependents?: number | null;
2530
2688
  isPrimaryBorrower: boolean;
@@ -3293,7 +3451,7 @@ export interface LoanConsentRequest {
3293
3451
  borrowerEConsent?: boolean | null;
3294
3452
  borrowerCreditAuth?: boolean | null;
3295
3453
  borrowerTCPAOptIn?: boolean | null;
3296
- additionalFields?: Record<string, string> | null;
3454
+ additionalFields?: Record<string, string>;
3297
3455
  }
3298
3456
 
3299
3457
  export interface LoanContact {
@@ -3312,7 +3470,20 @@ export interface LoanContact {
3312
3470
  email?: string | null;
3313
3471
  phone?: string | null;
3314
3472
  companyName?: string | null;
3315
- role: LoanContactRoleEnum;
3473
+ role:
3474
+ | "Borrower"
3475
+ | "CoBorrower"
3476
+ | "NonBorrower"
3477
+ | "LoanOfficer"
3478
+ | "LoanProcessor"
3479
+ | "LoanOfficerAssistant"
3480
+ | "SupportingLoanOfficer"
3481
+ | "BuyerAgent"
3482
+ | "SellerAgent"
3483
+ | "TitleInsuranceAgent"
3484
+ | "EscrowAgent"
3485
+ | "SettlementAgent"
3486
+ | "Admin";
3316
3487
  }
3317
3488
 
3318
3489
  export interface LoanContactList {
@@ -3320,7 +3491,7 @@ export interface LoanContactList {
3320
3491
  }
3321
3492
 
3322
3493
  export interface LoanCustomFieldsRequest {
3323
- additionalFields?: Record<string, string> | null;
3494
+ additionalFields?: Record<string, string>;
3324
3495
  }
3325
3496
 
3326
3497
  export interface LoanDocument {
@@ -3366,13 +3537,39 @@ export interface LoanDocumentFolderPermission {
3366
3537
  id: string;
3367
3538
  /** @format uuid */
3368
3539
  loanDocumentFolderID: string;
3369
- role: LoanDocumentFolderPermissionRoleEnum;
3370
- level: LoanDocumentFolderPermissionLevelEnum;
3540
+ role:
3541
+ | "Borrower"
3542
+ | "CoBorrower"
3543
+ | "NonBorrower"
3544
+ | "LoanOfficer"
3545
+ | "LoanProcessor"
3546
+ | "LoanOfficerAssistant"
3547
+ | "SupportingLoanOfficer"
3548
+ | "BuyerAgent"
3549
+ | "SellerAgent"
3550
+ | "TitleInsuranceAgent"
3551
+ | "EscrowAgent"
3552
+ | "SettlementAgent"
3553
+ | "Admin";
3554
+ level: "None" | "Read" | "Write" | "Manage";
3371
3555
  }
3372
3556
 
3373
3557
  export interface LoanDocumentFolderPermissionRequest {
3374
- role: LoanDocumentFolderPermissionRequestRoleEnum;
3375
- level: LoanDocumentFolderPermissionRequestLevelEnum;
3558
+ role:
3559
+ | "Borrower"
3560
+ | "CoBorrower"
3561
+ | "NonBorrower"
3562
+ | "LoanOfficer"
3563
+ | "LoanProcessor"
3564
+ | "LoanOfficerAssistant"
3565
+ | "SupportingLoanOfficer"
3566
+ | "BuyerAgent"
3567
+ | "SellerAgent"
3568
+ | "TitleInsuranceAgent"
3569
+ | "EscrowAgent"
3570
+ | "SettlementAgent"
3571
+ | "Admin";
3572
+ level: "None" | "Read" | "Write" | "Manage";
3376
3573
  }
3377
3574
 
3378
3575
  export interface LoanDocumentFolderUsage {
@@ -3481,14 +3678,19 @@ export interface LoanImport {
3481
3678
  /** @format int32 */
3482
3679
  importedCount: number;
3483
3680
  statusMessage?: string | null;
3484
- status: LoanImportStatusEnum;
3485
- importMode: LoanImportImportModeEnum;
3681
+ status:
3682
+ | "WaitingProcess"
3683
+ | "InProgress"
3684
+ | "Completed"
3685
+ | "Failed"
3686
+ | "Cancelled";
3687
+ importMode: "All" | "NewOnly" | "UpdateOnly";
3486
3688
  /** @format date-time */
3487
3689
  createdAt?: string | null;
3488
3690
  }
3489
3691
 
3490
3692
  export interface LoanImportLog {
3491
- level: LoanImportLogLevelEnum;
3693
+ level: "None" | "Info" | "Warning" | "Error";
3492
3694
  message: string;
3493
3695
  /** @format date-time */
3494
3696
  createdAt: string;
@@ -3549,8 +3751,24 @@ export interface LoanListPaginated {
3549
3751
  export interface LoanLog {
3550
3752
  /** @format uuid */
3551
3753
  id: string;
3552
- level: LoanLogLevelEnum;
3553
- type: LoanLogTypeEnum;
3754
+ level: "None" | "Info" | "Warning" | "Error";
3755
+ type:
3756
+ | "Loan"
3757
+ | "Queue"
3758
+ | "POSFlagChanged"
3759
+ | "Verification"
3760
+ | "DocumentUploaded"
3761
+ | "LoanCreated"
3762
+ | "WorkflowSubmitted"
3763
+ | "UserInvitationSent"
3764
+ | "CoBorrowerAdded"
3765
+ | "TaskCompleted"
3766
+ | "LoanStatusChanged"
3767
+ | "Consent"
3768
+ | "SensitiveDataPurge"
3769
+ | "ClosingDateUpdated"
3770
+ | "ConsumerConnectAssociation"
3771
+ | "TaskReminderSent";
3554
3772
  message: string;
3555
3773
  /** @format date-time */
3556
3774
  createdAt: string;
@@ -3559,8 +3777,24 @@ export interface LoanLog {
3559
3777
  export interface LoanLogDetail {
3560
3778
  /** @format uuid */
3561
3779
  id: string;
3562
- level: LoanLogDetailLevelEnum;
3563
- type: LoanLogDetailTypeEnum;
3780
+ level: "None" | "Info" | "Warning" | "Error";
3781
+ type:
3782
+ | "Loan"
3783
+ | "Queue"
3784
+ | "POSFlagChanged"
3785
+ | "Verification"
3786
+ | "DocumentUploaded"
3787
+ | "LoanCreated"
3788
+ | "WorkflowSubmitted"
3789
+ | "UserInvitationSent"
3790
+ | "CoBorrowerAdded"
3791
+ | "TaskCompleted"
3792
+ | "LoanStatusChanged"
3793
+ | "Consent"
3794
+ | "SensitiveDataPurge"
3795
+ | "ClosingDateUpdated"
3796
+ | "ConsumerConnectAssociation"
3797
+ | "TaskReminderSent";
3564
3798
  message: string;
3565
3799
  /** @format date-time */
3566
3800
  createdAt: string;
@@ -3786,7 +4020,7 @@ export interface LoanQueueWithData {
3786
4020
  user: UserPublic;
3787
4021
  loanOfficer: LoanOfficerPublic;
3788
4022
  siteConfiguration: SiteConfigurationReduced;
3789
- data?: any | null;
4023
+ data?: any;
3790
4024
  }
3791
4025
 
3792
4026
  export interface LoanRecord {
@@ -3822,7 +4056,7 @@ export interface LoanTaskSearchRequest {
3822
4056
  }
3823
4057
 
3824
4058
  export interface LoanTaskStatusSummary {
3825
- status: LoanTaskStatusSummaryStatusEnum;
4059
+ status: "Outstanding" | "Pending" | "Completed" | "Rejected" | "Unknown";
3826
4060
  /** @format int32 */
3827
4061
  count: number;
3828
4062
  }
@@ -3835,7 +4069,20 @@ export interface LoanUser {
3835
4069
  email: string;
3836
4070
  phone?: string | null;
3837
4071
  role: string;
3838
- loanRole: LoanUserLoanRoleEnum;
4072
+ loanRole:
4073
+ | "Borrower"
4074
+ | "CoBorrower"
4075
+ | "NonBorrower"
4076
+ | "LoanOfficer"
4077
+ | "LoanProcessor"
4078
+ | "LoanOfficerAssistant"
4079
+ | "SupportingLoanOfficer"
4080
+ | "BuyerAgent"
4081
+ | "SellerAgent"
4082
+ | "TitleInsuranceAgent"
4083
+ | "EscrowAgent"
4084
+ | "SettlementAgent"
4085
+ | "Admin";
3839
4086
  isUser: boolean;
3840
4087
  /** @format date-time */
3841
4088
  createdAt: string;
@@ -3871,7 +4118,13 @@ export interface LosOperationTracking {
3871
4118
  operationType: string;
3872
4119
  correlationKey: string;
3873
4120
  lastTriggerSource?: string | null;
3874
- status: LosOperationTrackingStatusEnum;
4121
+ status:
4122
+ | "Pending"
4123
+ | "Success"
4124
+ | "Failed"
4125
+ | "ConfigurationError"
4126
+ | "PermanentFailure"
4127
+ | "Locked";
3875
4128
  /** @format date-time */
3876
4129
  createdAt: string;
3877
4130
  /** @format date-time */
@@ -3938,7 +4191,7 @@ export interface LosSyncStep {
3938
4191
  /** @format int32 */
3939
4192
  order: number;
3940
4193
  name: string;
3941
- severity: LosSyncStepSeverityEnum;
4194
+ severity: "Success" | "Info" | "Warning" | "Error";
3942
4195
  message: string;
3943
4196
  /** @format date-time */
3944
4197
  atUtc: string;
@@ -4037,7 +4290,7 @@ export interface ModuleParameterValue {
4037
4290
  parameterID: string;
4038
4291
  parameterName: string;
4039
4292
  parameterType: string;
4040
- value?: any | null;
4293
+ value?: any;
4041
4294
  isInherited: boolean;
4042
4295
  }
4043
4296
 
@@ -4223,7 +4476,7 @@ export interface NotificationTemplateVersionUpdateRequest {
4223
4476
 
4224
4477
  export interface Operation {
4225
4478
  op?: string;
4226
- value?: object | null;
4479
+ value?: string | number | boolean | null | object;
4227
4480
  path?: string;
4228
4481
  }
4229
4482
 
@@ -4566,7 +4819,7 @@ export interface SiteConfiguration {
4566
4819
  deletedAt?: string | null;
4567
4820
  /** @format uuid */
4568
4821
  id: string;
4569
- type: SiteConfigurationTypeEnum;
4822
+ type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
4570
4823
  /** @format uuid */
4571
4824
  entityID: string;
4572
4825
  /** @format int32 */
@@ -4760,7 +5013,7 @@ export interface SiteConfigurationByUrl {
4760
5013
  deletedAt?: string | null;
4761
5014
  /** @format uuid */
4762
5015
  id: string;
4763
- type: SiteConfigurationByUrlTypeEnum;
5016
+ type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
4764
5017
  /** @format uuid */
4765
5018
  entityID: string;
4766
5019
  /** @format int32 */
@@ -4972,7 +5225,7 @@ export interface SiteConfigurationForm {
4972
5225
  export interface SiteConfigurationReduced {
4973
5226
  /** @format uuid */
4974
5227
  id: string;
4975
- type: SiteConfigurationReducedTypeEnum;
5228
+ type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
4976
5229
  url?: string | null;
4977
5230
  name: string;
4978
5231
  /** @format int64 */
@@ -4990,7 +5243,7 @@ export interface SiteConfigurationRequest {
4990
5243
  entityID: string;
4991
5244
  /** @format int32 */
4992
5245
  entityType: number;
4993
- type: SiteConfigurationRequestTypeEnum;
5246
+ type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
4994
5247
  url: string;
4995
5248
  name: string;
4996
5249
  introduction?: string | null;
@@ -5167,7 +5420,7 @@ export interface SiteConfigurationSearchCriteria {
5167
5420
  export interface SiteConfigurationSummary {
5168
5421
  /** @format uuid */
5169
5422
  id: string;
5170
- type: SiteConfigurationSummaryTypeEnum;
5423
+ type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
5171
5424
  url?: string | null;
5172
5425
  name: string;
5173
5426
  /** @format int64 */
@@ -5450,7 +5703,20 @@ export interface UnregisteredBorrower {
5450
5703
  lastName?: string | null;
5451
5704
  fullName?: string | null;
5452
5705
  email?: string | null;
5453
- role: UnregisteredBorrowerRoleEnum;
5706
+ role:
5707
+ | "Borrower"
5708
+ | "CoBorrower"
5709
+ | "NonBorrower"
5710
+ | "LoanOfficer"
5711
+ | "LoanProcessor"
5712
+ | "LoanOfficerAssistant"
5713
+ | "SupportingLoanOfficer"
5714
+ | "BuyerAgent"
5715
+ | "SellerAgent"
5716
+ | "TitleInsuranceAgent"
5717
+ | "EscrowAgent"
5718
+ | "SettlementAgent"
5719
+ | "Admin";
5454
5720
  }
5455
5721
 
5456
5722
  export interface UpdateAccountRequest {
@@ -5772,7 +6038,20 @@ export interface UserDevice {
5772
6038
  export interface UserDraft {
5773
6039
  /** @format uuid */
5774
6040
  draftID: string;
5775
- role: UserDraftRoleEnum;
6041
+ role:
6042
+ | "Borrower"
6043
+ | "CoBorrower"
6044
+ | "NonBorrower"
6045
+ | "LoanOfficer"
6046
+ | "LoanProcessor"
6047
+ | "LoanOfficerAssistant"
6048
+ | "SupportingLoanOfficer"
6049
+ | "BuyerAgent"
6050
+ | "SellerAgent"
6051
+ | "TitleInsuranceAgent"
6052
+ | "EscrowAgent"
6053
+ | "SettlementAgent"
6054
+ | "Admin";
5776
6055
  user: User;
5777
6056
  }
5778
6057
 
@@ -5799,7 +6078,7 @@ export interface UserGroupAccessScope {
5799
6078
  id: string;
5800
6079
  /** @format uuid */
5801
6080
  groupId: string;
5802
- scopeType: UserGroupAccessScopeScopeTypeEnum;
6081
+ scopeType: "User" | "Branch";
5803
6082
  /** @format uuid */
5804
6083
  userId?: string | null;
5805
6084
  /** @format uuid */
@@ -5835,7 +6114,20 @@ export interface UserLoan {
5835
6114
  deletedAt?: string | null;
5836
6115
  loanID: string;
5837
6116
  user: User;
5838
- role: UserLoanRoleEnum;
6117
+ role:
6118
+ | "Borrower"
6119
+ | "CoBorrower"
6120
+ | "NonBorrower"
6121
+ | "LoanOfficer"
6122
+ | "LoanProcessor"
6123
+ | "LoanOfficerAssistant"
6124
+ | "SupportingLoanOfficer"
6125
+ | "BuyerAgent"
6126
+ | "SellerAgent"
6127
+ | "TitleInsuranceAgent"
6128
+ | "EscrowAgent"
6129
+ | "SettlementAgent"
6130
+ | "Admin";
5839
6131
  /** @format int32 */
5840
6132
  borrowerPair?: number | null;
5841
6133
  /** @format int32 */
@@ -5848,11 +6140,11 @@ export interface UserLoanConsent {
5848
6140
  id: string;
5849
6141
  /** @format uuid */
5850
6142
  userLoanID: string;
5851
- type: UserLoanConsentTypeEnum;
6143
+ type: "Econsent" | "CreditAuthorization" | "Tcpa";
5852
6144
  providedConsent: boolean;
5853
6145
  source?: ConsentSource | null;
5854
6146
  ipAddress?: string | null;
5855
- losSyncStatus: UserLoanConsentLosSyncStatusEnum;
6147
+ losSyncStatus: "NotStarted" | "Failed" | "Success";
5856
6148
  /** @format date-time */
5857
6149
  createdAt: string;
5858
6150
  /** @format date-time */
@@ -5996,7 +6288,16 @@ export interface UserSummary {
5996
6288
  id: string;
5997
6289
  name?: string | null;
5998
6290
  email?: string | null;
5999
- role: UserSummaryRoleEnum;
6291
+ role:
6292
+ | "Borrower"
6293
+ | "LoanOfficer"
6294
+ | "Admin"
6295
+ | "SuperAdmin"
6296
+ | "Realtor"
6297
+ | "SettlementAgent"
6298
+ | "LoanProcessor"
6299
+ | "LoanOfficerAssistant"
6300
+ | "SystemAdmin";
6000
6301
  }
6001
6302
 
6002
6303
  export interface VerifyPasswordRequest {
@@ -6026,538 +6327,6 @@ export interface Workflow {
6026
6327
  icon: string;
6027
6328
  }
6028
6329
 
6029
- export type AccountBillingRequestBillingTypeEnum = "ClosedLoan" | "LoanOfficer";
6030
-
6031
- export type AuditLogEntryChangeTypeEnum =
6032
- | "Created"
6033
- | "Modified"
6034
- | "SoftDeleted"
6035
- | "HardDeleted"
6036
- | "Restored"
6037
- | "Deactivated"
6038
- | "Reactivated";
6039
-
6040
- export type BorrowerCountRoleEnum =
6041
- | "Borrower"
6042
- | "CoBorrower"
6043
- | "NonBorrower"
6044
- | "LoanOfficer"
6045
- | "LoanProcessor"
6046
- | "LoanOfficerAssistant"
6047
- | "SupportingLoanOfficer"
6048
- | "BuyerAgent"
6049
- | "SellerAgent"
6050
- | "TitleInsuranceAgent"
6051
- | "EscrowAgent"
6052
- | "SettlementAgent"
6053
- | "Admin";
6054
-
6055
- export type BorrowerIdentityRoleEnum =
6056
- | "Borrower"
6057
- | "CoBorrower"
6058
- | "NonBorrower"
6059
- | "LoanOfficer"
6060
- | "LoanProcessor"
6061
- | "LoanOfficerAssistant"
6062
- | "SupportingLoanOfficer"
6063
- | "BuyerAgent"
6064
- | "SellerAgent"
6065
- | "TitleInsuranceAgent"
6066
- | "EscrowAgent"
6067
- | "SettlementAgent"
6068
- | "Admin";
6069
-
6070
- export type CreateAccessScopeRequestScopeTypeEnum = "User" | "Branch";
6071
-
6072
- export type CreateAccountRequestEnvironmentEnum =
6073
- | "Development"
6074
- | "Staging"
6075
- | "UAT"
6076
- | "Production";
6077
-
6078
- export type CreateCustomFieldDefinitionRequestDataTypeEnum =
6079
- | "String"
6080
- | "Number"
6081
- | "Decimal"
6082
- | "Boolean"
6083
- | "Date"
6084
- | "SingleSelect"
6085
- | "MultiSelect";
6086
-
6087
- export type CreateCustomFieldDefinitionRequestEntityTypeEnum = "Loan";
6088
-
6089
- export type CreateGroupMemberRequestLoanRoleEnum =
6090
- | "Borrower"
6091
- | "CoBorrower"
6092
- | "NonBorrower"
6093
- | "LoanOfficer"
6094
- | "LoanProcessor"
6095
- | "LoanOfficerAssistant"
6096
- | "SupportingLoanOfficer"
6097
- | "BuyerAgent"
6098
- | "SellerAgent"
6099
- | "TitleInsuranceAgent"
6100
- | "EscrowAgent"
6101
- | "SettlementAgent"
6102
- | "Admin";
6103
-
6104
- /** @deprecated */
6105
- export type CreateInviteRequestRelationshipEnum =
6106
- | "NotApplicable"
6107
- | "Spouse"
6108
- | "NonSpouse";
6109
-
6110
- export type CreateLoanImportRequestImportModeEnum =
6111
- | "All"
6112
- | "NewOnly"
6113
- | "UpdateOnly";
6114
-
6115
- export type CreateUserDraftLoanRoleEnum =
6116
- | "Borrower"
6117
- | "CoBorrower"
6118
- | "NonBorrower"
6119
- | "LoanOfficer"
6120
- | "LoanProcessor"
6121
- | "LoanOfficerAssistant"
6122
- | "SupportingLoanOfficer"
6123
- | "BuyerAgent"
6124
- | "SellerAgent"
6125
- | "TitleInsuranceAgent"
6126
- | "EscrowAgent"
6127
- | "SettlementAgent"
6128
- | "Admin";
6129
-
6130
- export type CustomFieldDefinitionDataTypeEnum =
6131
- | "String"
6132
- | "Number"
6133
- | "Decimal"
6134
- | "Boolean"
6135
- | "Date"
6136
- | "SingleSelect"
6137
- | "MultiSelect";
6138
-
6139
- export type CustomFieldDefinitionEntityTypeEnum = "Loan";
6140
-
6141
- export type CustomFieldEntryDataTypeEnum =
6142
- | "String"
6143
- | "Number"
6144
- | "Decimal"
6145
- | "Boolean"
6146
- | "Date"
6147
- | "SingleSelect"
6148
- | "MultiSelect";
6149
-
6150
- export type CustomFieldPermissionRoleEnum =
6151
- | "Borrower"
6152
- | "LoanOfficer"
6153
- | "Admin"
6154
- | "SuperAdmin"
6155
- | "Realtor"
6156
- | "SettlementAgent"
6157
- | "LoanProcessor"
6158
- | "LoanOfficerAssistant"
6159
- | "SystemAdmin";
6160
-
6161
- export type CustomFieldPermissionAccessLevelEnum =
6162
- | "NoAccess"
6163
- | "ReadOnly"
6164
- | "ReadWrite";
6165
-
6166
- export type CustomFieldPermissionRequestRoleEnum =
6167
- | "Borrower"
6168
- | "LoanOfficer"
6169
- | "Admin"
6170
- | "SuperAdmin"
6171
- | "Realtor"
6172
- | "SettlementAgent"
6173
- | "LoanProcessor"
6174
- | "LoanOfficerAssistant"
6175
- | "SystemAdmin";
6176
-
6177
- export type CustomFieldPermissionRequestAccessLevelEnum =
6178
- | "NoAccess"
6179
- | "ReadOnly"
6180
- | "ReadWrite";
6181
-
6182
- export type CustomFieldValueDataTypeEnum =
6183
- | "String"
6184
- | "Number"
6185
- | "Decimal"
6186
- | "Boolean"
6187
- | "Date"
6188
- | "SingleSelect"
6189
- | "MultiSelect";
6190
-
6191
- export type DraftTypeEnum = "NewLoan" | "EditLoan";
6192
-
6193
- export type DraftContentTypeEnum = "NewLoan" | "EditLoan";
6194
-
6195
- export type EncompassCredentialsDetailEncompassEnvironmentEnum =
6196
- | "Production"
6197
- | "UAT";
6198
-
6199
- export type EncompassCredentialsDetailSigningMethodEnum =
6200
- | "ConsumerConnect"
6201
- | "POSF";
6202
-
6203
- export type EncompassCredentialsRequestEncompassEnvironmentEnum =
6204
- | "Production"
6205
- | "UAT";
6206
-
6207
- export type EncompassCredentialsRequestSigningMethodEnum =
6208
- | "ConsumerConnect"
6209
- | "POSF";
6210
-
6211
- export type EncompassRequestLogOperationTypeEnum =
6212
- | "FieldUpdate"
6213
- | "ConsentUpdate"
6214
- | "DocumentSync"
6215
- | "MilestoneUpdate"
6216
- | "DocumentAttachment"
6217
- | "General"
6218
- | "FieldReader";
6219
-
6220
- export type EncompassRequestLogOutcomeEnum =
6221
- | "Success"
6222
- | "Failure"
6223
- | "PartialSuccess";
6224
-
6225
- export type FusionReportFilterFilterTypeEnum =
6226
- | "DateGreaterThanOrEqualTo"
6227
- | "DateGreaterThan"
6228
- | "DateLessThan"
6229
- | "DateLessThanOrEqualTo"
6230
- | "DateEquals"
6231
- | "DateDoesntEqual"
6232
- | "DateNonEmpty"
6233
- | "DateEmpty"
6234
- | "StringContains"
6235
- | "StringEquals"
6236
- | "StringNotEmpty"
6237
- | "StringNotEquals"
6238
- | "StringNotContains";
6239
-
6240
- export type IpAddressAddressFamilyEnum =
6241
- | "Unspecified"
6242
- | "Unix"
6243
- | "InterNetwork"
6244
- | "ImpLink"
6245
- | "Pup"
6246
- | "Chaos"
6247
- | "NS"
6248
- | "Ipx"
6249
- | "Iso"
6250
- | "Osi"
6251
- | "Ecma"
6252
- | "DataKit"
6253
- | "Ccitt"
6254
- | "Sna"
6255
- | "DecNet"
6256
- | "DataLink"
6257
- | "Lat"
6258
- | "HyperChannel"
6259
- | "AppleTalk"
6260
- | "NetBios"
6261
- | "VoiceView"
6262
- | "FireFox"
6263
- | "Banyan"
6264
- | "Atm"
6265
- | "InterNetworkV6"
6266
- | "Cluster"
6267
- | "Ieee12844"
6268
- | "Irda"
6269
- | "NetworkDesigners"
6270
- | "Max"
6271
- | "Packet"
6272
- | "ControllerAreaNetwork"
6273
- | "Unknown";
6274
-
6275
- export type LoanSigningMethodEnum = "ConsumerConnect" | "POSF";
6276
-
6277
- export type LoanBorrowerApplicationStatusEnum = "Draft" | "Complete";
6278
-
6279
- export type LoanContactRoleEnum =
6280
- | "Borrower"
6281
- | "CoBorrower"
6282
- | "NonBorrower"
6283
- | "LoanOfficer"
6284
- | "LoanProcessor"
6285
- | "LoanOfficerAssistant"
6286
- | "SupportingLoanOfficer"
6287
- | "BuyerAgent"
6288
- | "SellerAgent"
6289
- | "TitleInsuranceAgent"
6290
- | "EscrowAgent"
6291
- | "SettlementAgent"
6292
- | "Admin";
6293
-
6294
- export type LoanDocumentFolderPermissionRoleEnum =
6295
- | "Borrower"
6296
- | "CoBorrower"
6297
- | "NonBorrower"
6298
- | "LoanOfficer"
6299
- | "LoanProcessor"
6300
- | "LoanOfficerAssistant"
6301
- | "SupportingLoanOfficer"
6302
- | "BuyerAgent"
6303
- | "SellerAgent"
6304
- | "TitleInsuranceAgent"
6305
- | "EscrowAgent"
6306
- | "SettlementAgent"
6307
- | "Admin";
6308
-
6309
- export type LoanDocumentFolderPermissionLevelEnum =
6310
- | "None"
6311
- | "Read"
6312
- | "Write"
6313
- | "Manage";
6314
-
6315
- export type LoanDocumentFolderPermissionRequestRoleEnum =
6316
- | "Borrower"
6317
- | "CoBorrower"
6318
- | "NonBorrower"
6319
- | "LoanOfficer"
6320
- | "LoanProcessor"
6321
- | "LoanOfficerAssistant"
6322
- | "SupportingLoanOfficer"
6323
- | "BuyerAgent"
6324
- | "SellerAgent"
6325
- | "TitleInsuranceAgent"
6326
- | "EscrowAgent"
6327
- | "SettlementAgent"
6328
- | "Admin";
6329
-
6330
- export type LoanDocumentFolderPermissionRequestLevelEnum =
6331
- | "None"
6332
- | "Read"
6333
- | "Write"
6334
- | "Manage";
6335
-
6336
- export type LoanImportStatusEnum =
6337
- | "WaitingProcess"
6338
- | "InProgress"
6339
- | "Completed"
6340
- | "Failed"
6341
- | "Cancelled";
6342
-
6343
- export type LoanImportImportModeEnum = "All" | "NewOnly" | "UpdateOnly";
6344
-
6345
- export type LoanImportLogLevelEnum = "None" | "Info" | "Warning" | "Error";
6346
-
6347
- export type LoanLogLevelEnum = "None" | "Info" | "Warning" | "Error";
6348
-
6349
- export type LoanLogTypeEnum =
6350
- | "Loan"
6351
- | "Queue"
6352
- | "POSFlagChanged"
6353
- | "Verification"
6354
- | "DocumentUploaded"
6355
- | "LoanCreated"
6356
- | "WorkflowSubmitted"
6357
- | "UserInvitationSent"
6358
- | "CoBorrowerAdded"
6359
- | "TaskCompleted"
6360
- | "LoanStatusChanged"
6361
- | "Consent"
6362
- | "SensitiveDataPurge"
6363
- | "ClosingDateUpdated"
6364
- | "ConsumerConnectAssociation"
6365
- | "TaskReminderSent";
6366
-
6367
- export type LoanLogDetailLevelEnum = "None" | "Info" | "Warning" | "Error";
6368
-
6369
- export type LoanLogDetailTypeEnum =
6370
- | "Loan"
6371
- | "Queue"
6372
- | "POSFlagChanged"
6373
- | "Verification"
6374
- | "DocumentUploaded"
6375
- | "LoanCreated"
6376
- | "WorkflowSubmitted"
6377
- | "UserInvitationSent"
6378
- | "CoBorrowerAdded"
6379
- | "TaskCompleted"
6380
- | "LoanStatusChanged"
6381
- | "Consent"
6382
- | "SensitiveDataPurge"
6383
- | "ClosingDateUpdated"
6384
- | "ConsumerConnectAssociation"
6385
- | "TaskReminderSent";
6386
-
6387
- export type LoanTaskStatusSummaryStatusEnum =
6388
- | "Outstanding"
6389
- | "Pending"
6390
- | "Completed"
6391
- | "Rejected"
6392
- | "Unknown";
6393
-
6394
- export type LoanUserLoanRoleEnum =
6395
- | "Borrower"
6396
- | "CoBorrower"
6397
- | "NonBorrower"
6398
- | "LoanOfficer"
6399
- | "LoanProcessor"
6400
- | "LoanOfficerAssistant"
6401
- | "SupportingLoanOfficer"
6402
- | "BuyerAgent"
6403
- | "SellerAgent"
6404
- | "TitleInsuranceAgent"
6405
- | "EscrowAgent"
6406
- | "SettlementAgent"
6407
- | "Admin";
6408
-
6409
- export type LosOperationTrackingStatusEnum =
6410
- | "Pending"
6411
- | "Success"
6412
- | "Failed"
6413
- | "ConfigurationError"
6414
- | "PermanentFailure"
6415
- | "Locked";
6416
-
6417
- export type LosSyncStepSeverityEnum = "Success" | "Info" | "Warning" | "Error";
6418
-
6419
- export type SiteConfigurationTypeEnum =
6420
- | "None"
6421
- | "Account"
6422
- | "Corporate"
6423
- | "Branch"
6424
- | "LoanOfficer"
6425
- | "Partner";
6426
-
6427
- export type SiteConfigurationByUrlTypeEnum =
6428
- | "None"
6429
- | "Account"
6430
- | "Corporate"
6431
- | "Branch"
6432
- | "LoanOfficer"
6433
- | "Partner";
6434
-
6435
- export type SiteConfigurationReducedTypeEnum =
6436
- | "None"
6437
- | "Account"
6438
- | "Corporate"
6439
- | "Branch"
6440
- | "LoanOfficer"
6441
- | "Partner";
6442
-
6443
- export type SiteConfigurationRequestTypeEnum =
6444
- | "None"
6445
- | "Account"
6446
- | "Corporate"
6447
- | "Branch"
6448
- | "LoanOfficer"
6449
- | "Partner";
6450
-
6451
- export type SiteConfigurationSummaryTypeEnum =
6452
- | "None"
6453
- | "Account"
6454
- | "Corporate"
6455
- | "Branch"
6456
- | "LoanOfficer"
6457
- | "Partner";
6458
-
6459
- export type UnregisteredBorrowerRoleEnum =
6460
- | "Borrower"
6461
- | "CoBorrower"
6462
- | "NonBorrower"
6463
- | "LoanOfficer"
6464
- | "LoanProcessor"
6465
- | "LoanOfficerAssistant"
6466
- | "SupportingLoanOfficer"
6467
- | "BuyerAgent"
6468
- | "SellerAgent"
6469
- | "TitleInsuranceAgent"
6470
- | "EscrowAgent"
6471
- | "SettlementAgent"
6472
- | "Admin";
6473
-
6474
- export type UserDraftRoleEnum =
6475
- | "Borrower"
6476
- | "CoBorrower"
6477
- | "NonBorrower"
6478
- | "LoanOfficer"
6479
- | "LoanProcessor"
6480
- | "LoanOfficerAssistant"
6481
- | "SupportingLoanOfficer"
6482
- | "BuyerAgent"
6483
- | "SellerAgent"
6484
- | "TitleInsuranceAgent"
6485
- | "EscrowAgent"
6486
- | "SettlementAgent"
6487
- | "Admin";
6488
-
6489
- export type UserGroupAccessScopeScopeTypeEnum = "User" | "Branch";
6490
-
6491
- export type UserLoanRoleEnum =
6492
- | "Borrower"
6493
- | "CoBorrower"
6494
- | "NonBorrower"
6495
- | "LoanOfficer"
6496
- | "LoanProcessor"
6497
- | "LoanOfficerAssistant"
6498
- | "SupportingLoanOfficer"
6499
- | "BuyerAgent"
6500
- | "SellerAgent"
6501
- | "TitleInsuranceAgent"
6502
- | "EscrowAgent"
6503
- | "SettlementAgent"
6504
- | "Admin";
6505
-
6506
- export type UserLoanConsentTypeEnum =
6507
- | "Econsent"
6508
- | "CreditAuthorization"
6509
- | "Tcpa";
6510
-
6511
- export type UserLoanConsentLosSyncStatusEnum =
6512
- | "NotStarted"
6513
- | "Failed"
6514
- | "Success";
6515
-
6516
- export type UserSummaryRoleEnum =
6517
- | "Borrower"
6518
- | "LoanOfficer"
6519
- | "Admin"
6520
- | "SuperAdmin"
6521
- | "Realtor"
6522
- | "SettlementAgent"
6523
- | "LoanProcessor"
6524
- | "LoanOfficerAssistant"
6525
- | "SystemAdmin";
6526
-
6527
- export type GetCustomFieldDefinitionsParamsEntityTypeEnum = "Loan";
6528
-
6529
- /** @default "Realtor" */
6530
- export type GetPartnersParamsRoleEnum =
6531
- | "Borrower"
6532
- | "LoanOfficer"
6533
- | "Admin"
6534
- | "SuperAdmin"
6535
- | "Realtor"
6536
- | "SettlementAgent"
6537
- | "LoanProcessor"
6538
- | "LoanOfficerAssistant"
6539
- | "SystemAdmin";
6540
-
6541
- export type GetSamlMetadataParamsSSoIntegrationEnum =
6542
- | "ConsumerConnect"
6543
- | "TheBigPOS"
6544
- | "POSF";
6545
-
6546
- export type GetSamlMetadataParamsEnum =
6547
- | "ConsumerConnect"
6548
- | "TheBigPOS"
6549
- | "POSF";
6550
-
6551
- export type CreateOrReplaceSamlMetadataParamsSSoIntegrationEnum =
6552
- | "ConsumerConnect"
6553
- | "TheBigPOS"
6554
- | "POSF";
6555
-
6556
- export type CreateOrReplaceSamlMetadataParamsEnum =
6557
- | "ConsumerConnect"
6558
- | "TheBigPOS"
6559
- | "POSF";
6560
-
6561
6330
  import type {
6562
6331
  AxiosInstance,
6563
6332
  AxiosRequestConfig,
@@ -6599,12 +6368,14 @@ export interface ApiConfig<SecurityDataType = unknown>
6599
6368
  format?: ResponseType;
6600
6369
  }
6601
6370
 
6602
- export type ContentType =
6603
- | "application/json"
6604
- | "application/vnd.api+json"
6605
- | "multipart/form-data"
6606
- | "application/x-www-form-urlencoded"
6607
- | "text/plain";
6371
+ export enum ContentType {
6372
+ JsonPatch = "application/json-patch+json",
6373
+ Json = "application/json",
6374
+ JsonApi = "application/vnd.api+json",
6375
+ FormData = "multipart/form-data",
6376
+ UrlEncoded = "application/x-www-form-urlencoded",
6377
+ Text = "text/plain",
6378
+ }
6608
6379
 
6609
6380
  export class HttpClient<SecurityDataType = unknown> {
6610
6381
  public instance: AxiosInstance;
@@ -6701,7 +6472,7 @@ export class HttpClient<SecurityDataType = unknown> {
6701
6472
  const responseFormat = format || this.format || undefined;
6702
6473
 
6703
6474
  if (
6704
- type === "multipart/form-data" &&
6475
+ type === ContentType.FormData &&
6705
6476
  body &&
6706
6477
  body !== null &&
6707
6478
  typeof body === "object"
@@ -6710,7 +6481,7 @@ export class HttpClient<SecurityDataType = unknown> {
6710
6481
  }
6711
6482
 
6712
6483
  if (
6713
- type === "text/plain" &&
6484
+ type === ContentType.Text &&
6714
6485
  body &&
6715
6486
  body !== null &&
6716
6487
  typeof body !== "string"
@@ -6734,7 +6505,7 @@ export class HttpClient<SecurityDataType = unknown> {
6734
6505
 
6735
6506
  /**
6736
6507
  * @title The Big POS API
6737
- * @version v2.43.0
6508
+ * @version v2.43.8
6738
6509
  * @termsOfService https://www.thebigpos.com/terms-of-use/
6739
6510
  * @contact Mortgage Automation Technologies <support@thebigpos.com> (https://www.thebigpos.com/terms-of-use/)
6740
6511
  */
@@ -6817,7 +6588,7 @@ export class Api<
6817
6588
  method: "PUT",
6818
6589
  body: data,
6819
6590
  secure: true,
6820
- type: "application/json",
6591
+ type: ContentType.Json,
6821
6592
  format: "json",
6822
6593
  ...params,
6823
6594
  }),
@@ -6861,7 +6632,7 @@ export class Api<
6861
6632
  method: "PUT",
6862
6633
  body: data,
6863
6634
  secure: true,
6864
- type: "application/json",
6635
+ type: ContentType.Json,
6865
6636
  format: "json",
6866
6637
  ...params,
6867
6638
  }),
@@ -6885,7 +6656,7 @@ export class Api<
6885
6656
  method: "POST",
6886
6657
  body: data,
6887
6658
  secure: true,
6888
- type: "application/json",
6659
+ type: ContentType.Json,
6889
6660
  ...params,
6890
6661
  }),
6891
6662
 
@@ -6909,7 +6680,7 @@ export class Api<
6909
6680
  method: "POST",
6910
6681
  body: data,
6911
6682
  secure: true,
6912
- type: "application/json",
6683
+ type: ContentType.Json,
6913
6684
  ...params,
6914
6685
  }),
6915
6686
 
@@ -6949,7 +6720,7 @@ export class Api<
6949
6720
  method: "POST",
6950
6721
  body: data,
6951
6722
  secure: true,
6952
- type: "application/json",
6723
+ type: ContentType.Json,
6953
6724
  format: "json",
6954
6725
  ...params,
6955
6726
  }),
@@ -7025,7 +6796,7 @@ export class Api<
7025
6796
  method: "PUT",
7026
6797
  body: data,
7027
6798
  secure: true,
7028
- type: "application/json",
6799
+ type: ContentType.Json,
7029
6800
  format: "json",
7030
6801
  ...params,
7031
6802
  }),
@@ -7058,7 +6829,7 @@ export class Api<
7058
6829
  query: query,
7059
6830
  body: data,
7060
6831
  secure: true,
7061
- type: "application/json",
6832
+ type: ContentType.Json,
7062
6833
  format: "json",
7063
6834
  ...params,
7064
6835
  }),
@@ -7123,7 +6894,7 @@ export class Api<
7123
6894
  method: "POST",
7124
6895
  body: data,
7125
6896
  secure: true,
7126
- type: "application/json",
6897
+ type: ContentType.Json,
7127
6898
  format: "json",
7128
6899
  ...params,
7129
6900
  }),
@@ -7145,7 +6916,7 @@ export class Api<
7145
6916
  method: "POST",
7146
6917
  body: data,
7147
6918
  secure: true,
7148
- type: "application/json",
6919
+ type: ContentType.Json,
7149
6920
  format: "json",
7150
6921
  ...params,
7151
6922
  }),
@@ -7170,7 +6941,7 @@ export class Api<
7170
6941
  method: "POST",
7171
6942
  body: data,
7172
6943
  secure: true,
7173
- type: "application/json",
6944
+ type: ContentType.Json,
7174
6945
  format: "json",
7175
6946
  ...params,
7176
6947
  }),
@@ -7192,7 +6963,7 @@ export class Api<
7192
6963
  method: "POST",
7193
6964
  body: data,
7194
6965
  secure: true,
7195
- type: "application/json",
6966
+ type: ContentType.Json,
7196
6967
  format: "json",
7197
6968
  ...params,
7198
6969
  }),
@@ -7214,7 +6985,7 @@ export class Api<
7214
6985
  method: "POST",
7215
6986
  body: data,
7216
6987
  secure: true,
7217
- type: "application/json",
6988
+ type: ContentType.Json,
7218
6989
  format: "json",
7219
6990
  ...params,
7220
6991
  }),
@@ -7287,7 +7058,7 @@ export class Api<
7287
7058
  method: "POST",
7288
7059
  body: data,
7289
7060
  secure: true,
7290
- type: "application/json",
7061
+ type: ContentType.Json,
7291
7062
  format: "json",
7292
7063
  ...params,
7293
7064
  }),
@@ -7320,7 +7091,7 @@ export class Api<
7320
7091
  query: query,
7321
7092
  body: data,
7322
7093
  secure: true,
7323
- type: "application/json",
7094
+ type: ContentType.Json,
7324
7095
  format: "json",
7325
7096
  ...params,
7326
7097
  }),
@@ -7365,7 +7136,7 @@ export class Api<
7365
7136
  method: "PUT",
7366
7137
  body: data,
7367
7138
  secure: true,
7368
- type: "application/json",
7139
+ type: ContentType.Json,
7369
7140
  format: "json",
7370
7141
  ...params,
7371
7142
  }),
@@ -7428,7 +7199,7 @@ export class Api<
7428
7199
  method: "POST",
7429
7200
  body: data,
7430
7201
  secure: true,
7431
- type: "application/json",
7202
+ type: ContentType.Json,
7432
7203
  format: "json",
7433
7204
  ...params,
7434
7205
  }),
@@ -7482,7 +7253,7 @@ export class Api<
7482
7253
  query: query,
7483
7254
  body: data,
7484
7255
  secure: true,
7485
- type: "application/json",
7256
+ type: ContentType.Json,
7486
7257
  format: "json",
7487
7258
  ...params,
7488
7259
  }),
@@ -7551,7 +7322,7 @@ export class Api<
7551
7322
  method: "POST",
7552
7323
  body: data,
7553
7324
  secure: true,
7554
- type: "application/json",
7325
+ type: ContentType.Json,
7555
7326
  format: "json",
7556
7327
  ...params,
7557
7328
  }),
@@ -7596,7 +7367,7 @@ export class Api<
7596
7367
  method: "PUT",
7597
7368
  body: data,
7598
7369
  secure: true,
7599
- type: "application/json",
7370
+ type: ContentType.Json,
7600
7371
  format: "json",
7601
7372
  ...params,
7602
7373
  }),
@@ -7657,7 +7428,7 @@ export class Api<
7657
7428
  method: "POST",
7658
7429
  body: data,
7659
7430
  secure: true,
7660
- type: "application/json",
7431
+ type: ContentType.Json,
7661
7432
  format: "json",
7662
7433
  ...params,
7663
7434
  }),
@@ -7751,7 +7522,7 @@ export class Api<
7751
7522
  method: "POST",
7752
7523
  body: data,
7753
7524
  secure: true,
7754
- type: "application/json",
7525
+ type: ContentType.Json,
7755
7526
  format: "json",
7756
7527
  ...params,
7757
7528
  }),
@@ -7784,7 +7555,7 @@ export class Api<
7784
7555
  query: query,
7785
7556
  body: data,
7786
7557
  secure: true,
7787
- type: "application/json",
7558
+ type: ContentType.Json,
7788
7559
  format: "json",
7789
7560
  ...params,
7790
7561
  }),
@@ -7829,7 +7600,7 @@ export class Api<
7829
7600
  method: "PUT",
7830
7601
  body: data,
7831
7602
  secure: true,
7832
- type: "application/json",
7603
+ type: ContentType.Json,
7833
7604
  format: "json",
7834
7605
  ...params,
7835
7606
  }),
@@ -7891,7 +7662,7 @@ export class Api<
7891
7662
  method: "POST",
7892
7663
  body: data,
7893
7664
  secure: true,
7894
- type: "application/json",
7665
+ type: ContentType.Json,
7895
7666
  format: "json",
7896
7667
  ...params,
7897
7668
  }),
@@ -7945,7 +7716,7 @@ export class Api<
7945
7716
  query: query,
7946
7717
  body: data,
7947
7718
  secure: true,
7948
- type: "application/json",
7719
+ type: ContentType.Json,
7949
7720
  format: "json",
7950
7721
  ...params,
7951
7722
  }),
@@ -8000,7 +7771,7 @@ export class Api<
8000
7771
  */
8001
7772
  getCustomFieldDefinitions: (
8002
7773
  query?: {
8003
- entityType?: GetCustomFieldDefinitionsParamsEntityTypeEnum;
7774
+ entityType?: "Loan";
8004
7775
  },
8005
7776
  params: RequestParams = {},
8006
7777
  ) =>
@@ -8034,7 +7805,7 @@ export class Api<
8034
7805
  method: "POST",
8035
7806
  body: data,
8036
7807
  secure: true,
8037
- type: "application/json",
7808
+ type: ContentType.Json,
8038
7809
  format: "json",
8039
7810
  ...params,
8040
7811
  }),
@@ -8083,7 +7854,7 @@ export class Api<
8083
7854
  method: "PUT",
8084
7855
  body: data,
8085
7856
  secure: true,
8086
- type: "application/json",
7857
+ type: ContentType.Json,
8087
7858
  format: "json",
8088
7859
  ...params,
8089
7860
  }),
@@ -8217,7 +7988,7 @@ export class Api<
8217
7988
  method: "PUT",
8218
7989
  body: data,
8219
7990
  secure: true,
8220
- type: "application/json",
7991
+ type: ContentType.Json,
8221
7992
  format: "json",
8222
7993
  ...params,
8223
7994
  }),
@@ -8336,7 +8107,7 @@ export class Api<
8336
8107
  method: "POST",
8337
8108
  body: data,
8338
8109
  secure: true,
8339
- type: "application/json",
8110
+ type: ContentType.Json,
8340
8111
  format: "json",
8341
8112
  ...params,
8342
8113
  }),
@@ -8413,7 +8184,7 @@ export class Api<
8413
8184
  method: "PUT",
8414
8185
  body: data,
8415
8186
  secure: true,
8416
- type: "application/json",
8187
+ type: ContentType.Json,
8417
8188
  format: "json",
8418
8189
  ...params,
8419
8190
  }),
@@ -8500,7 +8271,7 @@ export class Api<
8500
8271
  method: "POST",
8501
8272
  body: data,
8502
8273
  secure: true,
8503
- type: "application/json",
8274
+ type: ContentType.Json,
8504
8275
  format: "json",
8505
8276
  ...params,
8506
8277
  }),
@@ -8549,7 +8320,7 @@ export class Api<
8549
8320
  method: "PUT",
8550
8321
  body: data,
8551
8322
  secure: true,
8552
- type: "application/json",
8323
+ type: ContentType.Json,
8553
8324
  format: "json",
8554
8325
  ...params,
8555
8326
  }),
@@ -8624,7 +8395,7 @@ export class Api<
8624
8395
  method: "POST",
8625
8396
  body: data,
8626
8397
  secure: true,
8627
- type: "application/json",
8398
+ type: ContentType.Json,
8628
8399
  format: "json",
8629
8400
  ...params,
8630
8401
  }),
@@ -8800,7 +8571,7 @@ export class Api<
8800
8571
  method: "POST",
8801
8572
  body: data,
8802
8573
  secure: true,
8803
- type: "application/json",
8574
+ type: ContentType.Json,
8804
8575
  format: "json",
8805
8576
  ...params,
8806
8577
  }),
@@ -8863,7 +8634,7 @@ export class Api<
8863
8634
  method: "POST",
8864
8635
  body: data,
8865
8636
  secure: true,
8866
- type: "multipart/form-data",
8637
+ type: ContentType.FormData,
8867
8638
  format: "json",
8868
8639
  ...params,
8869
8640
  }),
@@ -8904,7 +8675,7 @@ export class Api<
8904
8675
  method: "PUT",
8905
8676
  body: data,
8906
8677
  secure: true,
8907
- type: "application/json",
8678
+ type: ContentType.Json,
8908
8679
  format: "json",
8909
8680
  ...params,
8910
8681
  }),
@@ -8955,7 +8726,7 @@ export class Api<
8955
8726
  query: query,
8956
8727
  body: data,
8957
8728
  secure: true,
8958
- type: "application/json",
8729
+ type: ContentType.Json,
8959
8730
  format: "json",
8960
8731
  ...params,
8961
8732
  }),
@@ -9002,7 +8773,7 @@ export class Api<
9002
8773
  method: "POST",
9003
8774
  body: data,
9004
8775
  secure: true,
9005
- type: "application/json",
8776
+ type: ContentType.Json,
9006
8777
  format: "json",
9007
8778
  ...params,
9008
8779
  }),
@@ -9043,7 +8814,7 @@ export class Api<
9043
8814
  method: "PUT",
9044
8815
  body: data,
9045
8816
  secure: true,
9046
- type: "application/json",
8817
+ type: ContentType.Json,
9047
8818
  format: "json",
9048
8819
  ...params,
9049
8820
  }),
@@ -9109,7 +8880,7 @@ export class Api<
9109
8880
  method: "POST",
9110
8881
  body: data,
9111
8882
  secure: true,
9112
- type: "multipart/form-data",
8883
+ type: ContentType.FormData,
9113
8884
  format: "json",
9114
8885
  ...params,
9115
8886
  }),
@@ -9217,7 +8988,7 @@ export class Api<
9217
8988
  query: query,
9218
8989
  body: data,
9219
8990
  secure: true,
9220
- type: "application/json",
8991
+ type: ContentType.Json,
9221
8992
  format: "json",
9222
8993
  ...params,
9223
8994
  }),
@@ -9261,7 +9032,7 @@ export class Api<
9261
9032
  method: "PUT",
9262
9033
  body: data,
9263
9034
  secure: true,
9264
- type: "application/json",
9035
+ type: ContentType.Json,
9265
9036
  format: "json",
9266
9037
  ...params,
9267
9038
  }),
@@ -9312,7 +9083,7 @@ export class Api<
9312
9083
  query: query,
9313
9084
  body: data,
9314
9085
  secure: true,
9315
- type: "application/json",
9086
+ type: ContentType.Json,
9316
9087
  format: "json",
9317
9088
  ...params,
9318
9089
  }),
@@ -9356,7 +9127,7 @@ export class Api<
9356
9127
  method: "POST",
9357
9128
  body: data,
9358
9129
  secure: true,
9359
- type: "application/json",
9130
+ type: ContentType.Json,
9360
9131
  format: "json",
9361
9132
  ...params,
9362
9133
  }),
@@ -9401,7 +9172,7 @@ export class Api<
9401
9172
  method: "PUT",
9402
9173
  body: data,
9403
9174
  secure: true,
9404
- type: "application/json",
9175
+ type: ContentType.Json,
9405
9176
  format: "json",
9406
9177
  ...params,
9407
9178
  }),
@@ -9489,7 +9260,7 @@ export class Api<
9489
9260
  method: "PATCH",
9490
9261
  body: data,
9491
9262
  secure: true,
9492
- type: "application/json",
9263
+ type: ContentType.JsonPatch,
9493
9264
  format: "json",
9494
9265
  ...params,
9495
9266
  }),
@@ -9510,7 +9281,7 @@ export class Api<
9510
9281
  method: "POST",
9511
9282
  body: data,
9512
9283
  secure: true,
9513
- type: "application/json",
9284
+ type: ContentType.Json,
9514
9285
  format: "json",
9515
9286
  ...params,
9516
9287
  }),
@@ -9542,7 +9313,7 @@ export class Api<
9542
9313
  query: query,
9543
9314
  body: data,
9544
9315
  secure: true,
9545
- type: "application/json",
9316
+ type: ContentType.Json,
9546
9317
  format: "json",
9547
9318
  ...params,
9548
9319
  }),
@@ -9573,7 +9344,7 @@ export class Api<
9573
9344
  query: query,
9574
9345
  body: data,
9575
9346
  secure: true,
9576
- type: "application/json",
9347
+ type: ContentType.Json,
9577
9348
  format: "json",
9578
9349
  ...params,
9579
9350
  }),
@@ -9599,7 +9370,7 @@ export class Api<
9599
9370
  method: "PATCH",
9600
9371
  body: data,
9601
9372
  secure: true,
9602
- type: "application/json",
9373
+ type: ContentType.JsonPatch,
9603
9374
  format: "json",
9604
9375
  ...params,
9605
9376
  }),
@@ -9626,7 +9397,7 @@ export class Api<
9626
9397
  method: "PATCH",
9627
9398
  body: data,
9628
9399
  secure: true,
9629
- type: "application/json",
9400
+ type: ContentType.JsonPatch,
9630
9401
  format: "json",
9631
9402
  ...params,
9632
9403
  }),
@@ -9783,7 +9554,7 @@ export class Api<
9783
9554
  method: "POST",
9784
9555
  body: data,
9785
9556
  secure: true,
9786
- type: "application/json",
9557
+ type: ContentType.Json,
9787
9558
  format: "json",
9788
9559
  ...params,
9789
9560
  }),
@@ -9843,7 +9614,7 @@ export class Api<
9843
9614
  method: "POST",
9844
9615
  body: data,
9845
9616
  secure: true,
9846
- type: "multipart/form-data",
9617
+ type: ContentType.FormData,
9847
9618
  format: "json",
9848
9619
  ...params,
9849
9620
  }),
@@ -9868,7 +9639,7 @@ export class Api<
9868
9639
  method: "PATCH",
9869
9640
  body: data,
9870
9641
  secure: true,
9871
- type: "application/json",
9642
+ type: ContentType.JsonPatch,
9872
9643
  format: "json",
9873
9644
  ...params,
9874
9645
  }),
@@ -9923,7 +9694,7 @@ export class Api<
9923
9694
  method: "POST",
9924
9695
  body: data,
9925
9696
  secure: true,
9926
- type: "multipart/form-data",
9697
+ type: ContentType.FormData,
9927
9698
  format: "json",
9928
9699
  ...params,
9929
9700
  }),
@@ -9948,7 +9719,7 @@ export class Api<
9948
9719
  method: "PATCH",
9949
9720
  body: data,
9950
9721
  secure: true,
9951
- type: "application/json",
9722
+ type: ContentType.JsonPatch,
9952
9723
  format: "json",
9953
9724
  ...params,
9954
9725
  }),
@@ -10022,7 +9793,7 @@ export class Api<
10022
9793
  method: "POST",
10023
9794
  body: data,
10024
9795
  secure: true,
10025
- type: "application/json",
9796
+ type: ContentType.Json,
10026
9797
  format: "json",
10027
9798
  ...params,
10028
9799
  }),
@@ -10085,7 +9856,7 @@ export class Api<
10085
9856
  method: "PUT",
10086
9857
  body: data,
10087
9858
  secure: true,
10088
- type: "application/json",
9859
+ type: ContentType.Json,
10089
9860
  format: "json",
10090
9861
  ...params,
10091
9862
  }),
@@ -10136,7 +9907,7 @@ export class Api<
10136
9907
  query: query,
10137
9908
  body: data,
10138
9909
  secure: true,
10139
- type: "application/json",
9910
+ type: ContentType.Json,
10140
9911
  format: "json",
10141
9912
  ...params,
10142
9913
  }),
@@ -10164,7 +9935,7 @@ export class Api<
10164
9935
  method: "PUT",
10165
9936
  body: data,
10166
9937
  secure: true,
10167
- type: "multipart/form-data",
9938
+ type: ContentType.FormData,
10168
9939
  format: "json",
10169
9940
  ...params,
10170
9941
  }),
@@ -10247,7 +10018,7 @@ export class Api<
10247
10018
  method: "POST",
10248
10019
  body: data,
10249
10020
  secure: true,
10250
- type: "application/json",
10021
+ type: ContentType.Json,
10251
10022
  format: "json",
10252
10023
  ...params,
10253
10024
  }),
@@ -10294,7 +10065,7 @@ export class Api<
10294
10065
  method: "POST",
10295
10066
  body: data,
10296
10067
  secure: true,
10297
- type: "application/json",
10068
+ type: ContentType.Json,
10298
10069
  format: "json",
10299
10070
  ...params,
10300
10071
  }),
@@ -10342,7 +10113,7 @@ export class Api<
10342
10113
  method: "POST",
10343
10114
  body: data,
10344
10115
  secure: true,
10345
- type: "application/json",
10116
+ type: ContentType.Json,
10346
10117
  ...params,
10347
10118
  }),
10348
10119
 
@@ -10407,7 +10178,7 @@ export class Api<
10407
10178
  method: "PUT",
10408
10179
  body: data,
10409
10180
  secure: true,
10410
- type: "application/json",
10181
+ type: ContentType.Json,
10411
10182
  ...params,
10412
10183
  }),
10413
10184
 
@@ -10435,7 +10206,7 @@ export class Api<
10435
10206
  method: "PUT",
10436
10207
  body: data,
10437
10208
  secure: true,
10438
- type: "application/json",
10209
+ type: ContentType.Json,
10439
10210
  ...params,
10440
10211
  }),
10441
10212
 
@@ -10501,7 +10272,7 @@ export class Api<
10501
10272
  method: "POST",
10502
10273
  body: data,
10503
10274
  secure: true,
10504
- type: "application/json",
10275
+ type: ContentType.Json,
10505
10276
  format: "json",
10506
10277
  ...params,
10507
10278
  }),
@@ -10546,7 +10317,7 @@ export class Api<
10546
10317
  method: "POST",
10547
10318
  body: data,
10548
10319
  secure: true,
10549
- type: "application/json",
10320
+ type: ContentType.Json,
10550
10321
  format: "json",
10551
10322
  ...params,
10552
10323
  }),
@@ -10595,7 +10366,7 @@ export class Api<
10595
10366
  method: "PUT",
10596
10367
  body: data,
10597
10368
  secure: true,
10598
- type: "application/json",
10369
+ type: ContentType.Json,
10599
10370
  format: "json",
10600
10371
  ...params,
10601
10372
  }),
@@ -10730,7 +10501,7 @@ export class Api<
10730
10501
  method: "POST",
10731
10502
  body: data,
10732
10503
  secure: true,
10733
- type: "application/json",
10504
+ type: ContentType.Json,
10734
10505
  format: "json",
10735
10506
  ...params,
10736
10507
  }),
@@ -10764,7 +10535,7 @@ export class Api<
10764
10535
  query: query,
10765
10536
  body: data,
10766
10537
  secure: true,
10767
- type: "application/json",
10538
+ type: ContentType.Json,
10768
10539
  format: "json",
10769
10540
  ...params,
10770
10541
  }),
@@ -10794,7 +10565,7 @@ export class Api<
10794
10565
  query: query,
10795
10566
  body: data,
10796
10567
  secure: true,
10797
- type: "application/json",
10568
+ type: ContentType.Json,
10798
10569
  format: "json",
10799
10570
  ...params,
10800
10571
  }),
@@ -10807,7 +10578,7 @@ export class Api<
10807
10578
  * @summary Download By ID
10808
10579
  * @request GET:/api/loans/{loanId}/documents/{documentId}/download
10809
10580
  * @secure
10810
- * @response `200` `Blob` OK
10581
+ * @response `200` `string` OK
10811
10582
  * @response `404` `ProblemDetails` Not Found
10812
10583
  */
10813
10584
  downloadLoanDocument: (
@@ -10815,7 +10586,7 @@ export class Api<
10815
10586
  documentId: string,
10816
10587
  params: RequestParams = {},
10817
10588
  ) =>
10818
- this.request<Blob, ProblemDetails>({
10589
+ this.request<string, ProblemDetails>({
10819
10590
  path: `/api/loans/${loanId}/documents/${documentId}/download`,
10820
10591
  method: "GET",
10821
10592
  secure: true,
@@ -10852,7 +10623,7 @@ export class Api<
10852
10623
  method: "POST",
10853
10624
  body: data,
10854
10625
  secure: true,
10855
- type: "multipart/form-data",
10626
+ type: ContentType.FormData,
10856
10627
  format: "json",
10857
10628
  ...params,
10858
10629
  }),
@@ -10902,7 +10673,7 @@ export class Api<
10902
10673
  method: "POST",
10903
10674
  body: data,
10904
10675
  secure: true,
10905
- type: "application/json",
10676
+ type: ContentType.Json,
10906
10677
  format: "json",
10907
10678
  ...params,
10908
10679
  }),
@@ -10929,7 +10700,7 @@ export class Api<
10929
10700
  method: "POST",
10930
10701
  body: data,
10931
10702
  secure: true,
10932
- type: "application/json",
10703
+ type: ContentType.Json,
10933
10704
  ...params,
10934
10705
  }),
10935
10706
 
@@ -10993,7 +10764,7 @@ export class Api<
10993
10764
  method: "POST",
10994
10765
  body: data,
10995
10766
  secure: true,
10996
- type: "application/json",
10767
+ type: ContentType.Json,
10997
10768
  format: "json",
10998
10769
  ...params,
10999
10770
  }),
@@ -11056,7 +10827,7 @@ export class Api<
11056
10827
  method: "PUT",
11057
10828
  body: data,
11058
10829
  secure: true,
11059
- type: "application/json",
10830
+ type: ContentType.Json,
11060
10831
  format: "json",
11061
10832
  ...params,
11062
10833
  }),
@@ -11107,7 +10878,7 @@ export class Api<
11107
10878
  query: query,
11108
10879
  body: data,
11109
10880
  secure: true,
11110
- type: "application/json",
10881
+ type: ContentType.Json,
11111
10882
  format: "json",
11112
10883
  ...params,
11113
10884
  }),
@@ -11132,7 +10903,7 @@ export class Api<
11132
10903
  method: "PUT",
11133
10904
  body: data,
11134
10905
  secure: true,
11135
- type: "application/json",
10906
+ type: ContentType.Json,
11136
10907
  format: "json",
11137
10908
  ...params,
11138
10909
  }),
@@ -11207,7 +10978,7 @@ export class Api<
11207
10978
  method: "POST",
11208
10979
  body: data,
11209
10980
  secure: true,
11210
- type: "application/json",
10981
+ type: ContentType.Json,
11211
10982
  format: "json",
11212
10983
  ...params,
11213
10984
  }),
@@ -11303,7 +11074,7 @@ export class Api<
11303
11074
  method: "POST",
11304
11075
  body: data,
11305
11076
  secure: true,
11306
- type: "application/json",
11077
+ type: ContentType.Json,
11307
11078
  format: "json",
11308
11079
  ...params,
11309
11080
  }),
@@ -11337,7 +11108,7 @@ export class Api<
11337
11108
  query: query,
11338
11109
  body: data,
11339
11110
  secure: true,
11340
- type: "application/json",
11111
+ type: ContentType.Json,
11341
11112
  format: "json",
11342
11113
  ...params,
11343
11114
  }),
@@ -11425,7 +11196,7 @@ export class Api<
11425
11196
  query: query,
11426
11197
  body: data,
11427
11198
  secure: true,
11428
- type: "application/json",
11199
+ type: ContentType.Json,
11429
11200
  format: "json",
11430
11201
  ...params,
11431
11202
  }),
@@ -11470,7 +11241,7 @@ export class Api<
11470
11241
  method: "POST",
11471
11242
  body: data,
11472
11243
  secure: true,
11473
- type: "application/json",
11244
+ type: ContentType.Json,
11474
11245
  format: "json",
11475
11246
  ...params,
11476
11247
  }),
@@ -11524,7 +11295,7 @@ export class Api<
11524
11295
  query: query,
11525
11296
  body: data,
11526
11297
  secure: true,
11527
- type: "application/json",
11298
+ type: ContentType.Json,
11528
11299
  format: "json",
11529
11300
  ...params,
11530
11301
  }),
@@ -11557,7 +11328,7 @@ export class Api<
11557
11328
  query: query,
11558
11329
  body: data,
11559
11330
  secure: true,
11560
- type: "application/json",
11331
+ type: ContentType.Json,
11561
11332
  format: "json",
11562
11333
  ...params,
11563
11334
  }),
@@ -11603,7 +11374,7 @@ export class Api<
11603
11374
  method: "PUT",
11604
11375
  body: data,
11605
11376
  secure: true,
11606
- type: "application/json",
11377
+ type: ContentType.Json,
11607
11378
  format: "json",
11608
11379
  ...params,
11609
11380
  }),
@@ -11704,7 +11475,7 @@ export class Api<
11704
11475
  method: "POST",
11705
11476
  body: data,
11706
11477
  secure: true,
11707
- type: "application/json",
11478
+ type: ContentType.Json,
11708
11479
  format: "json",
11709
11480
  ...params,
11710
11481
  }),
@@ -11737,7 +11508,7 @@ export class Api<
11737
11508
  query: query,
11738
11509
  body: data,
11739
11510
  secure: true,
11740
- type: "application/json",
11511
+ type: ContentType.Json,
11741
11512
  format: "json",
11742
11513
  ...params,
11743
11514
  }),
@@ -11872,7 +11643,7 @@ export class Api<
11872
11643
  method: "POST",
11873
11644
  body: data,
11874
11645
  secure: true,
11875
- type: "application/json",
11646
+ type: ContentType.JsonPatch,
11876
11647
  format: "json",
11877
11648
  ...params,
11878
11649
  }),
@@ -11908,7 +11679,7 @@ export class Api<
11908
11679
  query: query,
11909
11680
  body: data,
11910
11681
  secure: true,
11911
- type: "application/json",
11682
+ type: ContentType.Json,
11912
11683
  format: "json",
11913
11684
  ...params,
11914
11685
  }),
@@ -11960,7 +11731,7 @@ export class Api<
11960
11731
  method: "POST",
11961
11732
  body: data,
11962
11733
  secure: true,
11963
- type: "application/json",
11734
+ type: ContentType.Json,
11964
11735
  format: "json",
11965
11736
  ...params,
11966
11737
  }),
@@ -11988,7 +11759,7 @@ export class Api<
11988
11759
  method: "PUT",
11989
11760
  body: data,
11990
11761
  secure: true,
11991
- type: "application/json",
11762
+ type: ContentType.Json,
11992
11763
  format: "json",
11993
11764
  ...params,
11994
11765
  }),
@@ -12047,7 +11818,7 @@ export class Api<
12047
11818
  method: "POST",
12048
11819
  body: data,
12049
11820
  secure: true,
12050
- type: "multipart/form-data",
11821
+ type: ContentType.FormData,
12051
11822
  format: "json",
12052
11823
  ...params,
12053
11824
  }),
@@ -12120,7 +11891,7 @@ export class Api<
12120
11891
  method: "POST",
12121
11892
  body: data,
12122
11893
  secure: true,
12123
- type: "application/json",
11894
+ type: ContentType.Json,
12124
11895
  ...params,
12125
11896
  }),
12126
11897
 
@@ -12152,7 +11923,7 @@ export class Api<
12152
11923
  query: query,
12153
11924
  body: data,
12154
11925
  secure: true,
12155
- type: "application/json",
11926
+ type: ContentType.Json,
12156
11927
  format: "json",
12157
11928
  ...params,
12158
11929
  }),
@@ -12177,7 +11948,7 @@ export class Api<
12177
11948
  method: "POST",
12178
11949
  body: data,
12179
11950
  secure: true,
12180
- type: "application/json",
11951
+ type: ContentType.Json,
12181
11952
  format: "json",
12182
11953
  ...params,
12183
11954
  }),
@@ -12264,7 +12035,7 @@ export class Api<
12264
12035
  method: "POST",
12265
12036
  body: data,
12266
12037
  secure: true,
12267
- type: "application/json",
12038
+ type: ContentType.Json,
12268
12039
  format: "json",
12269
12040
  ...params,
12270
12041
  }),
@@ -12290,7 +12061,7 @@ export class Api<
12290
12061
  method: "POST",
12291
12062
  body: data,
12292
12063
  secure: true,
12293
- type: "application/json",
12064
+ type: ContentType.Json,
12294
12065
  format: "json",
12295
12066
  ...params,
12296
12067
  }),
@@ -12317,7 +12088,7 @@ export class Api<
12317
12088
  method: "PUT",
12318
12089
  body: data,
12319
12090
  secure: true,
12320
- type: "application/json",
12091
+ type: ContentType.Json,
12321
12092
  format: "json",
12322
12093
  ...params,
12323
12094
  }),
@@ -12434,7 +12205,7 @@ export class Api<
12434
12205
  method: "POST",
12435
12206
  body: data,
12436
12207
  secure: true,
12437
- type: "application/json",
12208
+ type: ContentType.Json,
12438
12209
  format: "json",
12439
12210
  ...params,
12440
12211
  }),
@@ -12512,7 +12283,7 @@ export class Api<
12512
12283
  query: query,
12513
12284
  body: data,
12514
12285
  secure: true,
12515
- type: "application/json",
12286
+ type: ContentType.Json,
12516
12287
  format: "json",
12517
12288
  ...params,
12518
12289
  }),
@@ -12556,7 +12327,7 @@ export class Api<
12556
12327
  method: "POST",
12557
12328
  body: data,
12558
12329
  secure: true,
12559
- type: "application/json",
12330
+ type: ContentType.Json,
12560
12331
  format: "json",
12561
12332
  ...params,
12562
12333
  }),
@@ -12603,7 +12374,7 @@ export class Api<
12603
12374
  method: "PUT",
12604
12375
  body: data,
12605
12376
  secure: true,
12606
- type: "application/json",
12377
+ type: ContentType.Json,
12607
12378
  format: "json",
12608
12379
  ...params,
12609
12380
  }),
@@ -12649,7 +12420,7 @@ export class Api<
12649
12420
  method: "POST",
12650
12421
  body: data,
12651
12422
  secure: true,
12652
- type: "application/json",
12423
+ type: ContentType.Json,
12653
12424
  format: "json",
12654
12425
  ...params,
12655
12426
  }),
@@ -12674,7 +12445,7 @@ export class Api<
12674
12445
  method: "POST",
12675
12446
  body: data,
12676
12447
  secure: true,
12677
- type: "application/json",
12448
+ type: ContentType.Json,
12678
12449
  format: "json",
12679
12450
  ...params,
12680
12451
  }),
@@ -12699,7 +12470,7 @@ export class Api<
12699
12470
  method: "POST",
12700
12471
  body: data,
12701
12472
  secure: true,
12702
- type: "application/json",
12473
+ type: ContentType.Json,
12703
12474
  format: "json",
12704
12475
  ...params,
12705
12476
  }),
@@ -12724,7 +12495,7 @@ export class Api<
12724
12495
  method: "POST",
12725
12496
  body: data,
12726
12497
  secure: true,
12727
- type: "application/json",
12498
+ type: ContentType.Json,
12728
12499
  format: "json",
12729
12500
  ...params,
12730
12501
  }),
@@ -12749,7 +12520,7 @@ export class Api<
12749
12520
  method: "POST",
12750
12521
  body: data,
12751
12522
  secure: true,
12752
- type: "application/json",
12523
+ type: ContentType.Json,
12753
12524
  format: "json",
12754
12525
  ...params,
12755
12526
  }),
@@ -12774,7 +12545,7 @@ export class Api<
12774
12545
  method: "POST",
12775
12546
  body: data,
12776
12547
  secure: true,
12777
- type: "application/json",
12548
+ type: ContentType.Json,
12778
12549
  ...params,
12779
12550
  }),
12780
12551
 
@@ -12798,7 +12569,7 @@ export class Api<
12798
12569
  method: "POST",
12799
12570
  body: data,
12800
12571
  secure: true,
12801
- type: "application/json",
12572
+ type: ContentType.Json,
12802
12573
  ...params,
12803
12574
  }),
12804
12575
 
@@ -12847,7 +12618,7 @@ export class Api<
12847
12618
  method: "POST",
12848
12619
  body: data,
12849
12620
  secure: true,
12850
- type: "application/json",
12621
+ type: ContentType.Json,
12851
12622
  format: "json",
12852
12623
  ...params,
12853
12624
  }),
@@ -12880,7 +12651,7 @@ export class Api<
12880
12651
  query: query,
12881
12652
  body: data,
12882
12653
  secure: true,
12883
- type: "application/json",
12654
+ type: ContentType.Json,
12884
12655
  format: "json",
12885
12656
  ...params,
12886
12657
  }),
@@ -12925,7 +12696,7 @@ export class Api<
12925
12696
  method: "PUT",
12926
12697
  body: data,
12927
12698
  secure: true,
12928
- type: "application/json",
12699
+ type: ContentType.Json,
12929
12700
  format: "json",
12930
12701
  ...params,
12931
12702
  }),
@@ -13009,7 +12780,7 @@ export class Api<
13009
12780
  method: "POST",
13010
12781
  body: data,
13011
12782
  secure: true,
13012
- type: "application/json",
12783
+ type: ContentType.Json,
13013
12784
  format: "json",
13014
12785
  ...params,
13015
12786
  }),
@@ -13058,7 +12829,7 @@ export class Api<
13058
12829
  method: "PUT",
13059
12830
  body: data,
13060
12831
  secure: true,
13061
- type: "application/json",
12832
+ type: ContentType.Json,
13062
12833
  format: "json",
13063
12834
  ...params,
13064
12835
  }),
@@ -13100,7 +12871,16 @@ export class Api<
13100
12871
  query?: {
13101
12872
  showAll?: boolean;
13102
12873
  /** @default "Realtor" */
13103
- role?: GetPartnersParamsRoleEnum;
12874
+ role?:
12875
+ | "Borrower"
12876
+ | "LoanOfficer"
12877
+ | "Admin"
12878
+ | "SuperAdmin"
12879
+ | "Realtor"
12880
+ | "SettlementAgent"
12881
+ | "LoanProcessor"
12882
+ | "LoanOfficerAssistant"
12883
+ | "SystemAdmin";
13104
12884
  /** @format int32 */
13105
12885
  pageSize?: number;
13106
12886
  /** @format int32 */
@@ -13147,7 +12927,7 @@ export class Api<
13147
12927
  query: query,
13148
12928
  body: data,
13149
12929
  secure: true,
13150
- type: "application/json",
12930
+ type: ContentType.Json,
13151
12931
  format: "json",
13152
12932
  ...params,
13153
12933
  }),
@@ -13192,7 +12972,7 @@ export class Api<
13192
12972
  method: "POST",
13193
12973
  body: data,
13194
12974
  secure: true,
13195
- type: "application/json",
12975
+ type: ContentType.Json,
13196
12976
  format: "json",
13197
12977
  ...params,
13198
12978
  }),
@@ -13246,7 +13026,7 @@ export class Api<
13246
13026
  query: query,
13247
13027
  body: data,
13248
13028
  secure: true,
13249
- type: "application/json",
13029
+ type: ContentType.Json,
13250
13030
  format: "json",
13251
13031
  ...params,
13252
13032
  }),
@@ -13291,7 +13071,7 @@ export class Api<
13291
13071
  method: "POST",
13292
13072
  body: data,
13293
13073
  secure: true,
13294
- type: "application/json",
13074
+ type: ContentType.Json,
13295
13075
  format: "json",
13296
13076
  ...params,
13297
13077
  }),
@@ -13343,7 +13123,7 @@ export class Api<
13343
13123
  method: "POST",
13344
13124
  body: data,
13345
13125
  secure: true,
13346
- type: "application/json",
13126
+ type: ContentType.Json,
13347
13127
  format: "json",
13348
13128
  ...params,
13349
13129
  }),
@@ -13400,7 +13180,7 @@ export class Api<
13400
13180
  query: query,
13401
13181
  body: data,
13402
13182
  secure: true,
13403
- type: "application/json",
13183
+ type: ContentType.Json,
13404
13184
  format: "json",
13405
13185
  ...params,
13406
13186
  }),
@@ -13436,7 +13216,7 @@ export class Api<
13436
13216
  * @response `404` `ProblemDetails` Not Found
13437
13217
  */
13438
13218
  getSamlMetadata: (
13439
- sSoIntegration: GetSamlMetadataParamsEnum,
13219
+ sSoIntegration: "ConsumerConnect" | "TheBigPOS" | "POSF",
13440
13220
  ssoIntegration: string,
13441
13221
  params: RequestParams = {},
13442
13222
  ) =>
@@ -13458,7 +13238,7 @@ export class Api<
13458
13238
  * @response `200` `File` OK
13459
13239
  */
13460
13240
  createOrReplaceSamlMetadata: (
13461
- sSoIntegration: CreateOrReplaceSamlMetadataParamsEnum,
13241
+ sSoIntegration: "ConsumerConnect" | "TheBigPOS" | "POSF",
13462
13242
  ssoIntegration: string,
13463
13243
  params: RequestParams = {},
13464
13244
  ) =>
@@ -13583,7 +13363,7 @@ export class Api<
13583
13363
  method: "POST",
13584
13364
  body: data,
13585
13365
  secure: true,
13586
- type: "application/json",
13366
+ type: ContentType.Json,
13587
13367
  format: "json",
13588
13368
  ...params,
13589
13369
  }),
@@ -13631,7 +13411,7 @@ export class Api<
13631
13411
  method: "POST",
13632
13412
  body: data,
13633
13413
  secure: true,
13634
- type: "application/json",
13414
+ type: ContentType.Json,
13635
13415
  format: "json",
13636
13416
  ...params,
13637
13417
  }),
@@ -13683,7 +13463,7 @@ export class Api<
13683
13463
  method: "POST",
13684
13464
  body: data,
13685
13465
  secure: true,
13686
- type: "application/json",
13466
+ type: ContentType.Json,
13687
13467
  format: "json",
13688
13468
  ...params,
13689
13469
  }),
@@ -13725,7 +13505,7 @@ export class Api<
13725
13505
  method: "PUT",
13726
13506
  body: data,
13727
13507
  secure: true,
13728
- type: "application/json",
13508
+ type: ContentType.Json,
13729
13509
  format: "json",
13730
13510
  ...params,
13731
13511
  }),
@@ -13777,7 +13557,7 @@ export class Api<
13777
13557
  query: query,
13778
13558
  body: data,
13779
13559
  secure: true,
13780
- type: "application/json",
13560
+ type: ContentType.Json,
13781
13561
  format: "json",
13782
13562
  ...params,
13783
13563
  }),
@@ -13800,7 +13580,7 @@ export class Api<
13800
13580
  method: "POST",
13801
13581
  body: data,
13802
13582
  secure: true,
13803
- type: "application/json",
13583
+ type: ContentType.Json,
13804
13584
  ...params,
13805
13585
  }),
13806
13586
 
@@ -13833,7 +13613,7 @@ export class Api<
13833
13613
  query: query,
13834
13614
  body: data,
13835
13615
  secure: true,
13836
- type: "application/json",
13616
+ type: ContentType.Json,
13837
13617
  format: "json",
13838
13618
  ...params,
13839
13619
  }),
@@ -13877,7 +13657,7 @@ export class Api<
13877
13657
  method: "POST",
13878
13658
  body: data,
13879
13659
  secure: true,
13880
- type: "application/json",
13660
+ type: ContentType.Json,
13881
13661
  format: "json",
13882
13662
  ...params,
13883
13663
  }),
@@ -13901,7 +13681,7 @@ export class Api<
13901
13681
  method: "PUT",
13902
13682
  body: data,
13903
13683
  secure: true,
13904
- type: "application/json",
13684
+ type: ContentType.Json,
13905
13685
  format: "json",
13906
13686
  ...params,
13907
13687
  }),
@@ -13944,7 +13724,7 @@ export class Api<
13944
13724
  method: "POST",
13945
13725
  body: data,
13946
13726
  secure: true,
13947
- type: "application/json",
13727
+ type: ContentType.Json,
13948
13728
  format: "json",
13949
13729
  ...params,
13950
13730
  }),
@@ -13996,7 +13776,7 @@ export class Api<
13996
13776
  query: query,
13997
13777
  body: data,
13998
13778
  secure: true,
13999
- type: "application/json",
13779
+ type: ContentType.Json,
14000
13780
  format: "json",
14001
13781
  ...params,
14002
13782
  }),
@@ -14170,7 +13950,7 @@ export class Api<
14170
13950
  method: "POST",
14171
13951
  body: data,
14172
13952
  secure: true,
14173
- type: "application/json",
13953
+ type: ContentType.Json,
14174
13954
  format: "json",
14175
13955
  ...params,
14176
13956
  }),
@@ -14269,7 +14049,7 @@ export class Api<
14269
14049
  method: "POST",
14270
14050
  body: data,
14271
14051
  secure: true,
14272
- type: "application/json",
14052
+ type: ContentType.Json,
14273
14053
  format: "json",
14274
14054
  ...params,
14275
14055
  }),
@@ -14335,7 +14115,7 @@ export class Api<
14335
14115
  method: "POST",
14336
14116
  body: data,
14337
14117
  secure: true,
14338
- type: "application/json",
14118
+ type: ContentType.Json,
14339
14119
  format: "json",
14340
14120
  ...params,
14341
14121
  }),
@@ -14406,7 +14186,7 @@ export class Api<
14406
14186
  query: query,
14407
14187
  body: data,
14408
14188
  secure: true,
14409
- type: "application/json",
14189
+ type: ContentType.Json,
14410
14190
  format: "json",
14411
14191
  ...params,
14412
14192
  }),
@@ -14503,7 +14283,7 @@ export class Api<
14503
14283
  method: "PUT",
14504
14284
  body: data,
14505
14285
  secure: true,
14506
- type: "application/json",
14286
+ type: ContentType.Json,
14507
14287
  format: "json",
14508
14288
  ...params,
14509
14289
  }),
@@ -14545,7 +14325,7 @@ export class Api<
14545
14325
  method: "POST",
14546
14326
  body: data,
14547
14327
  secure: true,
14548
- type: "application/json",
14328
+ type: ContentType.Json,
14549
14329
  format: "json",
14550
14330
  ...params,
14551
14331
  }),
@@ -14571,7 +14351,7 @@ export class Api<
14571
14351
  method: "POST",
14572
14352
  body: data,
14573
14353
  secure: true,
14574
- type: "application/json",
14354
+ type: ContentType.Json,
14575
14355
  ...params,
14576
14356
  }),
14577
14357
 
@@ -14596,7 +14376,7 @@ export class Api<
14596
14376
  method: "POST",
14597
14377
  body: data,
14598
14378
  secure: true,
14599
- type: "application/json",
14379
+ type: ContentType.Json,
14600
14380
  ...params,
14601
14381
  }),
14602
14382
 
@@ -14682,7 +14462,7 @@ export class Api<
14682
14462
  method: "POST",
14683
14463
  body: data,
14684
14464
  secure: true,
14685
- type: "application/json",
14465
+ type: ContentType.Json,
14686
14466
  ...params,
14687
14467
  }),
14688
14468
 
@@ -14722,7 +14502,7 @@ export class Api<
14722
14502
  method: "POST",
14723
14503
  body: data,
14724
14504
  secure: true,
14725
- type: "application/json",
14505
+ type: ContentType.Json,
14726
14506
  ...params,
14727
14507
  }),
14728
14508
 
@@ -14805,7 +14585,7 @@ export class Api<
14805
14585
  method: "POST",
14806
14586
  body: data,
14807
14587
  secure: true,
14808
- type: "application/json",
14588
+ type: ContentType.Json,
14809
14589
  ...params,
14810
14590
  }),
14811
14591
 
@@ -14897,7 +14677,7 @@ export class Api<
14897
14677
  method: "POST",
14898
14678
  body: data,
14899
14679
  secure: true,
14900
- type: "application/json",
14680
+ type: ContentType.Json,
14901
14681
  format: "json",
14902
14682
  ...params,
14903
14683
  }),
@@ -14930,7 +14710,7 @@ export class Api<
14930
14710
  query: query,
14931
14711
  body: data,
14932
14712
  secure: true,
14933
- type: "application/json",
14713
+ type: ContentType.Json,
14934
14714
  format: "json",
14935
14715
  ...params,
14936
14716
  }),
@@ -14951,7 +14731,7 @@ export class Api<
14951
14731
  method: "POST",
14952
14732
  body: data,
14953
14733
  secure: true,
14954
- type: "application/json",
14734
+ type: ContentType.Json,
14955
14735
  format: "json",
14956
14736
  ...params,
14957
14737
  }),
@@ -14973,7 +14753,7 @@ export class Api<
14973
14753
  method: "POST",
14974
14754
  body: data,
14975
14755
  secure: true,
14976
- type: "application/json",
14756
+ type: ContentType.Json,
14977
14757
  format: "json",
14978
14758
  ...params,
14979
14759
  }),
@@ -14999,7 +14779,7 @@ export class Api<
14999
14779
  method: "PUT",
15000
14780
  body: data,
15001
14781
  secure: true,
15002
- type: "application/json",
14782
+ type: ContentType.Json,
15003
14783
  format: "json",
15004
14784
  ...params,
15005
14785
  }),
@@ -15065,7 +14845,7 @@ export class Api<
15065
14845
  method: "POST",
15066
14846
  body: data,
15067
14847
  secure: true,
15068
- type: "application/json",
14848
+ type: ContentType.Json,
15069
14849
  ...params,
15070
14850
  }),
15071
14851
 
@@ -15086,7 +14866,7 @@ export class Api<
15086
14866
  method: "POST",
15087
14867
  body: data,
15088
14868
  secure: true,
15089
- type: "application/json",
14869
+ type: ContentType.Json,
15090
14870
  ...params,
15091
14871
  }),
15092
14872
 
@@ -15111,7 +14891,7 @@ export class Api<
15111
14891
  method: "POST",
15112
14892
  body: data,
15113
14893
  secure: true,
15114
- type: "application/json",
14894
+ type: ContentType.Json,
15115
14895
  ...params,
15116
14896
  }),
15117
14897
 
@@ -15135,7 +14915,7 @@ export class Api<
15135
14915
  method: "POST",
15136
14916
  body: data,
15137
14917
  secure: true,
15138
- type: "application/json",
14918
+ type: ContentType.Json,
15139
14919
  ...params,
15140
14920
  }),
15141
14921
 
@@ -15178,7 +14958,7 @@ export class Api<
15178
14958
  method: "PUT",
15179
14959
  body: data,
15180
14960
  secure: true,
15181
- type: "application/json",
14961
+ type: ContentType.Json,
15182
14962
  ...params,
15183
14963
  }),
15184
14964
 
@@ -15218,7 +14998,7 @@ export class Api<
15218
14998
  method: "PUT",
15219
14999
  body: data,
15220
15000
  secure: true,
15221
- type: "application/json",
15001
+ type: ContentType.Json,
15222
15002
  format: "json",
15223
15003
  ...params,
15224
15004
  }),
@@ -15242,7 +15022,7 @@ export class Api<
15242
15022
  method: "PUT",
15243
15023
  body: data,
15244
15024
  secure: true,
15245
- type: "application/json",
15025
+ type: ContentType.Json,
15246
15026
  format: "json",
15247
15027
  ...params,
15248
15028
  }),
@@ -15319,7 +15099,7 @@ export class Api<
15319
15099
  method: "POST",
15320
15100
  body: data,
15321
15101
  secure: true,
15322
- type: "application/json",
15102
+ type: ContentType.Json,
15323
15103
  ...params,
15324
15104
  }),
15325
15105
 
@@ -15339,7 +15119,7 @@ export class Api<
15339
15119
  method: "POST",
15340
15120
  body: data,
15341
15121
  secure: true,
15342
- type: "application/json",
15122
+ type: ContentType.Json,
15343
15123
  format: "json",
15344
15124
  ...params,
15345
15125
  }),