@matech/thebigpos-sdk 2.46.8-aibi-rc1 → 2.47.1-rc0

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
@@ -30,6 +30,8 @@ export type TaskStatus =
30
30
  | "Rejected"
31
31
  | "Unknown";
32
32
 
33
+ export type SiteTileLocation = "HomePage" | "Dashboard";
34
+
33
35
  export type SiteConfigurationType =
34
36
  | "None"
35
37
  | "Account"
@@ -378,6 +380,8 @@ export type LoanAccountAssetType =
378
380
 
379
381
  export type LoanAccessScopeType = "User" | "Branch";
380
382
 
383
+ export type LinkTarget = "Self" | "Blank";
384
+
381
385
  export type LOSStatus =
382
386
  | "Unknown"
383
387
  | "Pending"
@@ -521,8 +525,6 @@ export type AiQueryTemplateName =
521
525
  | "TaskStatusBreakdown"
522
526
  | "ConsentSyncHealth";
523
527
 
524
- export type AiPromptScope = "General" | "LoanSpecific";
525
-
526
528
  export type AiPromptCategory =
527
529
  | "DocumentAnalysis"
528
530
  | "DataQuery"
@@ -580,12 +582,7 @@ export type AiAuditEventType =
580
582
  | "IntentParseFailed"
581
583
  | "LoanSearchTermDiscarded"
582
584
  | "CanonicalFieldsSelected"
583
- | "LoanAccessDenied"
584
- | "AgentModelCall"
585
- | "AgentToolCallRequested"
586
- | "AgentToolCallCompleted"
587
- | "AgentToolCallFailed"
588
- | "AgentLoopLimitReached";
585
+ | "LoanAccessDenied";
589
586
 
590
587
  export type AddressFamily =
591
588
  | "Unspecified"
@@ -674,7 +671,7 @@ export interface AccountBilling {
674
671
  }
675
672
 
676
673
  export interface AccountBillingRequest {
677
- billingType: "ClosedLoan" | "LoanOfficer";
674
+ billingType: AccountBillingRequestBillingTypeEnum;
678
675
  /** @format double */
679
676
  contractedRate: number;
680
677
  }
@@ -722,7 +719,7 @@ export interface Action {
722
719
  comments?: string | null;
723
720
  /** @format uuid */
724
721
  siteConfigurationID: string;
725
- applicationSettings?: any;
722
+ applicationSettings?: any | null;
726
723
  surveysToken?: string | null;
727
724
  }
728
725
 
@@ -913,7 +910,6 @@ export interface AiAdminSettings {
913
910
  requestTimeoutSeconds: number;
914
911
  /** @format int32 */
915
912
  defaultTokenLimit: number;
916
- useAgentLoop: boolean;
917
913
  bedrockRegion: string;
918
914
  }
919
915
 
@@ -929,7 +925,6 @@ export interface AiAdminSettingsRequest {
929
925
  requestTimeoutSeconds?: number | null;
930
926
  /** @format int32 */
931
927
  defaultTokenLimit?: number | null;
932
- useAgentLoop?: boolean | null;
933
928
  }
934
929
 
935
930
  export interface AiAdminStats {
@@ -961,35 +956,7 @@ export interface AiAuditLog {
961
956
  conversationId?: string | null;
962
957
  /** @format uuid */
963
958
  messageId?: string | null;
964
- eventType:
965
- | "Error"
966
- | "GuardrailBlockedPre"
967
- | "GuardrailPassedPre"
968
- | "IntentClassified"
969
- | "LoanResolvedFromMessage"
970
- | "DocumentNotFound"
971
- | "GuardrailBlockedPost"
972
- | "GuardrailPassedPost"
973
- | "DocumentAnalyzed"
974
- | "DocumentList"
975
- | "DocumentResolutionAmbiguous"
976
- | "ResponseGenerated"
977
- | "ParametersExtracted"
978
- | "QueryExecuted"
979
- | "LoanContextNotFound"
980
- | "LoanContextLoaded"
981
- | "GuardrailBlockedBedrock"
982
- | "PromptMatched"
983
- | "QueryCondensed"
984
- | "IntentParseFailed"
985
- | "LoanSearchTermDiscarded"
986
- | "CanonicalFieldsSelected"
987
- | "LoanAccessDenied"
988
- | "AgentModelCall"
989
- | "AgentToolCallRequested"
990
- | "AgentToolCallCompleted"
991
- | "AgentToolCallFailed"
992
- | "AgentLoopLimitReached";
959
+ eventType: AiAuditLogEventTypeEnum;
993
960
  modelId?: string | null;
994
961
  /** @format int32 */
995
962
  inputTokens?: number | null;
@@ -1002,7 +969,7 @@ export interface AiAuditLog {
1002
969
  guardrailCategory?: string | null;
1003
970
  rawRequest?: string | null;
1004
971
  rawResponse?: string | null;
1005
- details?: any;
972
+ details?: any | null;
1006
973
  /** @format date-time */
1007
974
  createdAt: string;
1008
975
  }
@@ -1071,18 +1038,7 @@ export interface AiChatMessagePaginated {
1071
1038
  }
1072
1039
 
1073
1040
  export interface AiChatMetadata {
1074
- intent:
1075
- | "Greeting"
1076
- | "Invalid"
1077
- | "Relevant"
1078
- | "LoanSpecific"
1079
- | "DocumentList"
1080
- | "GeneralKnowledge"
1081
- | "Blocked"
1082
- | "Action"
1083
- | "ConversationMeta"
1084
- | "Capabilities"
1085
- | "UsageReport";
1041
+ intent: AiChatMetadataIntentEnum;
1086
1042
  fieldsAccessed: string[];
1087
1043
  /** @format int64 */
1088
1044
  queryTimeMs: number;
@@ -1110,7 +1066,7 @@ export interface AiChatRequest {
1110
1066
  }
1111
1067
 
1112
1068
  export interface AiChatStructuredData {
1113
- type: "Table" | "DocumentAnalysis" | "DocumentList" | "GeneratedDocument";
1069
+ type: AiChatStructuredDataTypeEnum;
1114
1070
  displayHint?: AiDisplayHint | null;
1115
1071
  detectedDocumentType?: string | null;
1116
1072
  columns: string[];
@@ -1195,7 +1151,7 @@ export interface AiGuardrail {
1195
1151
  /** @format uuid */
1196
1152
  id: string;
1197
1153
  name: string;
1198
- category: "ContentSafety" | "PromptInjection" | "Privacy" | "Legal";
1154
+ category: AiGuardrailCategoryEnum;
1199
1155
  description?: string | null;
1200
1156
  keywords: string[];
1201
1157
  responseTemplate: string;
@@ -1230,10 +1186,6 @@ export interface AiPrompt {
1230
1186
  bedrockModelId?: string | null;
1231
1187
  requiredDataSources?: string[] | null;
1232
1188
  outputType?: AiOutputType | null;
1233
- scope?: AiPromptScope | null;
1234
- inputHint?: string | null;
1235
- agentSystemPrompt?: string | null;
1236
- tools?: AiPromptTool[] | null;
1237
1189
  hasAccountOverride: boolean;
1238
1190
  /** @format date-time */
1239
1191
  createdAt: string;
@@ -1257,16 +1209,6 @@ export interface AiPromptSummary {
1257
1209
  bedrockModelId?: string | null;
1258
1210
  requiredDataSources?: string[] | null;
1259
1211
  outputType?: AiOutputType | null;
1260
- scope?: AiPromptScope | null;
1261
- inputHint?: string | null;
1262
- }
1263
-
1264
- export interface AiPromptTool {
1265
- toolName: string;
1266
- }
1267
-
1268
- export interface AiPromptToolInput {
1269
- toolName: string;
1270
1212
  }
1271
1213
 
1272
1214
  export interface AiTokenBudgetStatus {
@@ -1314,12 +1256,6 @@ export interface AiTokenUsageWindowPaginated {
1314
1256
  count: number;
1315
1257
  }
1316
1258
 
1317
- export interface AiToolCatalogItem {
1318
- toolName: string;
1319
- displayName: string;
1320
- description: string;
1321
- }
1322
-
1323
1259
  export interface AiUrlSource {
1324
1260
  /** @format uuid */
1325
1261
  id: string;
@@ -1327,8 +1263,8 @@ export interface AiUrlSource {
1327
1263
  name: string;
1328
1264
  url: string;
1329
1265
  description?: string | null;
1330
- category: "Regulatory" | "Guidelines" | "MarketData" | "Custom";
1331
- scope: "FullDomain" | "SpecificPath";
1266
+ category: AiUrlSourceCategoryEnum;
1267
+ scope: AiUrlSourceScopeEnum;
1332
1268
  isActive: boolean;
1333
1269
  isDefault: boolean;
1334
1270
  hasAccountOverride: boolean;
@@ -1441,21 +1377,14 @@ export interface AuditLogEntry {
1441
1377
  /** @format uuid */
1442
1378
  id: string;
1443
1379
  entityType: string;
1444
- changeType:
1445
- | "Created"
1446
- | "Modified"
1447
- | "SoftDeleted"
1448
- | "HardDeleted"
1449
- | "Restored"
1450
- | "Deactivated"
1451
- | "Reactivated";
1380
+ changeType: AuditLogEntryChangeTypeEnum;
1452
1381
  /** @format uuid */
1453
1382
  entityId: string;
1454
1383
  performedBy?: AuditLogUser | null;
1455
1384
  rootEntityType?: string | null;
1456
1385
  /** @format uuid */
1457
1386
  rootEntityId?: string | null;
1458
- changes?: any;
1387
+ changes?: any | null;
1459
1388
  /** @format date-time */
1460
1389
  createdAt: string;
1461
1390
  }
@@ -1500,20 +1429,7 @@ export interface BorrowerCount {
1500
1429
  firstName: string;
1501
1430
  lastName: string;
1502
1431
  email: string;
1503
- role:
1504
- | "Borrower"
1505
- | "CoBorrower"
1506
- | "NonBorrower"
1507
- | "LoanOfficer"
1508
- | "LoanProcessor"
1509
- | "LoanOfficerAssistant"
1510
- | "SupportingLoanOfficer"
1511
- | "BuyerAgent"
1512
- | "SellerAgent"
1513
- | "TitleInsuranceAgent"
1514
- | "EscrowAgent"
1515
- | "SettlementAgent"
1516
- | "Admin";
1432
+ role: BorrowerCountRoleEnum;
1517
1433
  /** @format int32 */
1518
1434
  count: number;
1519
1435
  }
@@ -1524,20 +1440,7 @@ export interface BorrowerIdentity {
1524
1440
  firstName: string;
1525
1441
  lastName: string;
1526
1442
  email: string;
1527
- role:
1528
- | "Borrower"
1529
- | "CoBorrower"
1530
- | "NonBorrower"
1531
- | "LoanOfficer"
1532
- | "LoanProcessor"
1533
- | "LoanOfficerAssistant"
1534
- | "SupportingLoanOfficer"
1535
- | "BuyerAgent"
1536
- | "SellerAgent"
1537
- | "TitleInsuranceAgent"
1538
- | "EscrowAgent"
1539
- | "SettlementAgent"
1540
- | "Admin";
1443
+ role: BorrowerIdentityRoleEnum;
1541
1444
  }
1542
1445
 
1543
1446
  export interface BorrowersNotUsingPosSummary {
@@ -1799,7 +1702,7 @@ export interface CorporateSearchCriteria {
1799
1702
  }
1800
1703
 
1801
1704
  export interface CreateAccessScopeRequest {
1802
- scopeType: "User" | "Branch";
1705
+ scopeType: CreateAccessScopeRequestScopeTypeEnum;
1803
1706
  /** @format uuid */
1804
1707
  userId?: string | null;
1805
1708
  /** @format uuid */
@@ -1818,7 +1721,7 @@ export interface CreateAccountRequest {
1818
1721
  /** @format int64 */
1819
1722
  nlmsid: number;
1820
1723
  settings: AccountSettingsRequest;
1821
- environment: "Development" | "Staging" | "UAT" | "Production";
1724
+ environment: CreateAccountRequestEnvironmentEnum;
1822
1725
  losIntegration: LOSIntegration;
1823
1726
  billingSettings: AccountBillingRequest;
1824
1727
  }
@@ -1834,7 +1737,7 @@ export interface CreateAiCanonicalFieldRequest {
1834
1737
 
1835
1738
  export interface CreateAiGuardrailRequest {
1836
1739
  name: string;
1837
- category: "ContentSafety" | "PromptInjection" | "Privacy" | "Legal";
1740
+ category: CreateAiGuardrailRequestCategoryEnum;
1838
1741
  description?: string | null;
1839
1742
  keywords: string[];
1840
1743
  responseTemplate: string;
@@ -1862,8 +1765,8 @@ export interface CreateAiUrlSourceRequest {
1862
1765
  name: string;
1863
1766
  url: string;
1864
1767
  description?: string | null;
1865
- category: "Regulatory" | "Guidelines" | "MarketData" | "Custom";
1866
- scope: "FullDomain" | "SpecificPath";
1768
+ category: CreateAiUrlSourceRequestCategoryEnum;
1769
+ scope: CreateAiUrlSourceRequestScopeEnum;
1867
1770
  }
1868
1771
 
1869
1772
  export interface CreateBranchRequest {
@@ -1888,15 +1791,8 @@ export interface CreateCustomFieldDefinitionRequest {
1888
1791
  name: string;
1889
1792
  defaultValue?: string | null;
1890
1793
  regexPattern?: string | null;
1891
- dataType:
1892
- | "String"
1893
- | "Number"
1894
- | "Decimal"
1895
- | "Boolean"
1896
- | "Date"
1897
- | "SingleSelect"
1898
- | "MultiSelect";
1899
- entityType: "Loan";
1794
+ dataType: CreateCustomFieldDefinitionRequestDataTypeEnum;
1795
+ entityType: CreateCustomFieldDefinitionRequestEntityTypeEnum;
1900
1796
  options?: CustomFieldOptionRequest[] | null;
1901
1797
  permissions?: CustomFieldPermissionRequest[] | null;
1902
1798
  }
@@ -1913,20 +1809,7 @@ export interface CreateDocumentTemplateRequest {
1913
1809
  export interface CreateGroupMemberRequest {
1914
1810
  /** @format uuid */
1915
1811
  userId: string;
1916
- loanRole:
1917
- | "Borrower"
1918
- | "CoBorrower"
1919
- | "NonBorrower"
1920
- | "LoanOfficer"
1921
- | "LoanProcessor"
1922
- | "LoanOfficerAssistant"
1923
- | "SupportingLoanOfficer"
1924
- | "BuyerAgent"
1925
- | "SellerAgent"
1926
- | "TitleInsuranceAgent"
1927
- | "EscrowAgent"
1928
- | "SettlementAgent"
1929
- | "Admin";
1812
+ loanRole: CreateGroupMemberRequestLoanRoleEnum;
1930
1813
  }
1931
1814
 
1932
1815
  export interface CreateInviteRequest {
@@ -1935,7 +1818,7 @@ export interface CreateInviteRequest {
1935
1818
  emailAddress: string;
1936
1819
  phoneNumber?: string | null;
1937
1820
  /** @deprecated */
1938
- relationship: "NotApplicable" | "Spouse" | "NonSpouse";
1821
+ relationship: CreateInviteRequestRelationshipEnum;
1939
1822
  loanID: string;
1940
1823
  route?: string | null;
1941
1824
  /** @format uuid */
@@ -1957,7 +1840,7 @@ export interface CreateLoanImportRequest {
1957
1840
  endDate: string;
1958
1841
  /** @format date-time */
1959
1842
  startDate: string;
1960
- importMode: "All" | "NewOnly" | "UpdateOnly";
1843
+ importMode: CreateLoanImportRequestImportModeEnum;
1961
1844
  }
1962
1845
 
1963
1846
  export interface CreateSession {
@@ -1979,20 +1862,7 @@ export interface CreateUserDeviceRequest {
1979
1862
  }
1980
1863
 
1981
1864
  export interface CreateUserDraft {
1982
- loanRole:
1983
- | "Borrower"
1984
- | "CoBorrower"
1985
- | "NonBorrower"
1986
- | "LoanOfficer"
1987
- | "LoanProcessor"
1988
- | "LoanOfficerAssistant"
1989
- | "SupportingLoanOfficer"
1990
- | "BuyerAgent"
1991
- | "SellerAgent"
1992
- | "TitleInsuranceAgent"
1993
- | "EscrowAgent"
1994
- | "SettlementAgent"
1995
- | "Admin";
1865
+ loanRole: CreateUserDraftLoanRoleEnum;
1996
1866
  }
1997
1867
 
1998
1868
  export interface CreateUserGroupRequest {
@@ -2060,15 +1930,8 @@ export interface CustomFieldDefinition {
2060
1930
  name: string;
2061
1931
  defaultValue?: string | null;
2062
1932
  regexPattern?: string | null;
2063
- dataType:
2064
- | "String"
2065
- | "Number"
2066
- | "Decimal"
2067
- | "Boolean"
2068
- | "Date"
2069
- | "SingleSelect"
2070
- | "MultiSelect";
2071
- entityType: "Loan";
1933
+ dataType: CustomFieldDefinitionDataTypeEnum;
1934
+ entityType: CustomFieldDefinitionEntityTypeEnum;
2072
1935
  options: CustomFieldOption[];
2073
1936
  permissions: CustomFieldPermission[];
2074
1937
  encompassMapping?: EncompassMapping | null;
@@ -2083,14 +1946,7 @@ export interface CustomFieldEntry {
2083
1946
  displayOrder: number;
2084
1947
  name: string;
2085
1948
  value: string;
2086
- dataType:
2087
- | "String"
2088
- | "Number"
2089
- | "Decimal"
2090
- | "Boolean"
2091
- | "Date"
2092
- | "SingleSelect"
2093
- | "MultiSelect";
1949
+ dataType: CustomFieldEntryDataTypeEnum;
2094
1950
  }
2095
1951
 
2096
1952
  export interface CustomFieldOption {
@@ -2110,31 +1966,13 @@ export interface CustomFieldOptionRequest {
2110
1966
  export interface CustomFieldPermission {
2111
1967
  /** @format uuid */
2112
1968
  id: string;
2113
- role:
2114
- | "Borrower"
2115
- | "LoanOfficer"
2116
- | "Admin"
2117
- | "SuperAdmin"
2118
- | "Realtor"
2119
- | "SettlementAgent"
2120
- | "LoanProcessor"
2121
- | "LoanOfficerAssistant"
2122
- | "SystemAdmin";
2123
- accessLevel: "NoAccess" | "ReadOnly" | "ReadWrite";
1969
+ role: CustomFieldPermissionRoleEnum;
1970
+ accessLevel: CustomFieldPermissionAccessLevelEnum;
2124
1971
  }
2125
1972
 
2126
1973
  export interface CustomFieldPermissionRequest {
2127
- role:
2128
- | "Borrower"
2129
- | "LoanOfficer"
2130
- | "Admin"
2131
- | "SuperAdmin"
2132
- | "Realtor"
2133
- | "SettlementAgent"
2134
- | "LoanProcessor"
2135
- | "LoanOfficerAssistant"
2136
- | "SystemAdmin";
2137
- accessLevel: "NoAccess" | "ReadOnly" | "ReadWrite";
1974
+ role: CustomFieldPermissionRequestRoleEnum;
1975
+ accessLevel: CustomFieldPermissionRequestAccessLevelEnum;
2138
1976
  }
2139
1977
 
2140
1978
  export interface CustomFieldValue {
@@ -2146,14 +1984,7 @@ export interface CustomFieldValue {
2146
1984
  customFieldDefinitionID: string;
2147
1985
  value: string;
2148
1986
  definitionName: string;
2149
- dataType:
2150
- | "String"
2151
- | "Number"
2152
- | "Decimal"
2153
- | "Boolean"
2154
- | "Date"
2155
- | "SingleSelect"
2156
- | "MultiSelect";
1987
+ dataType: CustomFieldValueDataTypeEnum;
2157
1988
  }
2158
1989
 
2159
1990
  export interface DetailedUser {
@@ -2397,7 +2228,7 @@ export interface Draft {
2397
2228
  siteConfiguration: SiteConfigurationReduced;
2398
2229
  /** @format uuid */
2399
2230
  loanID?: string | null;
2400
- type: "NewLoan" | "EditLoan";
2231
+ type: DraftTypeEnum;
2401
2232
  isCoBorrower: boolean;
2402
2233
  }
2403
2234
 
@@ -2416,7 +2247,7 @@ export interface DraftContent {
2416
2247
  siteConfiguration: SiteConfigurationReduced;
2417
2248
  /** @format uuid */
2418
2249
  loanID?: string | null;
2419
- type: "NewLoan" | "EditLoan";
2250
+ type: DraftContentTypeEnum;
2420
2251
  isCoBorrower: boolean;
2421
2252
  applicationPayload: any;
2422
2253
  }
@@ -2435,7 +2266,7 @@ export interface DraftLoanOfficerReassignRequest {
2435
2266
 
2436
2267
  export interface DraftRequest {
2437
2268
  applicationPayload: any;
2438
- customData?: any;
2269
+ customData?: any | null;
2439
2270
  isCoBorrower: boolean;
2440
2271
  }
2441
2272
 
@@ -2509,9 +2340,9 @@ export interface EncompassCredentialsDetail {
2509
2340
  clearStateIfUnlicensed: boolean;
2510
2341
  /** @deprecated */
2511
2342
  baseUrl?: string | null;
2512
- encompassEnvironment: "Production" | "UAT";
2343
+ encompassEnvironment: EncompassCredentialsDetailEncompassEnvironmentEnum;
2513
2344
  consumerConnectWidgetHost?: string | null;
2514
- signingMethod: "ConsumerConnect" | "POSF";
2345
+ signingMethod: EncompassCredentialsDetailSigningMethodEnum;
2515
2346
  subscriptionId?: string | null;
2516
2347
  environment?: string | null;
2517
2348
  /** @format uuid */
@@ -2528,9 +2359,9 @@ export interface EncompassCredentialsRequest {
2528
2359
  clearStateIfUnlicensed: boolean;
2529
2360
  /** @deprecated */
2530
2361
  baseUrl?: string | null;
2531
- encompassEnvironment: "Production" | "UAT";
2362
+ encompassEnvironment: EncompassCredentialsRequestEncompassEnvironmentEnum;
2532
2363
  consumerConnectWidgetHost?: string | null;
2533
- signingMethod: "ConsumerConnect" | "POSF";
2364
+ signingMethod: EncompassCredentialsRequestSigningMethodEnum;
2534
2365
  subscriptionId?: string | null;
2535
2366
  environment?: string | null;
2536
2367
  clientID?: string | null;
@@ -2652,15 +2483,8 @@ export interface EncompassRequestLog {
2652
2483
  losId?: string | null;
2653
2484
  /** @format uuid */
2654
2485
  accountId: string;
2655
- operationType:
2656
- | "FieldUpdate"
2657
- | "ConsentUpdate"
2658
- | "DocumentSync"
2659
- | "MilestoneUpdate"
2660
- | "DocumentAttachment"
2661
- | "General"
2662
- | "FieldReader";
2663
- outcome: "Success" | "Failure" | "PartialSuccess";
2486
+ operationType: EncompassRequestLogOperationTypeEnum;
2487
+ outcome: EncompassRequestLogOutcomeEnum;
2664
2488
  message: string;
2665
2489
  endpoint?: string | null;
2666
2490
  httpMethod?: string | null;
@@ -2668,7 +2492,7 @@ export interface EncompassRequestLog {
2668
2492
  httpStatusCode?: number | null;
2669
2493
  /** @format int64 */
2670
2494
  durationMs?: number | null;
2671
- context?: any;
2495
+ context?: any | null;
2672
2496
  /** @format date-time */
2673
2497
  createdAt: string;
2674
2498
  }
@@ -2714,7 +2538,7 @@ export interface FileSearchCriteria {
2714
2538
  export interface FileWithBytes {
2715
2539
  name: string;
2716
2540
  /** @format byte */
2717
- data: string;
2541
+ data: Blob;
2718
2542
  fileName: string;
2719
2543
  mimeType?: string | null;
2720
2544
  extension?: string | null;
@@ -2793,7 +2617,7 @@ export interface FormSubmission {
2793
2617
  subjectPropertyAddressCounty?: string | null;
2794
2618
  subjectPropertyAddressState?: string | null;
2795
2619
  subjectPropertyAddressZip?: string | null;
2796
- data?: any;
2620
+ data?: any | null;
2797
2621
  /** @format uuid */
2798
2622
  listingID?: string | null;
2799
2623
  listing?: Listing | null;
@@ -2831,7 +2655,7 @@ export interface FormSubmissionRequest {
2831
2655
  subjectPropertyAddressCounty?: string | null;
2832
2656
  subjectPropertyAddressState?: string | null;
2833
2657
  subjectPropertyAddressZip?: string | null;
2834
- data?: any;
2658
+ data?: any | null;
2835
2659
  /** @format uuid */
2836
2660
  listingID?: string | null;
2837
2661
  }
@@ -2886,20 +2710,7 @@ export interface FusionFieldDisplay {
2886
2710
  }
2887
2711
 
2888
2712
  export interface FusionReportFilter {
2889
- filterType:
2890
- | "DateGreaterThanOrEqualTo"
2891
- | "DateGreaterThan"
2892
- | "DateLessThan"
2893
- | "DateLessThanOrEqualTo"
2894
- | "DateEquals"
2895
- | "DateDoesntEqual"
2896
- | "DateNonEmpty"
2897
- | "DateEmpty"
2898
- | "StringContains"
2899
- | "StringEquals"
2900
- | "StringNotEmpty"
2901
- | "StringNotEquals"
2902
- | "StringNotContains";
2713
+ filterType: FusionReportFilterFilterTypeEnum;
2903
2714
  targetField: string;
2904
2715
  targetValue: string;
2905
2716
  }
@@ -2922,7 +2733,7 @@ export interface GenerateSystemPrompt {
2922
2733
 
2923
2734
  export interface GenerateSystemPromptRequest {
2924
2735
  description: string;
2925
- category: "DocumentAnalysis" | "DataQuery" | "General" | "Action";
2736
+ category: GenerateSystemPromptRequestCategoryEnum;
2926
2737
  }
2927
2738
 
2928
2739
  export interface GetApplications {
@@ -3018,45 +2829,12 @@ export interface GetWorkflowRequest {
3018
2829
  export interface GuidPatchOperation {
3019
2830
  op: string;
3020
2831
  path: string;
3021
- value?: any;
2832
+ value?: any | null;
3022
2833
  from?: string | null;
3023
2834
  }
3024
2835
 
3025
2836
  export interface IPAddress {
3026
- addressFamily:
3027
- | "Unspecified"
3028
- | "Unix"
3029
- | "InterNetwork"
3030
- | "ImpLink"
3031
- | "Pup"
3032
- | "Chaos"
3033
- | "NS"
3034
- | "Ipx"
3035
- | "Iso"
3036
- | "Osi"
3037
- | "Ecma"
3038
- | "DataKit"
3039
- | "Ccitt"
3040
- | "Sna"
3041
- | "DecNet"
3042
- | "DataLink"
3043
- | "Lat"
3044
- | "HyperChannel"
3045
- | "AppleTalk"
3046
- | "NetBios"
3047
- | "VoiceView"
3048
- | "FireFox"
3049
- | "Banyan"
3050
- | "Atm"
3051
- | "InterNetworkV6"
3052
- | "Cluster"
3053
- | "Ieee12844"
3054
- | "Irda"
3055
- | "NetworkDesigners"
3056
- | "Max"
3057
- | "Packet"
3058
- | "ControllerAreaNetwork"
3059
- | "Unknown";
2837
+ addressFamily: IpAddressAddressFamilyEnum;
3060
2838
  /** @format int64 */
3061
2839
  scopeId: number;
3062
2840
  isIPv6Multicast: boolean;
@@ -3320,7 +3098,7 @@ export interface Loan {
3320
3098
  contacts: LoanContact[];
3321
3099
  customFields: CustomFieldEntry[];
3322
3100
  milestones: LoanMilestone[];
3323
- signingMethod: "ConsumerConnect" | "POSF";
3101
+ signingMethod: LoanSigningMethodEnum;
3324
3102
  }
3325
3103
 
3326
3104
  export interface LoanApplication {
@@ -3360,7 +3138,7 @@ export interface LoanApplicationRequest {
3360
3138
  nonOwningBorrowers: LoanNonOwningBorrowerRequest[];
3361
3139
  /** @format uuid */
3362
3140
  draftId?: string | null;
3363
- additionalFields?: Record<string, any>;
3141
+ additionalFields?: Record<string, any> | null;
3364
3142
  /** @format uuid */
3365
3143
  existingLoanId?: string | null;
3366
3144
  }
@@ -3380,7 +3158,7 @@ export interface LoanBorrower {
3380
3158
  citizenship?: LoanCitizenship | null;
3381
3159
  maritalStatus?: LoanMaritalStatus | null;
3382
3160
  languagePreference?: LoanLanguagePreference | null;
3383
- applicationStatus: "Draft" | "Complete";
3161
+ applicationStatus: LoanBorrowerApplicationStatusEnum;
3384
3162
  /** @format int32 */
3385
3163
  numberOfDependents?: number | null;
3386
3164
  /** @format int32 */
@@ -4173,7 +3951,7 @@ export interface LoanConsentRequest {
4173
3951
  borrowerEConsent?: boolean | null;
4174
3952
  borrowerCreditAuth?: boolean | null;
4175
3953
  borrowerTCPAOptIn?: boolean | null;
4176
- additionalFields?: Record<string, string>;
3954
+ additionalFields?: Record<string, string> | null;
4177
3955
  }
4178
3956
 
4179
3957
  export interface LoanContact {
@@ -4192,20 +3970,7 @@ export interface LoanContact {
4192
3970
  email?: string | null;
4193
3971
  phone?: string | null;
4194
3972
  companyName?: string | null;
4195
- role:
4196
- | "Borrower"
4197
- | "CoBorrower"
4198
- | "NonBorrower"
4199
- | "LoanOfficer"
4200
- | "LoanProcessor"
4201
- | "LoanOfficerAssistant"
4202
- | "SupportingLoanOfficer"
4203
- | "BuyerAgent"
4204
- | "SellerAgent"
4205
- | "TitleInsuranceAgent"
4206
- | "EscrowAgent"
4207
- | "SettlementAgent"
4208
- | "Admin";
3973
+ role: LoanContactRoleEnum;
4209
3974
  }
4210
3975
 
4211
3976
  export interface LoanContactList {
@@ -4230,7 +3995,7 @@ export interface LoanCostDetails {
4230
3995
  }
4231
3996
 
4232
3997
  export interface LoanCustomFieldsRequest {
4233
- additionalFields?: Record<string, string>;
3998
+ additionalFields?: Record<string, string> | null;
4234
3999
  }
4235
4000
 
4236
4001
  export interface LoanDocument {
@@ -4283,39 +4048,13 @@ export interface LoanDocumentFolderPermission {
4283
4048
  id: string;
4284
4049
  /** @format uuid */
4285
4050
  loanDocumentFolderID: string;
4286
- role:
4287
- | "Borrower"
4288
- | "CoBorrower"
4289
- | "NonBorrower"
4290
- | "LoanOfficer"
4291
- | "LoanProcessor"
4292
- | "LoanOfficerAssistant"
4293
- | "SupportingLoanOfficer"
4294
- | "BuyerAgent"
4295
- | "SellerAgent"
4296
- | "TitleInsuranceAgent"
4297
- | "EscrowAgent"
4298
- | "SettlementAgent"
4299
- | "Admin";
4300
- level: "None" | "Read" | "Write" | "Manage";
4051
+ role: LoanDocumentFolderPermissionRoleEnum;
4052
+ level: LoanDocumentFolderPermissionLevelEnum;
4301
4053
  }
4302
4054
 
4303
4055
  export interface LoanDocumentFolderPermissionRequest {
4304
- role:
4305
- | "Borrower"
4306
- | "CoBorrower"
4307
- | "NonBorrower"
4308
- | "LoanOfficer"
4309
- | "LoanProcessor"
4310
- | "LoanOfficerAssistant"
4311
- | "SupportingLoanOfficer"
4312
- | "BuyerAgent"
4313
- | "SellerAgent"
4314
- | "TitleInsuranceAgent"
4315
- | "EscrowAgent"
4316
- | "SettlementAgent"
4317
- | "Admin";
4318
- level: "None" | "Read" | "Write" | "Manage";
4056
+ role: LoanDocumentFolderPermissionRequestRoleEnum;
4057
+ level: LoanDocumentFolderPermissionRequestLevelEnum;
4319
4058
  }
4320
4059
 
4321
4060
  export interface LoanDocumentFolderUsage {
@@ -4461,19 +4200,14 @@ export interface LoanImport {
4461
4200
  /** @format int32 */
4462
4201
  importedCount: number;
4463
4202
  statusMessage?: string | null;
4464
- status:
4465
- | "WaitingProcess"
4466
- | "InProgress"
4467
- | "Completed"
4468
- | "Failed"
4469
- | "Cancelled";
4470
- importMode: "All" | "NewOnly" | "UpdateOnly";
4203
+ status: LoanImportStatusEnum;
4204
+ importMode: LoanImportImportModeEnum;
4471
4205
  /** @format date-time */
4472
4206
  createdAt?: string | null;
4473
4207
  }
4474
4208
 
4475
4209
  export interface LoanImportLog {
4476
- level: "None" | "Info" | "Warning" | "Error";
4210
+ level: LoanImportLogLevelEnum;
4477
4211
  message: string;
4478
4212
  /** @format date-time */
4479
4213
  createdAt: string;
@@ -4534,26 +4268,8 @@ export interface LoanListPaginated {
4534
4268
  export interface LoanLog {
4535
4269
  /** @format uuid */
4536
4270
  id: string;
4537
- level: "None" | "Info" | "Warning" | "Error";
4538
- type:
4539
- | "Loan"
4540
- | "Queue"
4541
- | "POSFlagChanged"
4542
- | "Verification"
4543
- | "DocumentUploaded"
4544
- | "LoanCreated"
4545
- | "WorkflowSubmitted"
4546
- | "UserInvitationSent"
4547
- | "CoBorrowerAdded"
4548
- | "TaskCompleted"
4549
- | "LoanStatusChanged"
4550
- | "Consent"
4551
- | "SensitiveDataPurge"
4552
- | "ClosingDateUpdated"
4553
- | "ConsumerConnectAssociation"
4554
- | "TaskReminderSent"
4555
- | "DocumentClassified"
4556
- | "CoBorrowerEmailAutoFixed";
4271
+ level: LoanLogLevelEnum;
4272
+ type: LoanLogTypeEnum;
4557
4273
  message: string;
4558
4274
  /** @format date-time */
4559
4275
  createdAt: string;
@@ -4562,26 +4278,8 @@ export interface LoanLog {
4562
4278
  export interface LoanLogDetail {
4563
4279
  /** @format uuid */
4564
4280
  id: string;
4565
- level: "None" | "Info" | "Warning" | "Error";
4566
- type:
4567
- | "Loan"
4568
- | "Queue"
4569
- | "POSFlagChanged"
4570
- | "Verification"
4571
- | "DocumentUploaded"
4572
- | "LoanCreated"
4573
- | "WorkflowSubmitted"
4574
- | "UserInvitationSent"
4575
- | "CoBorrowerAdded"
4576
- | "TaskCompleted"
4577
- | "LoanStatusChanged"
4578
- | "Consent"
4579
- | "SensitiveDataPurge"
4580
- | "ClosingDateUpdated"
4581
- | "ConsumerConnectAssociation"
4582
- | "TaskReminderSent"
4583
- | "DocumentClassified"
4584
- | "CoBorrowerEmailAutoFixed";
4281
+ level: LoanLogDetailLevelEnum;
4282
+ type: LoanLogDetailTypeEnum;
4585
4283
  message: string;
4586
4284
  /** @format date-time */
4587
4285
  createdAt: string;
@@ -4865,7 +4563,7 @@ export interface LoanQueueWithData {
4865
4563
  user: UserPublic;
4866
4564
  loanOfficer: LoanOfficerPublic;
4867
4565
  siteConfiguration: SiteConfigurationReduced;
4868
- data?: any;
4566
+ data?: any | null;
4869
4567
  }
4870
4568
 
4871
4569
  export interface LoanRecord {
@@ -4901,7 +4599,7 @@ export interface LoanTaskSearchRequest {
4901
4599
  }
4902
4600
 
4903
4601
  export interface LoanTaskStatusSummary {
4904
- status: "Outstanding" | "Pending" | "Completed" | "Rejected" | "Unknown";
4602
+ status: LoanTaskStatusSummaryStatusEnum;
4905
4603
  /** @format int32 */
4906
4604
  count: number;
4907
4605
  }
@@ -4914,20 +4612,7 @@ export interface LoanUser {
4914
4612
  email: string;
4915
4613
  phone?: string | null;
4916
4614
  role: string;
4917
- loanRole:
4918
- | "Borrower"
4919
- | "CoBorrower"
4920
- | "NonBorrower"
4921
- | "LoanOfficer"
4922
- | "LoanProcessor"
4923
- | "LoanOfficerAssistant"
4924
- | "SupportingLoanOfficer"
4925
- | "BuyerAgent"
4926
- | "SellerAgent"
4927
- | "TitleInsuranceAgent"
4928
- | "EscrowAgent"
4929
- | "SettlementAgent"
4930
- | "Admin";
4615
+ loanRole: LoanUserLoanRoleEnum;
4931
4616
  isUser: boolean;
4932
4617
  /** @format date-time */
4933
4618
  createdAt: string;
@@ -4963,13 +4648,7 @@ export interface LosOperationTracking {
4963
4648
  operationType: string;
4964
4649
  correlationKey: string;
4965
4650
  lastTriggerSource?: string | null;
4966
- status:
4967
- | "Pending"
4968
- | "Success"
4969
- | "Failed"
4970
- | "ConfigurationError"
4971
- | "PermanentFailure"
4972
- | "Locked";
4651
+ status: LosOperationTrackingStatusEnum;
4973
4652
  /** @format date-time */
4974
4653
  createdAt: string;
4975
4654
  /** @format date-time */
@@ -5036,7 +4715,7 @@ export interface LosSyncStep {
5036
4715
  /** @format int32 */
5037
4716
  order: number;
5038
4717
  name: string;
5039
- severity: "Success" | "Info" | "Warning" | "Error";
4718
+ severity: LosSyncStepSeverityEnum;
5040
4719
  message: string;
5041
4720
  /** @format date-time */
5042
4721
  atUtc: string;
@@ -5052,65 +4731,7 @@ export interface LosWebhook {
5052
4731
  }
5053
4732
 
5054
4733
  export interface ManualDocumentClassificationRequest {
5055
- documentType:
5056
- | "W2"
5057
- | "Paystub"
5058
- | "Form1099"
5059
- | "Form1099Int"
5060
- | "Form1099Misc"
5061
- | "Form1099Nec"
5062
- | "Form1099R"
5063
- | "Form1099G"
5064
- | "Form1099Div"
5065
- | "Form1099Ssa"
5066
- | "FederalTaxReturn1040"
5067
- | "TaxReturnScheduleC"
5068
- | "TaxReturnScheduleD"
5069
- | "TaxReturnScheduleE"
5070
- | "Form1065"
5071
- | "Form1120"
5072
- | "Form1120S"
5073
- | "ProfitAndLossStatement"
5074
- | "VerificationOfEmployment"
5075
- | "BankStatement"
5076
- | "InvestmentStatement"
5077
- | "CreditCardStatement"
5078
- | "MortgageStatement"
5079
- | "PayoffStatement"
5080
- | "HoaDocuments"
5081
- | "UtilityBill"
5082
- | "IdentityDocument"
5083
- | "DemographicAddendum"
5084
- | "Ssa89"
5085
- | "Vba260551"
5086
- | "Hud92900B"
5087
- | "Check"
5088
- | "Invoice"
5089
- | "Receipt"
5090
- | "LoanApplication1003"
5091
- | "UnderwritingTransmittal1008"
5092
- | "Other"
5093
- | "SalesContract"
5094
- | "TitleCommitment"
5095
- | "DriversLicense"
5096
- | "VerificationOfIncome"
5097
- | "VerificationOfAssets"
5098
- | "FloodCertificate"
5099
- | "FraudReport"
5100
- | "AddendumToSalesContract"
5101
- | "GiftLetter"
5102
- | "CpaLetter"
5103
- | "TaxBill"
5104
- | "CondoQuestionnaire"
5105
- | "CondoBudget"
5106
- | "CondoBylaws"
5107
- | "RentalAgreements"
5108
- | "Lease"
5109
- | "HazardInsurance"
5110
- | "VaCertificateOfEligibility"
5111
- | "Appraisal"
5112
- | "CreditReport"
5113
- | "CondoMasterPolicy";
4734
+ documentType: ManualDocumentClassificationRequestDocumentTypeEnum;
5114
4735
  }
5115
4736
 
5116
4737
  export interface MdmUser {
@@ -5197,7 +4818,7 @@ export interface ModuleParameterValue {
5197
4818
  parameterID: string;
5198
4819
  parameterName: string;
5199
4820
  parameterType: string;
5200
- value?: any;
4821
+ value?: any | null;
5201
4822
  isInherited: boolean;
5202
4823
  }
5203
4824
 
@@ -5383,7 +5004,7 @@ export interface NotificationTemplateVersionUpdateRequest {
5383
5004
 
5384
5005
  export interface Operation {
5385
5006
  op?: string;
5386
- value?: string | number | boolean | null | object;
5007
+ value?: object | null;
5387
5008
  path?: string;
5388
5009
  }
5389
5010
 
@@ -5745,7 +5366,7 @@ export interface SiteConfiguration {
5745
5366
  deletedAt?: string | null;
5746
5367
  /** @format uuid */
5747
5368
  id: string;
5748
- type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
5369
+ type: SiteConfigurationTypeEnum;
5749
5370
  /** @format uuid */
5750
5371
  entityID: string;
5751
5372
  /** @format int32 */
@@ -5939,7 +5560,7 @@ export interface SiteConfigurationByUrl {
5939
5560
  deletedAt?: string | null;
5940
5561
  /** @format uuid */
5941
5562
  id: string;
5942
- type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
5563
+ type: SiteConfigurationByUrlTypeEnum;
5943
5564
  /** @format uuid */
5944
5565
  entityID: string;
5945
5566
  /** @format int32 */
@@ -6151,7 +5772,7 @@ export interface SiteConfigurationForm {
6151
5772
  export interface SiteConfigurationReduced {
6152
5773
  /** @format uuid */
6153
5774
  id: string;
6154
- type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
5775
+ type: SiteConfigurationReducedTypeEnum;
6155
5776
  url?: string | null;
6156
5777
  name: string;
6157
5778
  /** @format int64 */
@@ -6169,7 +5790,7 @@ export interface SiteConfigurationRequest {
6169
5790
  entityID: string;
6170
5791
  /** @format int32 */
6171
5792
  entityType: number;
6172
- type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
5793
+ type: SiteConfigurationRequestTypeEnum;
6173
5794
  url: string;
6174
5795
  name: string;
6175
5796
  introduction?: string | null;
@@ -6346,7 +5967,7 @@ export interface SiteConfigurationSearchCriteria {
6346
5967
  export interface SiteConfigurationSummary {
6347
5968
  /** @format uuid */
6348
5969
  id: string;
6349
- type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
5970
+ type: SiteConfigurationSummaryTypeEnum;
6350
5971
  url?: string | null;
6351
5972
  name: string;
6352
5973
  /** @format int64 */
@@ -6376,6 +5997,71 @@ export interface SiteConfigurationWithInherited {
6376
5997
  inheritedSiteConfiguration?: SiteConfiguration | null;
6377
5998
  }
6378
5999
 
6000
+ export interface SiteTile {
6001
+ /** @format uuid */
6002
+ id: string;
6003
+ /** @format uuid */
6004
+ brandSiteConfigurationID: string;
6005
+ icon: string;
6006
+ title: string;
6007
+ description: string;
6008
+ linkUrl: string;
6009
+ linkTarget: SiteTileLinkTargetEnum;
6010
+ siteTypes: SiteConfigurationType[];
6011
+ locations: SiteTileLocation[];
6012
+ audience: UserRole[];
6013
+ /** @format int32 */
6014
+ weight: number;
6015
+ excludedSiteConfigurationIDs: string[];
6016
+ /** @format date-time */
6017
+ createdAt: string;
6018
+ /** @format date-time */
6019
+ updatedAt?: string | null;
6020
+ }
6021
+
6022
+ export interface SiteTilePaginated {
6023
+ rows: SiteTile[];
6024
+ pagination: Pagination;
6025
+ /** @format int64 */
6026
+ count: number;
6027
+ }
6028
+
6029
+ export interface SiteTileRequest {
6030
+ /** @format uuid */
6031
+ brandSiteConfigurationID: string;
6032
+ icon: string;
6033
+ title: string;
6034
+ description: string;
6035
+ linkUrl: string;
6036
+ linkTarget: SiteTileRequestLinkTargetEnum;
6037
+ siteTypes: SiteConfigurationType[];
6038
+ locations: SiteTileLocation[];
6039
+ audience: UserRole[];
6040
+ /** @format int32 */
6041
+ weight: number;
6042
+ excludedSiteConfigurationIDs: string[];
6043
+ }
6044
+
6045
+ export interface SiteTileSearchCriteria {
6046
+ searchText?: string | null;
6047
+ /** @format uuid */
6048
+ brandSiteConfigurationID?: string | null;
6049
+ siteType?: SiteConfigurationType | null;
6050
+ location?: SiteTileLocation | null;
6051
+ }
6052
+
6053
+ export interface SiteTileView {
6054
+ /** @format uuid */
6055
+ id: string;
6056
+ icon: string;
6057
+ title: string;
6058
+ description: string;
6059
+ linkUrl: string;
6060
+ linkTarget: SiteTileViewLinkTargetEnum;
6061
+ /** @format int32 */
6062
+ weight: number;
6063
+ }
6064
+
6379
6065
  export interface SocialSurveyRecord {
6380
6066
  /** @format date-time */
6381
6067
  createdAt: string;
@@ -6627,20 +6313,7 @@ export interface UnregisteredBorrower {
6627
6313
  lastName?: string | null;
6628
6314
  fullName?: string | null;
6629
6315
  email?: string | null;
6630
- role:
6631
- | "Borrower"
6632
- | "CoBorrower"
6633
- | "NonBorrower"
6634
- | "LoanOfficer"
6635
- | "LoanProcessor"
6636
- | "LoanOfficerAssistant"
6637
- | "SupportingLoanOfficer"
6638
- | "BuyerAgent"
6639
- | "SellerAgent"
6640
- | "TitleInsuranceAgent"
6641
- | "EscrowAgent"
6642
- | "SettlementAgent"
6643
- | "Admin";
6316
+ role: UnregisteredBorrowerRoleEnum;
6644
6317
  }
6645
6318
 
6646
6319
  export interface UpdateAccountRequest {
@@ -6668,7 +6341,7 @@ export interface UpdateAiCanonicalFieldRequest {
6668
6341
 
6669
6342
  export interface UpdateAiGuardrailRequest {
6670
6343
  name: string;
6671
- category: "ContentSafety" | "PromptInjection" | "Privacy" | "Legal";
6344
+ category: UpdateAiGuardrailRequestCategoryEnum;
6672
6345
  description?: string | null;
6673
6346
  keywords: string[];
6674
6347
  responseTemplate: string;
@@ -6691,17 +6364,12 @@ export interface UpdateAiPromptRequest {
6691
6364
  outputType?: AiOutputType | null;
6692
6365
  }
6693
6366
 
6694
- export interface UpdateAiPromptToolsRequest {
6695
- tools: AiPromptToolInput[];
6696
- agentSystemPrompt?: string | null;
6697
- }
6698
-
6699
6367
  export interface UpdateAiUrlSourceRequest {
6700
6368
  name: string;
6701
6369
  url: string;
6702
6370
  description?: string | null;
6703
- category: "Regulatory" | "Guidelines" | "MarketData" | "Custom";
6704
- scope: "FullDomain" | "SpecificPath";
6371
+ category: UpdateAiUrlSourceRequestCategoryEnum;
6372
+ scope: UpdateAiUrlSourceRequestScopeEnum;
6705
6373
  }
6706
6374
 
6707
6375
  export interface UpdateCustomFieldDefinitionRequest {
@@ -7013,20 +6681,7 @@ export interface UserDevice {
7013
6681
  export interface UserDraft {
7014
6682
  /** @format uuid */
7015
6683
  draftID: string;
7016
- role:
7017
- | "Borrower"
7018
- | "CoBorrower"
7019
- | "NonBorrower"
7020
- | "LoanOfficer"
7021
- | "LoanProcessor"
7022
- | "LoanOfficerAssistant"
7023
- | "SupportingLoanOfficer"
7024
- | "BuyerAgent"
7025
- | "SellerAgent"
7026
- | "TitleInsuranceAgent"
7027
- | "EscrowAgent"
7028
- | "SettlementAgent"
7029
- | "Admin";
6684
+ role: UserDraftRoleEnum;
7030
6685
  user: User;
7031
6686
  }
7032
6687
 
@@ -7053,7 +6708,7 @@ export interface UserGroupAccessScope {
7053
6708
  id: string;
7054
6709
  /** @format uuid */
7055
6710
  groupId: string;
7056
- scopeType: "User" | "Branch";
6711
+ scopeType: UserGroupAccessScopeScopeTypeEnum;
7057
6712
  /** @format uuid */
7058
6713
  userId?: string | null;
7059
6714
  /** @format uuid */
@@ -7089,20 +6744,7 @@ export interface UserLoan {
7089
6744
  deletedAt?: string | null;
7090
6745
  loanID: string;
7091
6746
  user: User;
7092
- role:
7093
- | "Borrower"
7094
- | "CoBorrower"
7095
- | "NonBorrower"
7096
- | "LoanOfficer"
7097
- | "LoanProcessor"
7098
- | "LoanOfficerAssistant"
7099
- | "SupportingLoanOfficer"
7100
- | "BuyerAgent"
7101
- | "SellerAgent"
7102
- | "TitleInsuranceAgent"
7103
- | "EscrowAgent"
7104
- | "SettlementAgent"
7105
- | "Admin";
6747
+ role: UserLoanRoleEnum;
7106
6748
  /** @format int32 */
7107
6749
  borrowerPair?: number | null;
7108
6750
  /** @format int32 */
@@ -7115,11 +6757,11 @@ export interface UserLoanConsent {
7115
6757
  id: string;
7116
6758
  /** @format uuid */
7117
6759
  userLoanID: string;
7118
- type: "Econsent" | "CreditAuthorization" | "Tcpa";
6760
+ type: UserLoanConsentTypeEnum;
7119
6761
  providedConsent: boolean;
7120
6762
  source?: ConsentSource | null;
7121
6763
  ipAddress?: string | null;
7122
- losSyncStatus: "NotStarted" | "Failed" | "Success";
6764
+ losSyncStatus: UserLoanConsentLosSyncStatusEnum;
7123
6765
  /** @format date-time */
7124
6766
  createdAt: string;
7125
6767
  /** @format date-time */
@@ -7187,120 +6829,809 @@ export interface UserNotificationSettingsUpdateRequest {
7187
6829
  pushEnabled: boolean;
7188
6830
  }
7189
6831
 
7190
- export interface UserPaginated {
7191
- rows: User[];
7192
- pagination: Pagination;
7193
- /** @format int64 */
7194
- count: number;
7195
- }
6832
+ export interface UserPaginated {
6833
+ rows: User[];
6834
+ pagination: Pagination;
6835
+ /** @format int64 */
6836
+ count: number;
6837
+ }
6838
+
6839
+ export interface UserPublic {
6840
+ /** @format uuid */
6841
+ id: string;
6842
+ role: string;
6843
+ firstName: string;
6844
+ lastName: string;
6845
+ email: string;
6846
+ phone?: string | null;
6847
+ title?: string | null;
6848
+ }
6849
+
6850
+ export interface UserRelation {
6851
+ /** @format uuid */
6852
+ userId1: string;
6853
+ /** @format uuid */
6854
+ userId2: string;
6855
+ relationType: string;
6856
+ /** @format uuid */
6857
+ id: string;
6858
+ user1Email: string;
6859
+ user1Role: string;
6860
+ user2Email: string;
6861
+ user2Role: string;
6862
+ }
6863
+
6864
+ export interface UserRelationship {
6865
+ /** @format uuid */
6866
+ id: string;
6867
+ role: string;
6868
+ firstName?: string | null;
6869
+ lastName?: string | null;
6870
+ email?: string | null;
6871
+ phone?: string | null;
6872
+ siteConfigurations: SiteConfigurationReduced[];
6873
+ /** @format date-time */
6874
+ createdAt?: string | null;
6875
+ /** @format date-time */
6876
+ deletedAt?: string | null;
6877
+ }
6878
+
6879
+ export interface UserRelationshipProspect {
6880
+ /** @format uuid */
6881
+ id: string;
6882
+ role: string;
6883
+ firstName: string;
6884
+ lastName: string;
6885
+ email: string;
6886
+ contactPhone?: string | null;
6887
+ licenseNumber?: string | null;
6888
+ /** @format uuid */
6889
+ branchID: string;
6890
+ companyName?: string | null;
6891
+ /** @format date-time */
6892
+ createdAt?: string | null;
6893
+ /** @format date-time */
6894
+ deletedAt?: string | null;
6895
+ }
6896
+
6897
+ export interface UserSearchCriteria {
6898
+ searchText?: string | null;
6899
+ isActive?: boolean | null;
6900
+ roles?: string[] | null;
6901
+ }
6902
+
6903
+ export interface UserSummary {
6904
+ /** @format uuid */
6905
+ id: string;
6906
+ name?: string | null;
6907
+ email?: string | null;
6908
+ role: UserSummaryRoleEnum;
6909
+ }
6910
+
6911
+ export interface VerifyPasswordRequest {
6912
+ email: string;
6913
+ code: string;
6914
+ password: string;
6915
+ /** @format uuid */
6916
+ siteConfigurationId?: string | null;
6917
+ }
6918
+
6919
+ export interface Workflow {
6920
+ formType: string;
6921
+ target: string;
6922
+ authType: string;
6923
+ name: string;
6924
+ isDefault: boolean;
6925
+ description: string;
6926
+ slug: string;
6927
+ status: string;
6928
+ userRole: string;
6929
+ borrowerType: string;
6930
+ showProgressBar: boolean;
6931
+ showTile: boolean;
6932
+ tileLocation: string;
6933
+ tileText: string;
6934
+ tileSubtitle: string;
6935
+ icon: string;
6936
+ }
6937
+
6938
+ export type AccountBillingRequestBillingTypeEnum = "ClosedLoan" | "LoanOfficer";
6939
+
6940
+ export type AiAuditLogEventTypeEnum =
6941
+ | "Error"
6942
+ | "GuardrailBlockedPre"
6943
+ | "GuardrailPassedPre"
6944
+ | "IntentClassified"
6945
+ | "LoanResolvedFromMessage"
6946
+ | "DocumentNotFound"
6947
+ | "GuardrailBlockedPost"
6948
+ | "GuardrailPassedPost"
6949
+ | "DocumentAnalyzed"
6950
+ | "DocumentList"
6951
+ | "DocumentResolutionAmbiguous"
6952
+ | "ResponseGenerated"
6953
+ | "ParametersExtracted"
6954
+ | "QueryExecuted"
6955
+ | "LoanContextNotFound"
6956
+ | "LoanContextLoaded"
6957
+ | "GuardrailBlockedBedrock"
6958
+ | "PromptMatched"
6959
+ | "QueryCondensed"
6960
+ | "IntentParseFailed"
6961
+ | "LoanSearchTermDiscarded"
6962
+ | "CanonicalFieldsSelected"
6963
+ | "LoanAccessDenied";
6964
+
6965
+ export type AiChatMetadataIntentEnum =
6966
+ | "Greeting"
6967
+ | "Invalid"
6968
+ | "Relevant"
6969
+ | "LoanSpecific"
6970
+ | "DocumentList"
6971
+ | "GeneralKnowledge"
6972
+ | "Blocked"
6973
+ | "Action"
6974
+ | "ConversationMeta"
6975
+ | "Capabilities"
6976
+ | "UsageReport";
6977
+
6978
+ export type AiChatStructuredDataTypeEnum =
6979
+ | "Table"
6980
+ | "DocumentAnalysis"
6981
+ | "DocumentList"
6982
+ | "GeneratedDocument";
6983
+
6984
+ export type AiGuardrailCategoryEnum =
6985
+ | "ContentSafety"
6986
+ | "PromptInjection"
6987
+ | "Privacy"
6988
+ | "Legal";
6989
+
6990
+ export type AiUrlSourceCategoryEnum =
6991
+ | "Regulatory"
6992
+ | "Guidelines"
6993
+ | "MarketData"
6994
+ | "Custom";
6995
+
6996
+ export type AiUrlSourceScopeEnum = "FullDomain" | "SpecificPath";
6997
+
6998
+ export type AuditLogEntryChangeTypeEnum =
6999
+ | "Created"
7000
+ | "Modified"
7001
+ | "SoftDeleted"
7002
+ | "HardDeleted"
7003
+ | "Restored"
7004
+ | "Deactivated"
7005
+ | "Reactivated";
7006
+
7007
+ export type BorrowerCountRoleEnum =
7008
+ | "Borrower"
7009
+ | "CoBorrower"
7010
+ | "NonBorrower"
7011
+ | "LoanOfficer"
7012
+ | "LoanProcessor"
7013
+ | "LoanOfficerAssistant"
7014
+ | "SupportingLoanOfficer"
7015
+ | "BuyerAgent"
7016
+ | "SellerAgent"
7017
+ | "TitleInsuranceAgent"
7018
+ | "EscrowAgent"
7019
+ | "SettlementAgent"
7020
+ | "Admin";
7021
+
7022
+ export type BorrowerIdentityRoleEnum =
7023
+ | "Borrower"
7024
+ | "CoBorrower"
7025
+ | "NonBorrower"
7026
+ | "LoanOfficer"
7027
+ | "LoanProcessor"
7028
+ | "LoanOfficerAssistant"
7029
+ | "SupportingLoanOfficer"
7030
+ | "BuyerAgent"
7031
+ | "SellerAgent"
7032
+ | "TitleInsuranceAgent"
7033
+ | "EscrowAgent"
7034
+ | "SettlementAgent"
7035
+ | "Admin";
7036
+
7037
+ export type CreateAccessScopeRequestScopeTypeEnum = "User" | "Branch";
7038
+
7039
+ export type CreateAccountRequestEnvironmentEnum =
7040
+ | "Development"
7041
+ | "Staging"
7042
+ | "UAT"
7043
+ | "Production";
7044
+
7045
+ export type CreateAiGuardrailRequestCategoryEnum =
7046
+ | "ContentSafety"
7047
+ | "PromptInjection"
7048
+ | "Privacy"
7049
+ | "Legal";
7050
+
7051
+ export type CreateAiUrlSourceRequestCategoryEnum =
7052
+ | "Regulatory"
7053
+ | "Guidelines"
7054
+ | "MarketData"
7055
+ | "Custom";
7056
+
7057
+ export type CreateAiUrlSourceRequestScopeEnum = "FullDomain" | "SpecificPath";
7058
+
7059
+ export type CreateCustomFieldDefinitionRequestDataTypeEnum =
7060
+ | "String"
7061
+ | "Number"
7062
+ | "Decimal"
7063
+ | "Boolean"
7064
+ | "Date"
7065
+ | "SingleSelect"
7066
+ | "MultiSelect";
7067
+
7068
+ export type CreateCustomFieldDefinitionRequestEntityTypeEnum = "Loan";
7069
+
7070
+ export type CreateGroupMemberRequestLoanRoleEnum =
7071
+ | "Borrower"
7072
+ | "CoBorrower"
7073
+ | "NonBorrower"
7074
+ | "LoanOfficer"
7075
+ | "LoanProcessor"
7076
+ | "LoanOfficerAssistant"
7077
+ | "SupportingLoanOfficer"
7078
+ | "BuyerAgent"
7079
+ | "SellerAgent"
7080
+ | "TitleInsuranceAgent"
7081
+ | "EscrowAgent"
7082
+ | "SettlementAgent"
7083
+ | "Admin";
7084
+
7085
+ /** @deprecated */
7086
+ export type CreateInviteRequestRelationshipEnum =
7087
+ | "NotApplicable"
7088
+ | "Spouse"
7089
+ | "NonSpouse";
7090
+
7091
+ export type CreateLoanImportRequestImportModeEnum =
7092
+ | "All"
7093
+ | "NewOnly"
7094
+ | "UpdateOnly";
7095
+
7096
+ export type CreateUserDraftLoanRoleEnum =
7097
+ | "Borrower"
7098
+ | "CoBorrower"
7099
+ | "NonBorrower"
7100
+ | "LoanOfficer"
7101
+ | "LoanProcessor"
7102
+ | "LoanOfficerAssistant"
7103
+ | "SupportingLoanOfficer"
7104
+ | "BuyerAgent"
7105
+ | "SellerAgent"
7106
+ | "TitleInsuranceAgent"
7107
+ | "EscrowAgent"
7108
+ | "SettlementAgent"
7109
+ | "Admin";
7110
+
7111
+ export type CustomFieldDefinitionDataTypeEnum =
7112
+ | "String"
7113
+ | "Number"
7114
+ | "Decimal"
7115
+ | "Boolean"
7116
+ | "Date"
7117
+ | "SingleSelect"
7118
+ | "MultiSelect";
7119
+
7120
+ export type CustomFieldDefinitionEntityTypeEnum = "Loan";
7121
+
7122
+ export type CustomFieldEntryDataTypeEnum =
7123
+ | "String"
7124
+ | "Number"
7125
+ | "Decimal"
7126
+ | "Boolean"
7127
+ | "Date"
7128
+ | "SingleSelect"
7129
+ | "MultiSelect";
7130
+
7131
+ export type CustomFieldPermissionRoleEnum =
7132
+ | "Borrower"
7133
+ | "LoanOfficer"
7134
+ | "Admin"
7135
+ | "SuperAdmin"
7136
+ | "Realtor"
7137
+ | "SettlementAgent"
7138
+ | "LoanProcessor"
7139
+ | "LoanOfficerAssistant"
7140
+ | "SystemAdmin";
7141
+
7142
+ export type CustomFieldPermissionAccessLevelEnum =
7143
+ | "NoAccess"
7144
+ | "ReadOnly"
7145
+ | "ReadWrite";
7146
+
7147
+ export type CustomFieldPermissionRequestRoleEnum =
7148
+ | "Borrower"
7149
+ | "LoanOfficer"
7150
+ | "Admin"
7151
+ | "SuperAdmin"
7152
+ | "Realtor"
7153
+ | "SettlementAgent"
7154
+ | "LoanProcessor"
7155
+ | "LoanOfficerAssistant"
7156
+ | "SystemAdmin";
7157
+
7158
+ export type CustomFieldPermissionRequestAccessLevelEnum =
7159
+ | "NoAccess"
7160
+ | "ReadOnly"
7161
+ | "ReadWrite";
7162
+
7163
+ export type CustomFieldValueDataTypeEnum =
7164
+ | "String"
7165
+ | "Number"
7166
+ | "Decimal"
7167
+ | "Boolean"
7168
+ | "Date"
7169
+ | "SingleSelect"
7170
+ | "MultiSelect";
7171
+
7172
+ export type DraftTypeEnum = "NewLoan" | "EditLoan";
7173
+
7174
+ export type DraftContentTypeEnum = "NewLoan" | "EditLoan";
7175
+
7176
+ export type EncompassCredentialsDetailEncompassEnvironmentEnum =
7177
+ | "Production"
7178
+ | "UAT";
7179
+
7180
+ export type EncompassCredentialsDetailSigningMethodEnum =
7181
+ | "ConsumerConnect"
7182
+ | "POSF";
7183
+
7184
+ export type EncompassCredentialsRequestEncompassEnvironmentEnum =
7185
+ | "Production"
7186
+ | "UAT";
7187
+
7188
+ export type EncompassCredentialsRequestSigningMethodEnum =
7189
+ | "ConsumerConnect"
7190
+ | "POSF";
7191
+
7192
+ export type EncompassRequestLogOperationTypeEnum =
7193
+ | "FieldUpdate"
7194
+ | "ConsentUpdate"
7195
+ | "DocumentSync"
7196
+ | "MilestoneUpdate"
7197
+ | "DocumentAttachment"
7198
+ | "General"
7199
+ | "FieldReader";
7200
+
7201
+ export type EncompassRequestLogOutcomeEnum =
7202
+ | "Success"
7203
+ | "Failure"
7204
+ | "PartialSuccess";
7205
+
7206
+ export type FusionReportFilterFilterTypeEnum =
7207
+ | "DateGreaterThanOrEqualTo"
7208
+ | "DateGreaterThan"
7209
+ | "DateLessThan"
7210
+ | "DateLessThanOrEqualTo"
7211
+ | "DateEquals"
7212
+ | "DateDoesntEqual"
7213
+ | "DateNonEmpty"
7214
+ | "DateEmpty"
7215
+ | "StringContains"
7216
+ | "StringEquals"
7217
+ | "StringNotEmpty"
7218
+ | "StringNotEquals"
7219
+ | "StringNotContains";
7220
+
7221
+ export type GenerateSystemPromptRequestCategoryEnum =
7222
+ | "DocumentAnalysis"
7223
+ | "DataQuery"
7224
+ | "General"
7225
+ | "Action";
7226
+
7227
+ export type IpAddressAddressFamilyEnum =
7228
+ | "Unspecified"
7229
+ | "Unix"
7230
+ | "InterNetwork"
7231
+ | "ImpLink"
7232
+ | "Pup"
7233
+ | "Chaos"
7234
+ | "NS"
7235
+ | "Ipx"
7236
+ | "Iso"
7237
+ | "Osi"
7238
+ | "Ecma"
7239
+ | "DataKit"
7240
+ | "Ccitt"
7241
+ | "Sna"
7242
+ | "DecNet"
7243
+ | "DataLink"
7244
+ | "Lat"
7245
+ | "HyperChannel"
7246
+ | "AppleTalk"
7247
+ | "NetBios"
7248
+ | "VoiceView"
7249
+ | "FireFox"
7250
+ | "Banyan"
7251
+ | "Atm"
7252
+ | "InterNetworkV6"
7253
+ | "Cluster"
7254
+ | "Ieee12844"
7255
+ | "Irda"
7256
+ | "NetworkDesigners"
7257
+ | "Max"
7258
+ | "Packet"
7259
+ | "ControllerAreaNetwork"
7260
+ | "Unknown";
7261
+
7262
+ export type LoanSigningMethodEnum = "ConsumerConnect" | "POSF";
7263
+
7264
+ export type LoanBorrowerApplicationStatusEnum = "Draft" | "Complete";
7265
+
7266
+ export type LoanContactRoleEnum =
7267
+ | "Borrower"
7268
+ | "CoBorrower"
7269
+ | "NonBorrower"
7270
+ | "LoanOfficer"
7271
+ | "LoanProcessor"
7272
+ | "LoanOfficerAssistant"
7273
+ | "SupportingLoanOfficer"
7274
+ | "BuyerAgent"
7275
+ | "SellerAgent"
7276
+ | "TitleInsuranceAgent"
7277
+ | "EscrowAgent"
7278
+ | "SettlementAgent"
7279
+ | "Admin";
7280
+
7281
+ export type LoanDocumentFolderPermissionRoleEnum =
7282
+ | "Borrower"
7283
+ | "CoBorrower"
7284
+ | "NonBorrower"
7285
+ | "LoanOfficer"
7286
+ | "LoanProcessor"
7287
+ | "LoanOfficerAssistant"
7288
+ | "SupportingLoanOfficer"
7289
+ | "BuyerAgent"
7290
+ | "SellerAgent"
7291
+ | "TitleInsuranceAgent"
7292
+ | "EscrowAgent"
7293
+ | "SettlementAgent"
7294
+ | "Admin";
7295
+
7296
+ export type LoanDocumentFolderPermissionLevelEnum =
7297
+ | "None"
7298
+ | "Read"
7299
+ | "Write"
7300
+ | "Manage";
7301
+
7302
+ export type LoanDocumentFolderPermissionRequestRoleEnum =
7303
+ | "Borrower"
7304
+ | "CoBorrower"
7305
+ | "NonBorrower"
7306
+ | "LoanOfficer"
7307
+ | "LoanProcessor"
7308
+ | "LoanOfficerAssistant"
7309
+ | "SupportingLoanOfficer"
7310
+ | "BuyerAgent"
7311
+ | "SellerAgent"
7312
+ | "TitleInsuranceAgent"
7313
+ | "EscrowAgent"
7314
+ | "SettlementAgent"
7315
+ | "Admin";
7316
+
7317
+ export type LoanDocumentFolderPermissionRequestLevelEnum =
7318
+ | "None"
7319
+ | "Read"
7320
+ | "Write"
7321
+ | "Manage";
7322
+
7323
+ export type LoanImportStatusEnum =
7324
+ | "WaitingProcess"
7325
+ | "InProgress"
7326
+ | "Completed"
7327
+ | "Failed"
7328
+ | "Cancelled";
7329
+
7330
+ export type LoanImportImportModeEnum = "All" | "NewOnly" | "UpdateOnly";
7331
+
7332
+ export type LoanImportLogLevelEnum = "None" | "Info" | "Warning" | "Error";
7333
+
7334
+ export type LoanLogLevelEnum = "None" | "Info" | "Warning" | "Error";
7335
+
7336
+ export type LoanLogTypeEnum =
7337
+ | "Loan"
7338
+ | "Queue"
7339
+ | "POSFlagChanged"
7340
+ | "Verification"
7341
+ | "DocumentUploaded"
7342
+ | "LoanCreated"
7343
+ | "WorkflowSubmitted"
7344
+ | "UserInvitationSent"
7345
+ | "CoBorrowerAdded"
7346
+ | "TaskCompleted"
7347
+ | "LoanStatusChanged"
7348
+ | "Consent"
7349
+ | "SensitiveDataPurge"
7350
+ | "ClosingDateUpdated"
7351
+ | "ConsumerConnectAssociation"
7352
+ | "TaskReminderSent"
7353
+ | "DocumentClassified"
7354
+ | "CoBorrowerEmailAutoFixed";
7355
+
7356
+ export type LoanLogDetailLevelEnum = "None" | "Info" | "Warning" | "Error";
7357
+
7358
+ export type LoanLogDetailTypeEnum =
7359
+ | "Loan"
7360
+ | "Queue"
7361
+ | "POSFlagChanged"
7362
+ | "Verification"
7363
+ | "DocumentUploaded"
7364
+ | "LoanCreated"
7365
+ | "WorkflowSubmitted"
7366
+ | "UserInvitationSent"
7367
+ | "CoBorrowerAdded"
7368
+ | "TaskCompleted"
7369
+ | "LoanStatusChanged"
7370
+ | "Consent"
7371
+ | "SensitiveDataPurge"
7372
+ | "ClosingDateUpdated"
7373
+ | "ConsumerConnectAssociation"
7374
+ | "TaskReminderSent"
7375
+ | "DocumentClassified"
7376
+ | "CoBorrowerEmailAutoFixed";
7377
+
7378
+ export type LoanTaskStatusSummaryStatusEnum =
7379
+ | "Outstanding"
7380
+ | "Pending"
7381
+ | "Completed"
7382
+ | "Rejected"
7383
+ | "Unknown";
7384
+
7385
+ export type LoanUserLoanRoleEnum =
7386
+ | "Borrower"
7387
+ | "CoBorrower"
7388
+ | "NonBorrower"
7389
+ | "LoanOfficer"
7390
+ | "LoanProcessor"
7391
+ | "LoanOfficerAssistant"
7392
+ | "SupportingLoanOfficer"
7393
+ | "BuyerAgent"
7394
+ | "SellerAgent"
7395
+ | "TitleInsuranceAgent"
7396
+ | "EscrowAgent"
7397
+ | "SettlementAgent"
7398
+ | "Admin";
7399
+
7400
+ export type LosOperationTrackingStatusEnum =
7401
+ | "Pending"
7402
+ | "Success"
7403
+ | "Failed"
7404
+ | "ConfigurationError"
7405
+ | "PermanentFailure"
7406
+ | "Locked";
7407
+
7408
+ export type LosSyncStepSeverityEnum = "Success" | "Info" | "Warning" | "Error";
7409
+
7410
+ export type ManualDocumentClassificationRequestDocumentTypeEnum =
7411
+ | "W2"
7412
+ | "Paystub"
7413
+ | "Form1099"
7414
+ | "Form1099Int"
7415
+ | "Form1099Misc"
7416
+ | "Form1099Nec"
7417
+ | "Form1099R"
7418
+ | "Form1099G"
7419
+ | "Form1099Div"
7420
+ | "Form1099Ssa"
7421
+ | "FederalTaxReturn1040"
7422
+ | "TaxReturnScheduleC"
7423
+ | "TaxReturnScheduleD"
7424
+ | "TaxReturnScheduleE"
7425
+ | "Form1065"
7426
+ | "Form1120"
7427
+ | "Form1120S"
7428
+ | "ProfitAndLossStatement"
7429
+ | "VerificationOfEmployment"
7430
+ | "BankStatement"
7431
+ | "InvestmentStatement"
7432
+ | "CreditCardStatement"
7433
+ | "MortgageStatement"
7434
+ | "PayoffStatement"
7435
+ | "HoaDocuments"
7436
+ | "UtilityBill"
7437
+ | "IdentityDocument"
7438
+ | "DemographicAddendum"
7439
+ | "Ssa89"
7440
+ | "Vba260551"
7441
+ | "Hud92900B"
7442
+ | "Check"
7443
+ | "Invoice"
7444
+ | "Receipt"
7445
+ | "LoanApplication1003"
7446
+ | "UnderwritingTransmittal1008"
7447
+ | "Other"
7448
+ | "SalesContract"
7449
+ | "TitleCommitment"
7450
+ | "DriversLicense"
7451
+ | "VerificationOfIncome"
7452
+ | "VerificationOfAssets"
7453
+ | "FloodCertificate"
7454
+ | "FraudReport"
7455
+ | "AddendumToSalesContract"
7456
+ | "GiftLetter"
7457
+ | "CpaLetter"
7458
+ | "TaxBill"
7459
+ | "CondoQuestionnaire"
7460
+ | "CondoBudget"
7461
+ | "CondoBylaws"
7462
+ | "RentalAgreements"
7463
+ | "Lease"
7464
+ | "HazardInsurance"
7465
+ | "VaCertificateOfEligibility"
7466
+ | "Appraisal"
7467
+ | "CreditReport"
7468
+ | "CondoMasterPolicy";
7469
+
7470
+ export type SiteConfigurationTypeEnum =
7471
+ | "None"
7472
+ | "Account"
7473
+ | "Corporate"
7474
+ | "Branch"
7475
+ | "LoanOfficer"
7476
+ | "Partner";
7477
+
7478
+ export type SiteConfigurationByUrlTypeEnum =
7479
+ | "None"
7480
+ | "Account"
7481
+ | "Corporate"
7482
+ | "Branch"
7483
+ | "LoanOfficer"
7484
+ | "Partner";
7485
+
7486
+ export type SiteConfigurationReducedTypeEnum =
7487
+ | "None"
7488
+ | "Account"
7489
+ | "Corporate"
7490
+ | "Branch"
7491
+ | "LoanOfficer"
7492
+ | "Partner";
7493
+
7494
+ export type SiteConfigurationRequestTypeEnum =
7495
+ | "None"
7496
+ | "Account"
7497
+ | "Corporate"
7498
+ | "Branch"
7499
+ | "LoanOfficer"
7500
+ | "Partner";
7501
+
7502
+ export type SiteConfigurationSummaryTypeEnum =
7503
+ | "None"
7504
+ | "Account"
7505
+ | "Corporate"
7506
+ | "Branch"
7507
+ | "LoanOfficer"
7508
+ | "Partner";
7509
+
7510
+ export type SiteTileLinkTargetEnum = "Self" | "Blank";
7511
+
7512
+ export type SiteTileRequestLinkTargetEnum = "Self" | "Blank";
7513
+
7514
+ export type SiteTileViewLinkTargetEnum = "Self" | "Blank";
7515
+
7516
+ export type UnregisteredBorrowerRoleEnum =
7517
+ | "Borrower"
7518
+ | "CoBorrower"
7519
+ | "NonBorrower"
7520
+ | "LoanOfficer"
7521
+ | "LoanProcessor"
7522
+ | "LoanOfficerAssistant"
7523
+ | "SupportingLoanOfficer"
7524
+ | "BuyerAgent"
7525
+ | "SellerAgent"
7526
+ | "TitleInsuranceAgent"
7527
+ | "EscrowAgent"
7528
+ | "SettlementAgent"
7529
+ | "Admin";
7530
+
7531
+ export type UpdateAiGuardrailRequestCategoryEnum =
7532
+ | "ContentSafety"
7533
+ | "PromptInjection"
7534
+ | "Privacy"
7535
+ | "Legal";
7536
+
7537
+ export type UpdateAiUrlSourceRequestCategoryEnum =
7538
+ | "Regulatory"
7539
+ | "Guidelines"
7540
+ | "MarketData"
7541
+ | "Custom";
7542
+
7543
+ export type UpdateAiUrlSourceRequestScopeEnum = "FullDomain" | "SpecificPath";
7544
+
7545
+ export type UserDraftRoleEnum =
7546
+ | "Borrower"
7547
+ | "CoBorrower"
7548
+ | "NonBorrower"
7549
+ | "LoanOfficer"
7550
+ | "LoanProcessor"
7551
+ | "LoanOfficerAssistant"
7552
+ | "SupportingLoanOfficer"
7553
+ | "BuyerAgent"
7554
+ | "SellerAgent"
7555
+ | "TitleInsuranceAgent"
7556
+ | "EscrowAgent"
7557
+ | "SettlementAgent"
7558
+ | "Admin";
7559
+
7560
+ export type UserGroupAccessScopeScopeTypeEnum = "User" | "Branch";
7561
+
7562
+ export type UserLoanRoleEnum =
7563
+ | "Borrower"
7564
+ | "CoBorrower"
7565
+ | "NonBorrower"
7566
+ | "LoanOfficer"
7567
+ | "LoanProcessor"
7568
+ | "LoanOfficerAssistant"
7569
+ | "SupportingLoanOfficer"
7570
+ | "BuyerAgent"
7571
+ | "SellerAgent"
7572
+ | "TitleInsuranceAgent"
7573
+ | "EscrowAgent"
7574
+ | "SettlementAgent"
7575
+ | "Admin";
7576
+
7577
+ export type UserLoanConsentTypeEnum =
7578
+ | "Econsent"
7579
+ | "CreditAuthorization"
7580
+ | "Tcpa";
7196
7581
 
7197
- export interface UserPublic {
7198
- /** @format uuid */
7199
- id: string;
7200
- role: string;
7201
- firstName: string;
7202
- lastName: string;
7203
- email: string;
7204
- phone?: string | null;
7205
- title?: string | null;
7206
- }
7582
+ export type UserLoanConsentLosSyncStatusEnum =
7583
+ | "NotStarted"
7584
+ | "Failed"
7585
+ | "Success";
7207
7586
 
7208
- export interface UserRelation {
7209
- /** @format uuid */
7210
- userId1: string;
7211
- /** @format uuid */
7212
- userId2: string;
7213
- relationType: string;
7214
- /** @format uuid */
7215
- id: string;
7216
- user1Email: string;
7217
- user1Role: string;
7218
- user2Email: string;
7219
- user2Role: string;
7220
- }
7587
+ export type UserSummaryRoleEnum =
7588
+ | "Borrower"
7589
+ | "LoanOfficer"
7590
+ | "Admin"
7591
+ | "SuperAdmin"
7592
+ | "Realtor"
7593
+ | "SettlementAgent"
7594
+ | "LoanProcessor"
7595
+ | "LoanOfficerAssistant"
7596
+ | "SystemAdmin";
7221
7597
 
7222
- export interface UserRelationship {
7223
- /** @format uuid */
7224
- id: string;
7225
- role: string;
7226
- firstName?: string | null;
7227
- lastName?: string | null;
7228
- email?: string | null;
7229
- phone?: string | null;
7230
- siteConfigurations: SiteConfigurationReduced[];
7231
- /** @format date-time */
7232
- createdAt?: string | null;
7233
- /** @format date-time */
7234
- deletedAt?: string | null;
7235
- }
7598
+ export type GetCustomFieldDefinitionsParamsEntityTypeEnum = "Loan";
7236
7599
 
7237
- export interface UserRelationshipProspect {
7238
- /** @format uuid */
7239
- id: string;
7240
- role: string;
7241
- firstName: string;
7242
- lastName: string;
7243
- email: string;
7244
- contactPhone?: string | null;
7245
- licenseNumber?: string | null;
7246
- /** @format uuid */
7247
- branchID: string;
7248
- companyName?: string | null;
7249
- /** @format date-time */
7250
- createdAt?: string | null;
7251
- /** @format date-time */
7252
- deletedAt?: string | null;
7253
- }
7600
+ /** @default "Realtor" */
7601
+ export type GetPartnersParamsRoleEnum =
7602
+ | "Borrower"
7603
+ | "LoanOfficer"
7604
+ | "Admin"
7605
+ | "SuperAdmin"
7606
+ | "Realtor"
7607
+ | "SettlementAgent"
7608
+ | "LoanProcessor"
7609
+ | "LoanOfficerAssistant"
7610
+ | "SystemAdmin";
7254
7611
 
7255
- export interface UserSearchCriteria {
7256
- searchText?: string | null;
7257
- isActive?: boolean | null;
7258
- roles?: string[] | null;
7259
- }
7612
+ export type GetSamlMetadataParamsSSoIntegrationEnum =
7613
+ | "ConsumerConnect"
7614
+ | "TheBigPOS"
7615
+ | "POSF";
7260
7616
 
7261
- export interface UserSummary {
7262
- /** @format uuid */
7263
- id: string;
7264
- name?: string | null;
7265
- email?: string | null;
7266
- role:
7267
- | "Borrower"
7268
- | "LoanOfficer"
7269
- | "Admin"
7270
- | "SuperAdmin"
7271
- | "Realtor"
7272
- | "SettlementAgent"
7273
- | "LoanProcessor"
7274
- | "LoanOfficerAssistant"
7275
- | "SystemAdmin";
7276
- }
7617
+ export type GetSamlMetadataParamsEnum =
7618
+ | "ConsumerConnect"
7619
+ | "TheBigPOS"
7620
+ | "POSF";
7277
7621
 
7278
- export interface VerifyPasswordRequest {
7279
- email: string;
7280
- code: string;
7281
- password: string;
7282
- /** @format uuid */
7283
- siteConfigurationId?: string | null;
7284
- }
7622
+ export type CreateOrReplaceSamlMetadataParamsSSoIntegrationEnum =
7623
+ | "ConsumerConnect"
7624
+ | "TheBigPOS"
7625
+ | "POSF";
7285
7626
 
7286
- export interface Workflow {
7287
- formType: string;
7288
- target: string;
7289
- authType: string;
7290
- name: string;
7291
- isDefault: boolean;
7292
- description: string;
7293
- slug: string;
7294
- status: string;
7295
- userRole: string;
7296
- borrowerType: string;
7297
- showProgressBar: boolean;
7298
- showTile: boolean;
7299
- tileLocation: string;
7300
- tileText: string;
7301
- tileSubtitle: string;
7302
- icon: string;
7303
- }
7627
+ export type CreateOrReplaceSamlMetadataParamsEnum =
7628
+ | "ConsumerConnect"
7629
+ | "TheBigPOS"
7630
+ | "POSF";
7631
+
7632
+ export type GetSiteTilesBySiteConfigurationParamsLocationEnum =
7633
+ | "HomePage"
7634
+ | "Dashboard";
7304
7635
 
7305
7636
  import type {
7306
7637
  AxiosInstance,
@@ -7343,14 +7674,12 @@ export interface ApiConfig<SecurityDataType = unknown>
7343
7674
  format?: ResponseType;
7344
7675
  }
7345
7676
 
7346
- export enum ContentType {
7347
- JsonPatch = "application/json-patch+json",
7348
- Json = "application/json",
7349
- JsonApi = "application/vnd.api+json",
7350
- FormData = "multipart/form-data",
7351
- UrlEncoded = "application/x-www-form-urlencoded",
7352
- Text = "text/plain",
7353
- }
7677
+ export type ContentType =
7678
+ | "application/json"
7679
+ | "application/vnd.api+json"
7680
+ | "multipart/form-data"
7681
+ | "application/x-www-form-urlencoded"
7682
+ | "text/plain";
7354
7683
 
7355
7684
  export class HttpClient<SecurityDataType = unknown> {
7356
7685
  public instance: AxiosInstance;
@@ -7447,7 +7776,7 @@ export class HttpClient<SecurityDataType = unknown> {
7447
7776
  const responseFormat = format || this.format || undefined;
7448
7777
 
7449
7778
  if (
7450
- type === ContentType.FormData &&
7779
+ type === "multipart/form-data" &&
7451
7780
  body &&
7452
7781
  body !== null &&
7453
7782
  typeof body === "object"
@@ -7456,7 +7785,7 @@ export class HttpClient<SecurityDataType = unknown> {
7456
7785
  }
7457
7786
 
7458
7787
  if (
7459
- type === ContentType.Text &&
7788
+ type === "text/plain" &&
7460
7789
  body &&
7461
7790
  body !== null &&
7462
7791
  typeof body !== "string"
@@ -7480,7 +7809,7 @@ export class HttpClient<SecurityDataType = unknown> {
7480
7809
 
7481
7810
  /**
7482
7811
  * @title The Big POS API
7483
- * @version v2.46.8
7812
+ * @version v2.47.0
7484
7813
  * @termsOfService https://www.thebigpos.com/terms-of-use/
7485
7814
  * @contact Mortgage Automation Technologies <support@thebigpos.com> (https://www.thebigpos.com/terms-of-use/)
7486
7815
  */
@@ -7563,7 +7892,7 @@ export class Api<
7563
7892
  method: "PUT",
7564
7893
  body: data,
7565
7894
  secure: true,
7566
- type: ContentType.Json,
7895
+ type: "application/json",
7567
7896
  format: "json",
7568
7897
  ...params,
7569
7898
  }),
@@ -7607,7 +7936,7 @@ export class Api<
7607
7936
  method: "PUT",
7608
7937
  body: data,
7609
7938
  secure: true,
7610
- type: ContentType.Json,
7939
+ type: "application/json",
7611
7940
  format: "json",
7612
7941
  ...params,
7613
7942
  }),
@@ -7631,7 +7960,7 @@ export class Api<
7631
7960
  method: "POST",
7632
7961
  body: data,
7633
7962
  secure: true,
7634
- type: ContentType.Json,
7963
+ type: "application/json",
7635
7964
  ...params,
7636
7965
  }),
7637
7966
 
@@ -7655,7 +7984,7 @@ export class Api<
7655
7984
  method: "POST",
7656
7985
  body: data,
7657
7986
  secure: true,
7658
- type: ContentType.Json,
7987
+ type: "application/json",
7659
7988
  ...params,
7660
7989
  }),
7661
7990
 
@@ -7695,7 +8024,7 @@ export class Api<
7695
8024
  method: "POST",
7696
8025
  body: data,
7697
8026
  secure: true,
7698
- type: ContentType.Json,
8027
+ type: "application/json",
7699
8028
  format: "json",
7700
8029
  ...params,
7701
8030
  }),
@@ -7771,7 +8100,7 @@ export class Api<
7771
8100
  method: "PUT",
7772
8101
  body: data,
7773
8102
  secure: true,
7774
- type: ContentType.Json,
8103
+ type: "application/json",
7775
8104
  format: "json",
7776
8105
  ...params,
7777
8106
  }),
@@ -7834,7 +8163,7 @@ export class Api<
7834
8163
  method: "PUT",
7835
8164
  body: data,
7836
8165
  secure: true,
7837
- type: ContentType.Json,
8166
+ type: "application/json",
7838
8167
  ...params,
7839
8168
  }),
7840
8169
 
@@ -7877,7 +8206,7 @@ export class Api<
7877
8206
  method: "PUT",
7878
8207
  body: data,
7879
8208
  secure: true,
7880
- type: ContentType.Json,
8209
+ type: "application/json",
7881
8210
  format: "json",
7882
8211
  ...params,
7883
8212
  }),
@@ -7918,7 +8247,7 @@ export class Api<
7918
8247
  method: "POST",
7919
8248
  body: data,
7920
8249
  secure: true,
7921
- type: ContentType.Json,
8250
+ type: "application/json",
7922
8251
  format: "json",
7923
8252
  ...params,
7924
8253
  }),
@@ -7965,7 +8294,7 @@ export class Api<
7965
8294
  method: "PUT",
7966
8295
  body: data,
7967
8296
  secure: true,
7968
- type: ContentType.Json,
8297
+ type: "application/json",
7969
8298
  format: "json",
7970
8299
  ...params,
7971
8300
  }),
@@ -7990,52 +8319,6 @@ export class Api<
7990
8319
  ...params,
7991
8320
  }),
7992
8321
 
7993
- /**
7994
- * No description
7995
- *
7996
- * @tags AiAdminPrompt
7997
- * @name GetAiTools
7998
- * @summary List available agent tools and their settings schema
7999
- * @request GET:/api/ai/prompts/tools
8000
- * @secure
8001
- * @response `200` `(AiToolCatalogItem)[]` OK
8002
- */
8003
- getAiTools: (params: RequestParams = {}) =>
8004
- this.request<AiToolCatalogItem[], any>({
8005
- path: `/api/ai/prompts/tools`,
8006
- method: "GET",
8007
- secure: true,
8008
- format: "json",
8009
- ...params,
8010
- }),
8011
-
8012
- /**
8013
- * No description
8014
- *
8015
- * @tags AiAdminPrompt
8016
- * @name UpdateAiPromptTools
8017
- * @summary Replace the prompt's agent tool configuration
8018
- * @request PUT:/api/ai/prompts/{id}/tools
8019
- * @secure
8020
- * @response `200` `AiPrompt` OK
8021
- * @response `400` `ProblemDetails` Bad Request
8022
- * @response `404` `ProblemDetails` Not Found
8023
- */
8024
- updateAiPromptTools: (
8025
- id: string,
8026
- data: UpdateAiPromptToolsRequest,
8027
- params: RequestParams = {},
8028
- ) =>
8029
- this.request<AiPrompt, ProblemDetails>({
8030
- path: `/api/ai/prompts/${id}/tools`,
8031
- method: "PUT",
8032
- body: data,
8033
- secure: true,
8034
- type: ContentType.Json,
8035
- format: "json",
8036
- ...params,
8037
- }),
8038
-
8039
8322
  /**
8040
8323
  * No description
8041
8324
  *
@@ -8076,7 +8359,7 @@ export class Api<
8076
8359
  method: "POST",
8077
8360
  body: data,
8078
8361
  secure: true,
8079
- type: ContentType.JsonPatch,
8362
+ type: "application/json",
8080
8363
  format: "json",
8081
8364
  ...params,
8082
8365
  }),
@@ -8139,7 +8422,7 @@ export class Api<
8139
8422
  method: "PUT",
8140
8423
  body: data,
8141
8424
  secure: true,
8142
- type: ContentType.Json,
8425
+ type: "application/json",
8143
8426
  format: "json",
8144
8427
  ...params,
8145
8428
  }),
@@ -8361,7 +8644,7 @@ export class Api<
8361
8644
  method: "POST",
8362
8645
  body: data,
8363
8646
  secure: true,
8364
- type: ContentType.Json,
8647
+ type: "application/json",
8365
8648
  format: "json",
8366
8649
  ...params,
8367
8650
  }),
@@ -8408,7 +8691,7 @@ export class Api<
8408
8691
  method: "PUT",
8409
8692
  body: data,
8410
8693
  secure: true,
8411
- type: ContentType.Json,
8694
+ type: "application/json",
8412
8695
  format: "json",
8413
8696
  ...params,
8414
8697
  }),
@@ -8470,7 +8753,7 @@ export class Api<
8470
8753
  method: "POST",
8471
8754
  body: data,
8472
8755
  secure: true,
8473
- type: ContentType.JsonPatch,
8756
+ type: "application/json",
8474
8757
  format: "json",
8475
8758
  ...params,
8476
8759
  }),
@@ -8551,7 +8834,7 @@ export class Api<
8551
8834
  method: "PATCH",
8552
8835
  body: data,
8553
8836
  secure: true,
8554
- type: ContentType.JsonPatch,
8837
+ type: "application/json",
8555
8838
  format: "json",
8556
8839
  ...params,
8557
8840
  }),
@@ -8651,7 +8934,7 @@ export class Api<
8651
8934
  method: "PUT",
8652
8935
  body: data,
8653
8936
  secure: true,
8654
- type: ContentType.Json,
8937
+ type: "application/json",
8655
8938
  format: "json",
8656
8939
  ...params,
8657
8940
  }),
@@ -8779,7 +9062,7 @@ export class Api<
8779
9062
  method: "POST",
8780
9063
  body: data,
8781
9064
  secure: true,
8782
- type: ContentType.Json,
9065
+ type: "application/json",
8783
9066
  format: "json",
8784
9067
  ...params,
8785
9068
  }),
@@ -8826,7 +9109,7 @@ export class Api<
8826
9109
  method: "PUT",
8827
9110
  body: data,
8828
9111
  secure: true,
8829
- type: ContentType.Json,
9112
+ type: "application/json",
8830
9113
  format: "json",
8831
9114
  ...params,
8832
9115
  }),
@@ -8924,7 +9207,7 @@ export class Api<
8924
9207
  query: query,
8925
9208
  body: data,
8926
9209
  secure: true,
8927
- type: ContentType.JsonPatch,
9210
+ type: "application/json",
8928
9211
  format: "json",
8929
9212
  ...params,
8930
9213
  }),
@@ -9000,7 +9283,7 @@ export class Api<
9000
9283
  method: "PUT",
9001
9284
  body: data,
9002
9285
  secure: true,
9003
- type: ContentType.Json,
9286
+ type: "application/json",
9004
9287
  format: "json",
9005
9288
  ...params,
9006
9289
  }),
@@ -9045,7 +9328,7 @@ export class Api<
9045
9328
  method: "POST",
9046
9329
  body: data,
9047
9330
  secure: true,
9048
- type: ContentType.Json,
9331
+ type: "application/json",
9049
9332
  format: "json",
9050
9333
  ...params,
9051
9334
  }),
@@ -9093,7 +9376,7 @@ export class Api<
9093
9376
  method: "PUT",
9094
9377
  body: data,
9095
9378
  secure: true,
9096
- type: ContentType.Json,
9379
+ type: "application/json",
9097
9380
  format: "json",
9098
9381
  ...params,
9099
9382
  }),
@@ -9214,7 +9497,7 @@ export class Api<
9214
9497
  query: query,
9215
9498
  body: data,
9216
9499
  secure: true,
9217
- type: ContentType.JsonPatch,
9500
+ type: "application/json",
9218
9501
  format: "json",
9219
9502
  ...params,
9220
9503
  }),
@@ -9279,7 +9562,7 @@ export class Api<
9279
9562
  method: "POST",
9280
9563
  body: data,
9281
9564
  secure: true,
9282
- type: ContentType.Json,
9565
+ type: "application/json",
9283
9566
  format: "json",
9284
9567
  ...params,
9285
9568
  }),
@@ -9301,7 +9584,7 @@ export class Api<
9301
9584
  method: "POST",
9302
9585
  body: data,
9303
9586
  secure: true,
9304
- type: ContentType.Json,
9587
+ type: "application/json",
9305
9588
  format: "json",
9306
9589
  ...params,
9307
9590
  }),
@@ -9326,7 +9609,7 @@ export class Api<
9326
9609
  method: "POST",
9327
9610
  body: data,
9328
9611
  secure: true,
9329
- type: ContentType.Json,
9612
+ type: "application/json",
9330
9613
  format: "json",
9331
9614
  ...params,
9332
9615
  }),
@@ -9348,7 +9631,7 @@ export class Api<
9348
9631
  method: "POST",
9349
9632
  body: data,
9350
9633
  secure: true,
9351
- type: ContentType.Json,
9634
+ type: "application/json",
9352
9635
  format: "json",
9353
9636
  ...params,
9354
9637
  }),
@@ -9370,7 +9653,7 @@ export class Api<
9370
9653
  method: "POST",
9371
9654
  body: data,
9372
9655
  secure: true,
9373
- type: ContentType.Json,
9656
+ type: "application/json",
9374
9657
  format: "json",
9375
9658
  ...params,
9376
9659
  }),
@@ -9443,7 +9726,7 @@ export class Api<
9443
9726
  method: "POST",
9444
9727
  body: data,
9445
9728
  secure: true,
9446
- type: ContentType.Json,
9729
+ type: "application/json",
9447
9730
  format: "json",
9448
9731
  ...params,
9449
9732
  }),
@@ -9476,7 +9759,7 @@ export class Api<
9476
9759
  query: query,
9477
9760
  body: data,
9478
9761
  secure: true,
9479
- type: ContentType.Json,
9762
+ type: "application/json",
9480
9763
  format: "json",
9481
9764
  ...params,
9482
9765
  }),
@@ -9521,7 +9804,7 @@ export class Api<
9521
9804
  method: "PUT",
9522
9805
  body: data,
9523
9806
  secure: true,
9524
- type: ContentType.Json,
9807
+ type: "application/json",
9525
9808
  format: "json",
9526
9809
  ...params,
9527
9810
  }),
@@ -9584,7 +9867,7 @@ export class Api<
9584
9867
  method: "POST",
9585
9868
  body: data,
9586
9869
  secure: true,
9587
- type: ContentType.Json,
9870
+ type: "application/json",
9588
9871
  format: "json",
9589
9872
  ...params,
9590
9873
  }),
@@ -9638,7 +9921,7 @@ export class Api<
9638
9921
  query: query,
9639
9922
  body: data,
9640
9923
  secure: true,
9641
- type: ContentType.Json,
9924
+ type: "application/json",
9642
9925
  format: "json",
9643
9926
  ...params,
9644
9927
  }),
@@ -9707,7 +9990,7 @@ export class Api<
9707
9990
  method: "POST",
9708
9991
  body: data,
9709
9992
  secure: true,
9710
- type: ContentType.Json,
9993
+ type: "application/json",
9711
9994
  format: "json",
9712
9995
  ...params,
9713
9996
  }),
@@ -9752,7 +10035,7 @@ export class Api<
9752
10035
  method: "PUT",
9753
10036
  body: data,
9754
10037
  secure: true,
9755
- type: ContentType.Json,
10038
+ type: "application/json",
9756
10039
  format: "json",
9757
10040
  ...params,
9758
10041
  }),
@@ -9813,7 +10096,7 @@ export class Api<
9813
10096
  method: "POST",
9814
10097
  body: data,
9815
10098
  secure: true,
9816
- type: ContentType.Json,
10099
+ type: "application/json",
9817
10100
  format: "json",
9818
10101
  ...params,
9819
10102
  }),
@@ -9912,7 +10195,7 @@ export class Api<
9912
10195
  method: "POST",
9913
10196
  body: data,
9914
10197
  secure: true,
9915
- type: ContentType.Json,
10198
+ type: "application/json",
9916
10199
  format: "json",
9917
10200
  ...params,
9918
10201
  }),
@@ -9945,7 +10228,7 @@ export class Api<
9945
10228
  query: query,
9946
10229
  body: data,
9947
10230
  secure: true,
9948
- type: ContentType.Json,
10231
+ type: "application/json",
9949
10232
  format: "json",
9950
10233
  ...params,
9951
10234
  }),
@@ -9990,7 +10273,7 @@ export class Api<
9990
10273
  method: "PUT",
9991
10274
  body: data,
9992
10275
  secure: true,
9993
- type: ContentType.Json,
10276
+ type: "application/json",
9994
10277
  format: "json",
9995
10278
  ...params,
9996
10279
  }),
@@ -10052,7 +10335,7 @@ export class Api<
10052
10335
  method: "POST",
10053
10336
  body: data,
10054
10337
  secure: true,
10055
- type: ContentType.Json,
10338
+ type: "application/json",
10056
10339
  format: "json",
10057
10340
  ...params,
10058
10341
  }),
@@ -10106,7 +10389,7 @@ export class Api<
10106
10389
  query: query,
10107
10390
  body: data,
10108
10391
  secure: true,
10109
- type: ContentType.Json,
10392
+ type: "application/json",
10110
10393
  format: "json",
10111
10394
  ...params,
10112
10395
  }),
@@ -10161,7 +10444,7 @@ export class Api<
10161
10444
  */
10162
10445
  getCustomFieldDefinitions: (
10163
10446
  query?: {
10164
- entityType?: "Loan";
10447
+ entityType?: GetCustomFieldDefinitionsParamsEntityTypeEnum;
10165
10448
  },
10166
10449
  params: RequestParams = {},
10167
10450
  ) =>
@@ -10195,7 +10478,7 @@ export class Api<
10195
10478
  method: "POST",
10196
10479
  body: data,
10197
10480
  secure: true,
10198
- type: ContentType.Json,
10481
+ type: "application/json",
10199
10482
  format: "json",
10200
10483
  ...params,
10201
10484
  }),
@@ -10244,7 +10527,7 @@ export class Api<
10244
10527
  method: "PUT",
10245
10528
  body: data,
10246
10529
  secure: true,
10247
- type: ContentType.Json,
10530
+ type: "application/json",
10248
10531
  format: "json",
10249
10532
  ...params,
10250
10533
  }),
@@ -10378,7 +10661,7 @@ export class Api<
10378
10661
  method: "PUT",
10379
10662
  body: data,
10380
10663
  secure: true,
10381
- type: ContentType.Json,
10664
+ type: "application/json",
10382
10665
  format: "json",
10383
10666
  ...params,
10384
10667
  }),
@@ -10497,7 +10780,7 @@ export class Api<
10497
10780
  method: "POST",
10498
10781
  body: data,
10499
10782
  secure: true,
10500
- type: ContentType.Json,
10783
+ type: "application/json",
10501
10784
  format: "json",
10502
10785
  ...params,
10503
10786
  }),
@@ -10574,7 +10857,7 @@ export class Api<
10574
10857
  method: "PUT",
10575
10858
  body: data,
10576
10859
  secure: true,
10577
- type: ContentType.Json,
10860
+ type: "application/json",
10578
10861
  format: "json",
10579
10862
  ...params,
10580
10863
  }),
@@ -10661,7 +10944,7 @@ export class Api<
10661
10944
  method: "POST",
10662
10945
  body: data,
10663
10946
  secure: true,
10664
- type: ContentType.Json,
10947
+ type: "application/json",
10665
10948
  format: "json",
10666
10949
  ...params,
10667
10950
  }),
@@ -10710,7 +10993,7 @@ export class Api<
10710
10993
  method: "PUT",
10711
10994
  body: data,
10712
10995
  secure: true,
10713
- type: ContentType.Json,
10996
+ type: "application/json",
10714
10997
  format: "json",
10715
10998
  ...params,
10716
10999
  }),
@@ -10785,7 +11068,7 @@ export class Api<
10785
11068
  method: "POST",
10786
11069
  body: data,
10787
11070
  secure: true,
10788
- type: ContentType.Json,
11071
+ type: "application/json",
10789
11072
  format: "json",
10790
11073
  ...params,
10791
11074
  }),
@@ -11002,7 +11285,7 @@ export class Api<
11002
11285
  method: "POST",
11003
11286
  body: data,
11004
11287
  secure: true,
11005
- type: ContentType.Json,
11288
+ type: "application/json",
11006
11289
  format: "json",
11007
11290
  ...params,
11008
11291
  }),
@@ -11065,7 +11348,7 @@ export class Api<
11065
11348
  method: "POST",
11066
11349
  body: data,
11067
11350
  secure: true,
11068
- type: ContentType.FormData,
11351
+ type: "multipart/form-data",
11069
11352
  format: "json",
11070
11353
  ...params,
11071
11354
  }),
@@ -11106,7 +11389,7 @@ export class Api<
11106
11389
  method: "PUT",
11107
11390
  body: data,
11108
11391
  secure: true,
11109
- type: ContentType.Json,
11392
+ type: "application/json",
11110
11393
  format: "json",
11111
11394
  ...params,
11112
11395
  }),
@@ -11157,7 +11440,7 @@ export class Api<
11157
11440
  query: query,
11158
11441
  body: data,
11159
11442
  secure: true,
11160
- type: ContentType.Json,
11443
+ type: "application/json",
11161
11444
  format: "json",
11162
11445
  ...params,
11163
11446
  }),
@@ -11204,7 +11487,7 @@ export class Api<
11204
11487
  method: "POST",
11205
11488
  body: data,
11206
11489
  secure: true,
11207
- type: ContentType.Json,
11490
+ type: "application/json",
11208
11491
  format: "json",
11209
11492
  ...params,
11210
11493
  }),
@@ -11245,7 +11528,7 @@ export class Api<
11245
11528
  method: "PUT",
11246
11529
  body: data,
11247
11530
  secure: true,
11248
- type: ContentType.Json,
11531
+ type: "application/json",
11249
11532
  format: "json",
11250
11533
  ...params,
11251
11534
  }),
@@ -11311,7 +11594,7 @@ export class Api<
11311
11594
  method: "POST",
11312
11595
  body: data,
11313
11596
  secure: true,
11314
- type: ContentType.FormData,
11597
+ type: "multipart/form-data",
11315
11598
  format: "json",
11316
11599
  ...params,
11317
11600
  }),
@@ -11419,7 +11702,7 @@ export class Api<
11419
11702
  query: query,
11420
11703
  body: data,
11421
11704
  secure: true,
11422
- type: ContentType.Json,
11705
+ type: "application/json",
11423
11706
  format: "json",
11424
11707
  ...params,
11425
11708
  }),
@@ -11463,7 +11746,7 @@ export class Api<
11463
11746
  method: "PUT",
11464
11747
  body: data,
11465
11748
  secure: true,
11466
- type: ContentType.Json,
11749
+ type: "application/json",
11467
11750
  format: "json",
11468
11751
  ...params,
11469
11752
  }),
@@ -11514,7 +11797,7 @@ export class Api<
11514
11797
  query: query,
11515
11798
  body: data,
11516
11799
  secure: true,
11517
- type: ContentType.Json,
11800
+ type: "application/json",
11518
11801
  format: "json",
11519
11802
  ...params,
11520
11803
  }),
@@ -11558,7 +11841,7 @@ export class Api<
11558
11841
  method: "POST",
11559
11842
  body: data,
11560
11843
  secure: true,
11561
- type: ContentType.Json,
11844
+ type: "application/json",
11562
11845
  format: "json",
11563
11846
  ...params,
11564
11847
  }),
@@ -11603,7 +11886,7 @@ export class Api<
11603
11886
  method: "PUT",
11604
11887
  body: data,
11605
11888
  secure: true,
11606
- type: ContentType.Json,
11889
+ type: "application/json",
11607
11890
  format: "json",
11608
11891
  ...params,
11609
11892
  }),
@@ -11691,7 +11974,7 @@ export class Api<
11691
11974
  method: "PATCH",
11692
11975
  body: data,
11693
11976
  secure: true,
11694
- type: ContentType.JsonPatch,
11977
+ type: "application/json",
11695
11978
  format: "json",
11696
11979
  ...params,
11697
11980
  }),
@@ -11712,7 +11995,7 @@ export class Api<
11712
11995
  method: "POST",
11713
11996
  body: data,
11714
11997
  secure: true,
11715
- type: ContentType.Json,
11998
+ type: "application/json",
11716
11999
  format: "json",
11717
12000
  ...params,
11718
12001
  }),
@@ -11744,7 +12027,7 @@ export class Api<
11744
12027
  query: query,
11745
12028
  body: data,
11746
12029
  secure: true,
11747
- type: ContentType.Json,
12030
+ type: "application/json",
11748
12031
  format: "json",
11749
12032
  ...params,
11750
12033
  }),
@@ -11775,7 +12058,7 @@ export class Api<
11775
12058
  query: query,
11776
12059
  body: data,
11777
12060
  secure: true,
11778
- type: ContentType.Json,
12061
+ type: "application/json",
11779
12062
  format: "json",
11780
12063
  ...params,
11781
12064
  }),
@@ -11801,7 +12084,7 @@ export class Api<
11801
12084
  method: "PATCH",
11802
12085
  body: data,
11803
12086
  secure: true,
11804
- type: ContentType.JsonPatch,
12087
+ type: "application/json",
11805
12088
  format: "json",
11806
12089
  ...params,
11807
12090
  }),
@@ -11828,7 +12111,7 @@ export class Api<
11828
12111
  method: "PATCH",
11829
12112
  body: data,
11830
12113
  secure: true,
11831
- type: ContentType.JsonPatch,
12114
+ type: "application/json",
11832
12115
  format: "json",
11833
12116
  ...params,
11834
12117
  }),
@@ -12001,7 +12284,7 @@ export class Api<
12001
12284
  method: "POST",
12002
12285
  body: data,
12003
12286
  secure: true,
12004
- type: ContentType.FormData,
12287
+ type: "multipart/form-data",
12005
12288
  format: "json",
12006
12289
  ...params,
12007
12290
  }),
@@ -12026,7 +12309,7 @@ export class Api<
12026
12309
  method: "PATCH",
12027
12310
  body: data,
12028
12311
  secure: true,
12029
- type: ContentType.JsonPatch,
12312
+ type: "application/json",
12030
12313
  format: "json",
12031
12314
  ...params,
12032
12315
  }),
@@ -12081,7 +12364,7 @@ export class Api<
12081
12364
  method: "POST",
12082
12365
  body: data,
12083
12366
  secure: true,
12084
- type: ContentType.FormData,
12367
+ type: "multipart/form-data",
12085
12368
  format: "json",
12086
12369
  ...params,
12087
12370
  }),
@@ -12106,7 +12389,7 @@ export class Api<
12106
12389
  method: "PATCH",
12107
12390
  body: data,
12108
12391
  secure: true,
12109
- type: ContentType.JsonPatch,
12392
+ type: "application/json",
12110
12393
  format: "json",
12111
12394
  ...params,
12112
12395
  }),
@@ -12180,7 +12463,7 @@ export class Api<
12180
12463
  method: "POST",
12181
12464
  body: data,
12182
12465
  secure: true,
12183
- type: ContentType.Json,
12466
+ type: "application/json",
12184
12467
  format: "json",
12185
12468
  ...params,
12186
12469
  }),
@@ -12243,7 +12526,7 @@ export class Api<
12243
12526
  method: "PUT",
12244
12527
  body: data,
12245
12528
  secure: true,
12246
- type: ContentType.Json,
12529
+ type: "application/json",
12247
12530
  format: "json",
12248
12531
  ...params,
12249
12532
  }),
@@ -12294,7 +12577,7 @@ export class Api<
12294
12577
  query: query,
12295
12578
  body: data,
12296
12579
  secure: true,
12297
- type: ContentType.Json,
12580
+ type: "application/json",
12298
12581
  format: "json",
12299
12582
  ...params,
12300
12583
  }),
@@ -12322,7 +12605,7 @@ export class Api<
12322
12605
  method: "PUT",
12323
12606
  body: data,
12324
12607
  secure: true,
12325
- type: ContentType.FormData,
12608
+ type: "multipart/form-data",
12326
12609
  format: "json",
12327
12610
  ...params,
12328
12611
  }),
@@ -12405,7 +12688,7 @@ export class Api<
12405
12688
  method: "POST",
12406
12689
  body: data,
12407
12690
  secure: true,
12408
- type: ContentType.Json,
12691
+ type: "application/json",
12409
12692
  format: "json",
12410
12693
  ...params,
12411
12694
  }),
@@ -12452,7 +12735,7 @@ export class Api<
12452
12735
  method: "POST",
12453
12736
  body: data,
12454
12737
  secure: true,
12455
- type: ContentType.Json,
12738
+ type: "application/json",
12456
12739
  format: "json",
12457
12740
  ...params,
12458
12741
  }),
@@ -12500,7 +12783,7 @@ export class Api<
12500
12783
  method: "POST",
12501
12784
  body: data,
12502
12785
  secure: true,
12503
- type: ContentType.Json,
12786
+ type: "application/json",
12504
12787
  ...params,
12505
12788
  }),
12506
12789
 
@@ -12565,7 +12848,7 @@ export class Api<
12565
12848
  method: "PUT",
12566
12849
  body: data,
12567
12850
  secure: true,
12568
- type: ContentType.Json,
12851
+ type: "application/json",
12569
12852
  ...params,
12570
12853
  }),
12571
12854
 
@@ -12593,7 +12876,7 @@ export class Api<
12593
12876
  method: "PUT",
12594
12877
  body: data,
12595
12878
  secure: true,
12596
- type: ContentType.Json,
12879
+ type: "application/json",
12597
12880
  ...params,
12598
12881
  }),
12599
12882
 
@@ -12659,7 +12942,7 @@ export class Api<
12659
12942
  method: "POST",
12660
12943
  body: data,
12661
12944
  secure: true,
12662
- type: ContentType.Json,
12945
+ type: "application/json",
12663
12946
  format: "json",
12664
12947
  ...params,
12665
12948
  }),
@@ -12704,7 +12987,7 @@ export class Api<
12704
12987
  method: "POST",
12705
12988
  body: data,
12706
12989
  secure: true,
12707
- type: ContentType.Json,
12990
+ type: "application/json",
12708
12991
  format: "json",
12709
12992
  ...params,
12710
12993
  }),
@@ -12753,7 +13036,7 @@ export class Api<
12753
13036
  method: "PUT",
12754
13037
  body: data,
12755
13038
  secure: true,
12756
- type: ContentType.Json,
13039
+ type: "application/json",
12757
13040
  format: "json",
12758
13041
  ...params,
12759
13042
  }),
@@ -12888,7 +13171,7 @@ export class Api<
12888
13171
  method: "POST",
12889
13172
  body: data,
12890
13173
  secure: true,
12891
- type: ContentType.Json,
13174
+ type: "application/json",
12892
13175
  format: "json",
12893
13176
  ...params,
12894
13177
  }),
@@ -12922,7 +13205,7 @@ export class Api<
12922
13205
  query: query,
12923
13206
  body: data,
12924
13207
  secure: true,
12925
- type: ContentType.Json,
13208
+ type: "application/json",
12926
13209
  format: "json",
12927
13210
  ...params,
12928
13211
  }),
@@ -12952,7 +13235,7 @@ export class Api<
12952
13235
  query: query,
12953
13236
  body: data,
12954
13237
  secure: true,
12955
- type: ContentType.Json,
13238
+ type: "application/json",
12956
13239
  format: "json",
12957
13240
  ...params,
12958
13241
  }),
@@ -12965,7 +13248,7 @@ export class Api<
12965
13248
  * @summary Download By ID
12966
13249
  * @request GET:/api/loans/{loanId}/documents/{documentId}/download
12967
13250
  * @secure
12968
- * @response `200` `string` OK
13251
+ * @response `200` `Blob` OK
12969
13252
  * @response `404` `ProblemDetails` Not Found
12970
13253
  */
12971
13254
  downloadLoanDocument: (
@@ -12973,7 +13256,7 @@ export class Api<
12973
13256
  documentId: string,
12974
13257
  params: RequestParams = {},
12975
13258
  ) =>
12976
- this.request<string, ProblemDetails>({
13259
+ this.request<Blob, ProblemDetails>({
12977
13260
  path: `/api/loans/${loanId}/documents/${documentId}/download`,
12978
13261
  method: "GET",
12979
13262
  secure: true,
@@ -13010,7 +13293,7 @@ export class Api<
13010
13293
  method: "POST",
13011
13294
  body: data,
13012
13295
  secure: true,
13013
- type: ContentType.FormData,
13296
+ type: "multipart/form-data",
13014
13297
  format: "json",
13015
13298
  ...params,
13016
13299
  }),
@@ -13060,7 +13343,7 @@ export class Api<
13060
13343
  method: "POST",
13061
13344
  body: data,
13062
13345
  secure: true,
13063
- type: ContentType.Json,
13346
+ type: "application/json",
13064
13347
  format: "json",
13065
13348
  ...params,
13066
13349
  }),
@@ -13087,7 +13370,7 @@ export class Api<
13087
13370
  method: "POST",
13088
13371
  body: data,
13089
13372
  secure: true,
13090
- type: ContentType.Json,
13373
+ type: "application/json",
13091
13374
  ...params,
13092
13375
  }),
13093
13376
 
@@ -13134,7 +13417,7 @@ export class Api<
13134
13417
  method: "POST",
13135
13418
  body: data,
13136
13419
  secure: true,
13137
- type: ContentType.Json,
13420
+ type: "application/json",
13138
13421
  format: "json",
13139
13422
  ...params,
13140
13423
  }),
@@ -13179,7 +13462,7 @@ export class Api<
13179
13462
  method: "POST",
13180
13463
  body: data,
13181
13464
  secure: true,
13182
- type: ContentType.Json,
13465
+ type: "application/json",
13183
13466
  format: "json",
13184
13467
  ...params,
13185
13468
  }),
@@ -13242,7 +13525,7 @@ export class Api<
13242
13525
  method: "PUT",
13243
13526
  body: data,
13244
13527
  secure: true,
13245
- type: ContentType.Json,
13528
+ type: "application/json",
13246
13529
  format: "json",
13247
13530
  ...params,
13248
13531
  }),
@@ -13293,7 +13576,7 @@ export class Api<
13293
13576
  query: query,
13294
13577
  body: data,
13295
13578
  secure: true,
13296
- type: ContentType.Json,
13579
+ type: "application/json",
13297
13580
  format: "json",
13298
13581
  ...params,
13299
13582
  }),
@@ -13318,7 +13601,7 @@ export class Api<
13318
13601
  method: "PUT",
13319
13602
  body: data,
13320
13603
  secure: true,
13321
- type: ContentType.Json,
13604
+ type: "application/json",
13322
13605
  format: "json",
13323
13606
  ...params,
13324
13607
  }),
@@ -13393,7 +13676,7 @@ export class Api<
13393
13676
  method: "POST",
13394
13677
  body: data,
13395
13678
  secure: true,
13396
- type: ContentType.Json,
13679
+ type: "application/json",
13397
13680
  format: "json",
13398
13681
  ...params,
13399
13682
  }),
@@ -13489,7 +13772,7 @@ export class Api<
13489
13772
  method: "POST",
13490
13773
  body: data,
13491
13774
  secure: true,
13492
- type: ContentType.Json,
13775
+ type: "application/json",
13493
13776
  format: "json",
13494
13777
  ...params,
13495
13778
  }),
@@ -13523,7 +13806,7 @@ export class Api<
13523
13806
  query: query,
13524
13807
  body: data,
13525
13808
  secure: true,
13526
- type: ContentType.Json,
13809
+ type: "application/json",
13527
13810
  format: "json",
13528
13811
  ...params,
13529
13812
  }),
@@ -13574,7 +13857,7 @@ export class Api<
13574
13857
  method: "POST",
13575
13858
  body: data,
13576
13859
  secure: true,
13577
- type: ContentType.Json,
13860
+ type: "application/json",
13578
13861
  ...params,
13579
13862
  }),
13580
13863
 
@@ -13600,7 +13883,7 @@ export class Api<
13600
13883
  method: "POST",
13601
13884
  body: data,
13602
13885
  secure: true,
13603
- type: ContentType.Json,
13886
+ type: "application/json",
13604
13887
  ...params,
13605
13888
  }),
13606
13889
 
@@ -13663,7 +13946,7 @@ export class Api<
13663
13946
  query: query,
13664
13947
  body: data,
13665
13948
  secure: true,
13666
- type: ContentType.Json,
13949
+ type: "application/json",
13667
13950
  format: "json",
13668
13951
  ...params,
13669
13952
  }),
@@ -13708,7 +13991,7 @@ export class Api<
13708
13991
  method: "POST",
13709
13992
  body: data,
13710
13993
  secure: true,
13711
- type: ContentType.Json,
13994
+ type: "application/json",
13712
13995
  format: "json",
13713
13996
  ...params,
13714
13997
  }),
@@ -13762,7 +14045,7 @@ export class Api<
13762
14045
  query: query,
13763
14046
  body: data,
13764
14047
  secure: true,
13765
- type: ContentType.Json,
14048
+ type: "application/json",
13766
14049
  format: "json",
13767
14050
  ...params,
13768
14051
  }),
@@ -13795,7 +14078,7 @@ export class Api<
13795
14078
  query: query,
13796
14079
  body: data,
13797
14080
  secure: true,
13798
- type: ContentType.Json,
14081
+ type: "application/json",
13799
14082
  format: "json",
13800
14083
  ...params,
13801
14084
  }),
@@ -13841,7 +14124,7 @@ export class Api<
13841
14124
  method: "PUT",
13842
14125
  body: data,
13843
14126
  secure: true,
13844
- type: ContentType.Json,
14127
+ type: "application/json",
13845
14128
  format: "json",
13846
14129
  ...params,
13847
14130
  }),
@@ -13942,7 +14225,7 @@ export class Api<
13942
14225
  method: "POST",
13943
14226
  body: data,
13944
14227
  secure: true,
13945
- type: ContentType.Json,
14228
+ type: "application/json",
13946
14229
  format: "json",
13947
14230
  ...params,
13948
14231
  }),
@@ -13975,7 +14258,7 @@ export class Api<
13975
14258
  query: query,
13976
14259
  body: data,
13977
14260
  secure: true,
13978
- type: ContentType.Json,
14261
+ type: "application/json",
13979
14262
  format: "json",
13980
14263
  ...params,
13981
14264
  }),
@@ -14005,7 +14288,7 @@ export class Api<
14005
14288
  method: "PATCH",
14006
14289
  body: data,
14007
14290
  secure: true,
14008
- type: ContentType.JsonPatch,
14291
+ type: "application/json",
14009
14292
  format: "json",
14010
14293
  ...params,
14011
14294
  }),
@@ -14115,7 +14398,7 @@ export class Api<
14115
14398
  method: "POST",
14116
14399
  body: data,
14117
14400
  secure: true,
14118
- type: ContentType.Json,
14401
+ type: "application/json",
14119
14402
  format: "json",
14120
14403
  ...params,
14121
14404
  }),
@@ -14151,7 +14434,7 @@ export class Api<
14151
14434
  query: query,
14152
14435
  body: data,
14153
14436
  secure: true,
14154
- type: ContentType.Json,
14437
+ type: "application/json",
14155
14438
  format: "json",
14156
14439
  ...params,
14157
14440
  }),
@@ -14203,7 +14486,7 @@ export class Api<
14203
14486
  method: "POST",
14204
14487
  body: data,
14205
14488
  secure: true,
14206
- type: ContentType.Json,
14489
+ type: "application/json",
14207
14490
  format: "json",
14208
14491
  ...params,
14209
14492
  }),
@@ -14231,7 +14514,7 @@ export class Api<
14231
14514
  method: "PUT",
14232
14515
  body: data,
14233
14516
  secure: true,
14234
- type: ContentType.Json,
14517
+ type: "application/json",
14235
14518
  format: "json",
14236
14519
  ...params,
14237
14520
  }),
@@ -14290,7 +14573,7 @@ export class Api<
14290
14573
  method: "POST",
14291
14574
  body: data,
14292
14575
  secure: true,
14293
- type: ContentType.FormData,
14576
+ type: "multipart/form-data",
14294
14577
  format: "json",
14295
14578
  ...params,
14296
14579
  }),
@@ -14318,7 +14601,7 @@ export class Api<
14318
14601
  method: "POST",
14319
14602
  body: data,
14320
14603
  secure: true,
14321
- type: ContentType.Json,
14604
+ type: "application/json",
14322
14605
  ...params,
14323
14606
  }),
14324
14607
 
@@ -14344,7 +14627,7 @@ export class Api<
14344
14627
  method: "POST",
14345
14628
  body: data,
14346
14629
  secure: true,
14347
- type: ContentType.Json,
14630
+ type: "application/json",
14348
14631
  ...params,
14349
14632
  }),
14350
14633
 
@@ -14376,7 +14659,7 @@ export class Api<
14376
14659
  query: query,
14377
14660
  body: data,
14378
14661
  secure: true,
14379
- type: ContentType.Json,
14662
+ type: "application/json",
14380
14663
  format: "json",
14381
14664
  ...params,
14382
14665
  }),
@@ -14401,7 +14684,7 @@ export class Api<
14401
14684
  method: "POST",
14402
14685
  body: data,
14403
14686
  secure: true,
14404
- type: ContentType.Json,
14687
+ type: "application/json",
14405
14688
  format: "json",
14406
14689
  ...params,
14407
14690
  }),
@@ -14488,7 +14771,7 @@ export class Api<
14488
14771
  method: "POST",
14489
14772
  body: data,
14490
14773
  secure: true,
14491
- type: ContentType.Json,
14774
+ type: "application/json",
14492
14775
  format: "json",
14493
14776
  ...params,
14494
14777
  }),
@@ -14514,7 +14797,7 @@ export class Api<
14514
14797
  method: "POST",
14515
14798
  body: data,
14516
14799
  secure: true,
14517
- type: ContentType.Json,
14800
+ type: "application/json",
14518
14801
  format: "json",
14519
14802
  ...params,
14520
14803
  }),
@@ -14541,7 +14824,7 @@ export class Api<
14541
14824
  method: "PUT",
14542
14825
  body: data,
14543
14826
  secure: true,
14544
- type: ContentType.Json,
14827
+ type: "application/json",
14545
14828
  format: "json",
14546
14829
  ...params,
14547
14830
  }),
@@ -14658,7 +14941,7 @@ export class Api<
14658
14941
  method: "POST",
14659
14942
  body: data,
14660
14943
  secure: true,
14661
- type: ContentType.Json,
14944
+ type: "application/json",
14662
14945
  format: "json",
14663
14946
  ...params,
14664
14947
  }),
@@ -14736,7 +15019,7 @@ export class Api<
14736
15019
  query: query,
14737
15020
  body: data,
14738
15021
  secure: true,
14739
- type: ContentType.Json,
15022
+ type: "application/json",
14740
15023
  format: "json",
14741
15024
  ...params,
14742
15025
  }),
@@ -14780,7 +15063,7 @@ export class Api<
14780
15063
  method: "POST",
14781
15064
  body: data,
14782
15065
  secure: true,
14783
- type: ContentType.Json,
15066
+ type: "application/json",
14784
15067
  format: "json",
14785
15068
  ...params,
14786
15069
  }),
@@ -14827,7 +15110,7 @@ export class Api<
14827
15110
  method: "PUT",
14828
15111
  body: data,
14829
15112
  secure: true,
14830
- type: ContentType.Json,
15113
+ type: "application/json",
14831
15114
  format: "json",
14832
15115
  ...params,
14833
15116
  }),
@@ -14873,7 +15156,7 @@ export class Api<
14873
15156
  method: "POST",
14874
15157
  body: data,
14875
15158
  secure: true,
14876
- type: ContentType.Json,
15159
+ type: "application/json",
14877
15160
  format: "json",
14878
15161
  ...params,
14879
15162
  }),
@@ -14898,7 +15181,7 @@ export class Api<
14898
15181
  method: "POST",
14899
15182
  body: data,
14900
15183
  secure: true,
14901
- type: ContentType.Json,
15184
+ type: "application/json",
14902
15185
  format: "json",
14903
15186
  ...params,
14904
15187
  }),
@@ -14923,7 +15206,7 @@ export class Api<
14923
15206
  method: "POST",
14924
15207
  body: data,
14925
15208
  secure: true,
14926
- type: ContentType.Json,
15209
+ type: "application/json",
14927
15210
  format: "json",
14928
15211
  ...params,
14929
15212
  }),
@@ -14948,7 +15231,7 @@ export class Api<
14948
15231
  method: "POST",
14949
15232
  body: data,
14950
15233
  secure: true,
14951
- type: ContentType.Json,
15234
+ type: "application/json",
14952
15235
  format: "json",
14953
15236
  ...params,
14954
15237
  }),
@@ -14973,7 +15256,7 @@ export class Api<
14973
15256
  method: "POST",
14974
15257
  body: data,
14975
15258
  secure: true,
14976
- type: ContentType.Json,
15259
+ type: "application/json",
14977
15260
  format: "json",
14978
15261
  ...params,
14979
15262
  }),
@@ -15023,7 +15306,7 @@ export class Api<
15023
15306
  method: "POST",
15024
15307
  body: data,
15025
15308
  secure: true,
15026
- type: ContentType.Json,
15309
+ type: "application/json",
15027
15310
  format: "json",
15028
15311
  ...params,
15029
15312
  }),
@@ -15056,7 +15339,7 @@ export class Api<
15056
15339
  query: query,
15057
15340
  body: data,
15058
15341
  secure: true,
15059
- type: ContentType.Json,
15342
+ type: "application/json",
15060
15343
  format: "json",
15061
15344
  ...params,
15062
15345
  }),
@@ -15101,7 +15384,7 @@ export class Api<
15101
15384
  method: "PUT",
15102
15385
  body: data,
15103
15386
  secure: true,
15104
- type: ContentType.Json,
15387
+ type: "application/json",
15105
15388
  format: "json",
15106
15389
  ...params,
15107
15390
  }),
@@ -15185,7 +15468,7 @@ export class Api<
15185
15468
  method: "POST",
15186
15469
  body: data,
15187
15470
  secure: true,
15188
- type: ContentType.Json,
15471
+ type: "application/json",
15189
15472
  format: "json",
15190
15473
  ...params,
15191
15474
  }),
@@ -15234,7 +15517,7 @@ export class Api<
15234
15517
  method: "PUT",
15235
15518
  body: data,
15236
15519
  secure: true,
15237
- type: ContentType.Json,
15520
+ type: "application/json",
15238
15521
  format: "json",
15239
15522
  ...params,
15240
15523
  }),
@@ -15276,16 +15559,7 @@ export class Api<
15276
15559
  query?: {
15277
15560
  showAll?: boolean;
15278
15561
  /** @default "Realtor" */
15279
- role?:
15280
- | "Borrower"
15281
- | "LoanOfficer"
15282
- | "Admin"
15283
- | "SuperAdmin"
15284
- | "Realtor"
15285
- | "SettlementAgent"
15286
- | "LoanProcessor"
15287
- | "LoanOfficerAssistant"
15288
- | "SystemAdmin";
15562
+ role?: GetPartnersParamsRoleEnum;
15289
15563
  /** @format int32 */
15290
15564
  pageSize?: number;
15291
15565
  /** @format int32 */
@@ -15332,7 +15606,7 @@ export class Api<
15332
15606
  query: query,
15333
15607
  body: data,
15334
15608
  secure: true,
15335
- type: ContentType.Json,
15609
+ type: "application/json",
15336
15610
  format: "json",
15337
15611
  ...params,
15338
15612
  }),
@@ -15377,7 +15651,7 @@ export class Api<
15377
15651
  method: "POST",
15378
15652
  body: data,
15379
15653
  secure: true,
15380
- type: ContentType.Json,
15654
+ type: "application/json",
15381
15655
  format: "json",
15382
15656
  ...params,
15383
15657
  }),
@@ -15431,7 +15705,7 @@ export class Api<
15431
15705
  query: query,
15432
15706
  body: data,
15433
15707
  secure: true,
15434
- type: ContentType.Json,
15708
+ type: "application/json",
15435
15709
  format: "json",
15436
15710
  ...params,
15437
15711
  }),
@@ -15476,7 +15750,7 @@ export class Api<
15476
15750
  method: "POST",
15477
15751
  body: data,
15478
15752
  secure: true,
15479
- type: ContentType.Json,
15753
+ type: "application/json",
15480
15754
  format: "json",
15481
15755
  ...params,
15482
15756
  }),
@@ -15528,7 +15802,7 @@ export class Api<
15528
15802
  method: "POST",
15529
15803
  body: data,
15530
15804
  secure: true,
15531
- type: ContentType.Json,
15805
+ type: "application/json",
15532
15806
  format: "json",
15533
15807
  ...params,
15534
15808
  }),
@@ -15585,7 +15859,7 @@ export class Api<
15585
15859
  query: query,
15586
15860
  body: data,
15587
15861
  secure: true,
15588
- type: ContentType.Json,
15862
+ type: "application/json",
15589
15863
  format: "json",
15590
15864
  ...params,
15591
15865
  }),
@@ -15621,7 +15895,7 @@ export class Api<
15621
15895
  * @response `404` `ProblemDetails` Not Found
15622
15896
  */
15623
15897
  getSamlMetadata: (
15624
- sSoIntegration: "ConsumerConnect" | "TheBigPOS" | "POSF",
15898
+ sSoIntegration: GetSamlMetadataParamsEnum,
15625
15899
  ssoIntegration: string,
15626
15900
  params: RequestParams = {},
15627
15901
  ) =>
@@ -15643,7 +15917,7 @@ export class Api<
15643
15917
  * @response `200` `File` OK
15644
15918
  */
15645
15919
  createOrReplaceSamlMetadata: (
15646
- sSoIntegration: "ConsumerConnect" | "TheBigPOS" | "POSF",
15920
+ sSoIntegration: CreateOrReplaceSamlMetadataParamsEnum,
15647
15921
  ssoIntegration: string,
15648
15922
  params: RequestParams = {},
15649
15923
  ) =>
@@ -15768,7 +16042,162 @@ export class Api<
15768
16042
  method: "POST",
15769
16043
  body: data,
15770
16044
  secure: true,
15771
- type: ContentType.Json,
16045
+ type: "application/json",
16046
+ format: "json",
16047
+ ...params,
16048
+ }),
16049
+
16050
+ /**
16051
+ * No description
16052
+ *
16053
+ * @tags SiteTiles
16054
+ * @name SearchSiteTiles
16055
+ * @summary Search Site Tiles
16056
+ * @request POST:/api/site-tiles/search
16057
+ * @secure
16058
+ * @response `200` `SiteTilePaginated` OK
16059
+ * @response `403` `ProblemDetails` Forbidden
16060
+ */
16061
+ searchSiteTiles: (
16062
+ data: SiteTileSearchCriteria,
16063
+ query?: {
16064
+ /** @format int32 */
16065
+ pageSize?: number;
16066
+ /** @format int32 */
16067
+ pageNumber?: number;
16068
+ sortBy?: string;
16069
+ sortDirection?: string;
16070
+ },
16071
+ params: RequestParams = {},
16072
+ ) =>
16073
+ this.request<SiteTilePaginated, ProblemDetails>({
16074
+ path: `/api/site-tiles/search`,
16075
+ method: "POST",
16076
+ query: query,
16077
+ body: data,
16078
+ secure: true,
16079
+ type: "application/json",
16080
+ format: "json",
16081
+ ...params,
16082
+ }),
16083
+
16084
+ /**
16085
+ * No description
16086
+ *
16087
+ * @tags SiteTiles
16088
+ * @name GetSiteTilesBySiteConfiguration
16089
+ * @summary Get Site Tiles by site configuration and location
16090
+ * @request GET:/api/site-tiles/by-site-configuration
16091
+ * @secure
16092
+ * @response `200` `(SiteTileView)[]` OK
16093
+ * @response `401` `ProblemDetails` Unauthorized
16094
+ * @response `404` `ProblemDetails` Not Found
16095
+ */
16096
+ getSiteTilesBySiteConfiguration: (
16097
+ query?: {
16098
+ /** @format uuid */
16099
+ siteConfigurationId?: string;
16100
+ location?: GetSiteTilesBySiteConfigurationParamsLocationEnum;
16101
+ },
16102
+ params: RequestParams = {},
16103
+ ) =>
16104
+ this.request<SiteTileView[], ProblemDetails>({
16105
+ path: `/api/site-tiles/by-site-configuration`,
16106
+ method: "GET",
16107
+ query: query,
16108
+ secure: true,
16109
+ format: "json",
16110
+ ...params,
16111
+ }),
16112
+
16113
+ /**
16114
+ * No description
16115
+ *
16116
+ * @tags SiteTiles
16117
+ * @name GetSiteTile
16118
+ * @summary Get Site Tile by ID
16119
+ * @request GET:/api/site-tiles/{siteTileId}
16120
+ * @secure
16121
+ * @response `200` `SiteTile` OK
16122
+ * @response `403` `ProblemDetails` Forbidden
16123
+ * @response `404` `ProblemDetails` Not Found
16124
+ */
16125
+ getSiteTile: (siteTileId: string, params: RequestParams = {}) =>
16126
+ this.request<SiteTile, ProblemDetails>({
16127
+ path: `/api/site-tiles/${siteTileId}`,
16128
+ method: "GET",
16129
+ secure: true,
16130
+ format: "json",
16131
+ ...params,
16132
+ }),
16133
+
16134
+ /**
16135
+ * No description
16136
+ *
16137
+ * @tags SiteTiles
16138
+ * @name UpdateSiteTile
16139
+ * @summary Update Site Tile
16140
+ * @request PUT:/api/site-tiles/{siteTileId}
16141
+ * @secure
16142
+ * @response `200` `SiteTile` OK
16143
+ * @response `400` `ProblemDetails` Bad Request
16144
+ * @response `403` `ProblemDetails` Forbidden
16145
+ * @response `404` `ProblemDetails` Not Found
16146
+ */
16147
+ updateSiteTile: (
16148
+ siteTileId: string,
16149
+ data: SiteTileRequest,
16150
+ params: RequestParams = {},
16151
+ ) =>
16152
+ this.request<SiteTile, ProblemDetails>({
16153
+ path: `/api/site-tiles/${siteTileId}`,
16154
+ method: "PUT",
16155
+ body: data,
16156
+ secure: true,
16157
+ type: "application/json",
16158
+ format: "json",
16159
+ ...params,
16160
+ }),
16161
+
16162
+ /**
16163
+ * No description
16164
+ *
16165
+ * @tags SiteTiles
16166
+ * @name DeleteSiteTile
16167
+ * @summary Delete Site Tile
16168
+ * @request DELETE:/api/site-tiles/{siteTileId}
16169
+ * @secure
16170
+ * @response `204` `void` No Content
16171
+ * @response `403` `ProblemDetails` Forbidden
16172
+ * @response `404` `ProblemDetails` Not Found
16173
+ */
16174
+ deleteSiteTile: (siteTileId: string, params: RequestParams = {}) =>
16175
+ this.request<void, ProblemDetails>({
16176
+ path: `/api/site-tiles/${siteTileId}`,
16177
+ method: "DELETE",
16178
+ secure: true,
16179
+ ...params,
16180
+ }),
16181
+
16182
+ /**
16183
+ * No description
16184
+ *
16185
+ * @tags SiteTiles
16186
+ * @name CreateSiteTile
16187
+ * @summary Create Site Tile
16188
+ * @request POST:/api/site-tiles
16189
+ * @secure
16190
+ * @response `201` `SiteTile` Created
16191
+ * @response `400` `ProblemDetails` Bad Request
16192
+ * @response `403` `ProblemDetails` Forbidden
16193
+ */
16194
+ createSiteTile: (data: SiteTileRequest, params: RequestParams = {}) =>
16195
+ this.request<SiteTile, ProblemDetails>({
16196
+ path: `/api/site-tiles`,
16197
+ method: "POST",
16198
+ body: data,
16199
+ secure: true,
16200
+ type: "application/json",
15772
16201
  format: "json",
15773
16202
  ...params,
15774
16203
  }),
@@ -15816,7 +16245,7 @@ export class Api<
15816
16245
  method: "POST",
15817
16246
  body: data,
15818
16247
  secure: true,
15819
- type: ContentType.Json,
16248
+ type: "application/json",
15820
16249
  format: "json",
15821
16250
  ...params,
15822
16251
  }),
@@ -15868,7 +16297,7 @@ export class Api<
15868
16297
  method: "POST",
15869
16298
  body: data,
15870
16299
  secure: true,
15871
- type: ContentType.Json,
16300
+ type: "application/json",
15872
16301
  format: "json",
15873
16302
  ...params,
15874
16303
  }),
@@ -15910,7 +16339,7 @@ export class Api<
15910
16339
  method: "PUT",
15911
16340
  body: data,
15912
16341
  secure: true,
15913
- type: ContentType.Json,
16342
+ type: "application/json",
15914
16343
  format: "json",
15915
16344
  ...params,
15916
16345
  }),
@@ -15962,7 +16391,7 @@ export class Api<
15962
16391
  query: query,
15963
16392
  body: data,
15964
16393
  secure: true,
15965
- type: ContentType.Json,
16394
+ type: "application/json",
15966
16395
  format: "json",
15967
16396
  ...params,
15968
16397
  }),
@@ -15985,7 +16414,7 @@ export class Api<
15985
16414
  method: "POST",
15986
16415
  body: data,
15987
16416
  secure: true,
15988
- type: ContentType.Json,
16417
+ type: "application/json",
15989
16418
  ...params,
15990
16419
  }),
15991
16420
 
@@ -16018,7 +16447,7 @@ export class Api<
16018
16447
  query: query,
16019
16448
  body: data,
16020
16449
  secure: true,
16021
- type: ContentType.Json,
16450
+ type: "application/json",
16022
16451
  format: "json",
16023
16452
  ...params,
16024
16453
  }),
@@ -16062,7 +16491,7 @@ export class Api<
16062
16491
  method: "POST",
16063
16492
  body: data,
16064
16493
  secure: true,
16065
- type: ContentType.Json,
16494
+ type: "application/json",
16066
16495
  format: "json",
16067
16496
  ...params,
16068
16497
  }),
@@ -16086,7 +16515,7 @@ export class Api<
16086
16515
  method: "PUT",
16087
16516
  body: data,
16088
16517
  secure: true,
16089
- type: ContentType.Json,
16518
+ type: "application/json",
16090
16519
  format: "json",
16091
16520
  ...params,
16092
16521
  }),
@@ -16129,7 +16558,7 @@ export class Api<
16129
16558
  method: "POST",
16130
16559
  body: data,
16131
16560
  secure: true,
16132
- type: ContentType.Json,
16561
+ type: "application/json",
16133
16562
  format: "json",
16134
16563
  ...params,
16135
16564
  }),
@@ -16181,7 +16610,7 @@ export class Api<
16181
16610
  query: query,
16182
16611
  body: data,
16183
16612
  secure: true,
16184
- type: ContentType.Json,
16613
+ type: "application/json",
16185
16614
  format: "json",
16186
16615
  ...params,
16187
16616
  }),
@@ -16355,7 +16784,7 @@ export class Api<
16355
16784
  method: "POST",
16356
16785
  body: data,
16357
16786
  secure: true,
16358
- type: ContentType.Json,
16787
+ type: "application/json",
16359
16788
  format: "json",
16360
16789
  ...params,
16361
16790
  }),
@@ -16454,7 +16883,7 @@ export class Api<
16454
16883
  method: "POST",
16455
16884
  body: data,
16456
16885
  secure: true,
16457
- type: ContentType.Json,
16886
+ type: "application/json",
16458
16887
  format: "json",
16459
16888
  ...params,
16460
16889
  }),
@@ -16520,7 +16949,7 @@ export class Api<
16520
16949
  method: "POST",
16521
16950
  body: data,
16522
16951
  secure: true,
16523
- type: ContentType.Json,
16952
+ type: "application/json",
16524
16953
  format: "json",
16525
16954
  ...params,
16526
16955
  }),
@@ -16591,7 +17020,7 @@ export class Api<
16591
17020
  query: query,
16592
17021
  body: data,
16593
17022
  secure: true,
16594
- type: ContentType.Json,
17023
+ type: "application/json",
16595
17024
  format: "json",
16596
17025
  ...params,
16597
17026
  }),
@@ -16688,7 +17117,7 @@ export class Api<
16688
17117
  method: "PUT",
16689
17118
  body: data,
16690
17119
  secure: true,
16691
- type: ContentType.Json,
17120
+ type: "application/json",
16692
17121
  format: "json",
16693
17122
  ...params,
16694
17123
  }),
@@ -16730,7 +17159,7 @@ export class Api<
16730
17159
  method: "POST",
16731
17160
  body: data,
16732
17161
  secure: true,
16733
- type: ContentType.Json,
17162
+ type: "application/json",
16734
17163
  format: "json",
16735
17164
  ...params,
16736
17165
  }),
@@ -16756,7 +17185,7 @@ export class Api<
16756
17185
  method: "POST",
16757
17186
  body: data,
16758
17187
  secure: true,
16759
- type: ContentType.Json,
17188
+ type: "application/json",
16760
17189
  ...params,
16761
17190
  }),
16762
17191
 
@@ -16781,7 +17210,7 @@ export class Api<
16781
17210
  method: "POST",
16782
17211
  body: data,
16783
17212
  secure: true,
16784
- type: ContentType.Json,
17213
+ type: "application/json",
16785
17214
  ...params,
16786
17215
  }),
16787
17216
 
@@ -16867,7 +17296,7 @@ export class Api<
16867
17296
  method: "POST",
16868
17297
  body: data,
16869
17298
  secure: true,
16870
- type: ContentType.Json,
17299
+ type: "application/json",
16871
17300
  ...params,
16872
17301
  }),
16873
17302
 
@@ -16907,7 +17336,7 @@ export class Api<
16907
17336
  method: "POST",
16908
17337
  body: data,
16909
17338
  secure: true,
16910
- type: ContentType.Json,
17339
+ type: "application/json",
16911
17340
  ...params,
16912
17341
  }),
16913
17342
 
@@ -16990,7 +17419,7 @@ export class Api<
16990
17419
  method: "POST",
16991
17420
  body: data,
16992
17421
  secure: true,
16993
- type: ContentType.Json,
17422
+ type: "application/json",
16994
17423
  ...params,
16995
17424
  }),
16996
17425
 
@@ -17082,7 +17511,7 @@ export class Api<
17082
17511
  method: "POST",
17083
17512
  body: data,
17084
17513
  secure: true,
17085
- type: ContentType.Json,
17514
+ type: "application/json",
17086
17515
  format: "json",
17087
17516
  ...params,
17088
17517
  }),
@@ -17115,7 +17544,7 @@ export class Api<
17115
17544
  query: query,
17116
17545
  body: data,
17117
17546
  secure: true,
17118
- type: ContentType.Json,
17547
+ type: "application/json",
17119
17548
  format: "json",
17120
17549
  ...params,
17121
17550
  }),
@@ -17136,7 +17565,7 @@ export class Api<
17136
17565
  method: "POST",
17137
17566
  body: data,
17138
17567
  secure: true,
17139
- type: ContentType.Json,
17568
+ type: "application/json",
17140
17569
  format: "json",
17141
17570
  ...params,
17142
17571
  }),
@@ -17158,7 +17587,7 @@ export class Api<
17158
17587
  method: "POST",
17159
17588
  body: data,
17160
17589
  secure: true,
17161
- type: ContentType.Json,
17590
+ type: "application/json",
17162
17591
  format: "json",
17163
17592
  ...params,
17164
17593
  }),
@@ -17184,7 +17613,7 @@ export class Api<
17184
17613
  method: "PUT",
17185
17614
  body: data,
17186
17615
  secure: true,
17187
- type: ContentType.Json,
17616
+ type: "application/json",
17188
17617
  format: "json",
17189
17618
  ...params,
17190
17619
  }),
@@ -17250,7 +17679,7 @@ export class Api<
17250
17679
  method: "POST",
17251
17680
  body: data,
17252
17681
  secure: true,
17253
- type: ContentType.Json,
17682
+ type: "application/json",
17254
17683
  ...params,
17255
17684
  }),
17256
17685
 
@@ -17271,7 +17700,7 @@ export class Api<
17271
17700
  method: "POST",
17272
17701
  body: data,
17273
17702
  secure: true,
17274
- type: ContentType.Json,
17703
+ type: "application/json",
17275
17704
  ...params,
17276
17705
  }),
17277
17706
 
@@ -17296,7 +17725,7 @@ export class Api<
17296
17725
  method: "POST",
17297
17726
  body: data,
17298
17727
  secure: true,
17299
- type: ContentType.Json,
17728
+ type: "application/json",
17300
17729
  ...params,
17301
17730
  }),
17302
17731
 
@@ -17320,7 +17749,7 @@ export class Api<
17320
17749
  method: "POST",
17321
17750
  body: data,
17322
17751
  secure: true,
17323
- type: ContentType.Json,
17752
+ type: "application/json",
17324
17753
  ...params,
17325
17754
  }),
17326
17755
 
@@ -17363,7 +17792,7 @@ export class Api<
17363
17792
  method: "PUT",
17364
17793
  body: data,
17365
17794
  secure: true,
17366
- type: ContentType.Json,
17795
+ type: "application/json",
17367
17796
  ...params,
17368
17797
  }),
17369
17798
 
@@ -17403,7 +17832,7 @@ export class Api<
17403
17832
  method: "PUT",
17404
17833
  body: data,
17405
17834
  secure: true,
17406
- type: ContentType.Json,
17835
+ type: "application/json",
17407
17836
  format: "json",
17408
17837
  ...params,
17409
17838
  }),
@@ -17427,7 +17856,7 @@ export class Api<
17427
17856
  method: "PUT",
17428
17857
  body: data,
17429
17858
  secure: true,
17430
- type: ContentType.Json,
17859
+ type: "application/json",
17431
17860
  format: "json",
17432
17861
  ...params,
17433
17862
  }),
@@ -17504,7 +17933,7 @@ export class Api<
17504
17933
  method: "POST",
17505
17934
  body: data,
17506
17935
  secure: true,
17507
- type: ContentType.Json,
17936
+ type: "application/json",
17508
17937
  ...params,
17509
17938
  }),
17510
17939
 
@@ -17524,7 +17953,7 @@ export class Api<
17524
17953
  method: "POST",
17525
17954
  body: data,
17526
17955
  secure: true,
17527
- type: ContentType.Json,
17956
+ type: "application/json",
17528
17957
  format: "json",
17529
17958
  ...params,
17530
17959
  }),