@matech/thebigpos-sdk 2.46.8-aibi-rc2 → 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;
@@ -1856,16 +1759,14 @@ export interface CreateAiPromptRequest {
1856
1759
  bedrockModelId?: string | null;
1857
1760
  requiredDataSources?: string[] | null;
1858
1761
  outputType?: AiOutputType | null;
1859
- scope?: AiPromptScope | null;
1860
- inputHint?: string | null;
1861
1762
  }
1862
1763
 
1863
1764
  export interface CreateAiUrlSourceRequest {
1864
1765
  name: string;
1865
1766
  url: string;
1866
1767
  description?: string | null;
1867
- category: "Regulatory" | "Guidelines" | "MarketData" | "Custom";
1868
- scope: "FullDomain" | "SpecificPath";
1768
+ category: CreateAiUrlSourceRequestCategoryEnum;
1769
+ scope: CreateAiUrlSourceRequestScopeEnum;
1869
1770
  }
1870
1771
 
1871
1772
  export interface CreateBranchRequest {
@@ -1890,15 +1791,8 @@ export interface CreateCustomFieldDefinitionRequest {
1890
1791
  name: string;
1891
1792
  defaultValue?: string | null;
1892
1793
  regexPattern?: string | null;
1893
- dataType:
1894
- | "String"
1895
- | "Number"
1896
- | "Decimal"
1897
- | "Boolean"
1898
- | "Date"
1899
- | "SingleSelect"
1900
- | "MultiSelect";
1901
- entityType: "Loan";
1794
+ dataType: CreateCustomFieldDefinitionRequestDataTypeEnum;
1795
+ entityType: CreateCustomFieldDefinitionRequestEntityTypeEnum;
1902
1796
  options?: CustomFieldOptionRequest[] | null;
1903
1797
  permissions?: CustomFieldPermissionRequest[] | null;
1904
1798
  }
@@ -1915,20 +1809,7 @@ export interface CreateDocumentTemplateRequest {
1915
1809
  export interface CreateGroupMemberRequest {
1916
1810
  /** @format uuid */
1917
1811
  userId: string;
1918
- loanRole:
1919
- | "Borrower"
1920
- | "CoBorrower"
1921
- | "NonBorrower"
1922
- | "LoanOfficer"
1923
- | "LoanProcessor"
1924
- | "LoanOfficerAssistant"
1925
- | "SupportingLoanOfficer"
1926
- | "BuyerAgent"
1927
- | "SellerAgent"
1928
- | "TitleInsuranceAgent"
1929
- | "EscrowAgent"
1930
- | "SettlementAgent"
1931
- | "Admin";
1812
+ loanRole: CreateGroupMemberRequestLoanRoleEnum;
1932
1813
  }
1933
1814
 
1934
1815
  export interface CreateInviteRequest {
@@ -1937,7 +1818,7 @@ export interface CreateInviteRequest {
1937
1818
  emailAddress: string;
1938
1819
  phoneNumber?: string | null;
1939
1820
  /** @deprecated */
1940
- relationship: "NotApplicable" | "Spouse" | "NonSpouse";
1821
+ relationship: CreateInviteRequestRelationshipEnum;
1941
1822
  loanID: string;
1942
1823
  route?: string | null;
1943
1824
  /** @format uuid */
@@ -1959,7 +1840,7 @@ export interface CreateLoanImportRequest {
1959
1840
  endDate: string;
1960
1841
  /** @format date-time */
1961
1842
  startDate: string;
1962
- importMode: "All" | "NewOnly" | "UpdateOnly";
1843
+ importMode: CreateLoanImportRequestImportModeEnum;
1963
1844
  }
1964
1845
 
1965
1846
  export interface CreateSession {
@@ -1981,20 +1862,7 @@ export interface CreateUserDeviceRequest {
1981
1862
  }
1982
1863
 
1983
1864
  export interface CreateUserDraft {
1984
- loanRole:
1985
- | "Borrower"
1986
- | "CoBorrower"
1987
- | "NonBorrower"
1988
- | "LoanOfficer"
1989
- | "LoanProcessor"
1990
- | "LoanOfficerAssistant"
1991
- | "SupportingLoanOfficer"
1992
- | "BuyerAgent"
1993
- | "SellerAgent"
1994
- | "TitleInsuranceAgent"
1995
- | "EscrowAgent"
1996
- | "SettlementAgent"
1997
- | "Admin";
1865
+ loanRole: CreateUserDraftLoanRoleEnum;
1998
1866
  }
1999
1867
 
2000
1868
  export interface CreateUserGroupRequest {
@@ -2062,15 +1930,8 @@ export interface CustomFieldDefinition {
2062
1930
  name: string;
2063
1931
  defaultValue?: string | null;
2064
1932
  regexPattern?: string | null;
2065
- dataType:
2066
- | "String"
2067
- | "Number"
2068
- | "Decimal"
2069
- | "Boolean"
2070
- | "Date"
2071
- | "SingleSelect"
2072
- | "MultiSelect";
2073
- entityType: "Loan";
1933
+ dataType: CustomFieldDefinitionDataTypeEnum;
1934
+ entityType: CustomFieldDefinitionEntityTypeEnum;
2074
1935
  options: CustomFieldOption[];
2075
1936
  permissions: CustomFieldPermission[];
2076
1937
  encompassMapping?: EncompassMapping | null;
@@ -2085,14 +1946,7 @@ export interface CustomFieldEntry {
2085
1946
  displayOrder: number;
2086
1947
  name: string;
2087
1948
  value: string;
2088
- dataType:
2089
- | "String"
2090
- | "Number"
2091
- | "Decimal"
2092
- | "Boolean"
2093
- | "Date"
2094
- | "SingleSelect"
2095
- | "MultiSelect";
1949
+ dataType: CustomFieldEntryDataTypeEnum;
2096
1950
  }
2097
1951
 
2098
1952
  export interface CustomFieldOption {
@@ -2112,31 +1966,13 @@ export interface CustomFieldOptionRequest {
2112
1966
  export interface CustomFieldPermission {
2113
1967
  /** @format uuid */
2114
1968
  id: string;
2115
- role:
2116
- | "Borrower"
2117
- | "LoanOfficer"
2118
- | "Admin"
2119
- | "SuperAdmin"
2120
- | "Realtor"
2121
- | "SettlementAgent"
2122
- | "LoanProcessor"
2123
- | "LoanOfficerAssistant"
2124
- | "SystemAdmin";
2125
- accessLevel: "NoAccess" | "ReadOnly" | "ReadWrite";
1969
+ role: CustomFieldPermissionRoleEnum;
1970
+ accessLevel: CustomFieldPermissionAccessLevelEnum;
2126
1971
  }
2127
1972
 
2128
1973
  export interface CustomFieldPermissionRequest {
2129
- role:
2130
- | "Borrower"
2131
- | "LoanOfficer"
2132
- | "Admin"
2133
- | "SuperAdmin"
2134
- | "Realtor"
2135
- | "SettlementAgent"
2136
- | "LoanProcessor"
2137
- | "LoanOfficerAssistant"
2138
- | "SystemAdmin";
2139
- accessLevel: "NoAccess" | "ReadOnly" | "ReadWrite";
1974
+ role: CustomFieldPermissionRequestRoleEnum;
1975
+ accessLevel: CustomFieldPermissionRequestAccessLevelEnum;
2140
1976
  }
2141
1977
 
2142
1978
  export interface CustomFieldValue {
@@ -2148,14 +1984,7 @@ export interface CustomFieldValue {
2148
1984
  customFieldDefinitionID: string;
2149
1985
  value: string;
2150
1986
  definitionName: string;
2151
- dataType:
2152
- | "String"
2153
- | "Number"
2154
- | "Decimal"
2155
- | "Boolean"
2156
- | "Date"
2157
- | "SingleSelect"
2158
- | "MultiSelect";
1987
+ dataType: CustomFieldValueDataTypeEnum;
2159
1988
  }
2160
1989
 
2161
1990
  export interface DetailedUser {
@@ -2399,7 +2228,7 @@ export interface Draft {
2399
2228
  siteConfiguration: SiteConfigurationReduced;
2400
2229
  /** @format uuid */
2401
2230
  loanID?: string | null;
2402
- type: "NewLoan" | "EditLoan";
2231
+ type: DraftTypeEnum;
2403
2232
  isCoBorrower: boolean;
2404
2233
  }
2405
2234
 
@@ -2418,7 +2247,7 @@ export interface DraftContent {
2418
2247
  siteConfiguration: SiteConfigurationReduced;
2419
2248
  /** @format uuid */
2420
2249
  loanID?: string | null;
2421
- type: "NewLoan" | "EditLoan";
2250
+ type: DraftContentTypeEnum;
2422
2251
  isCoBorrower: boolean;
2423
2252
  applicationPayload: any;
2424
2253
  }
@@ -2437,7 +2266,7 @@ export interface DraftLoanOfficerReassignRequest {
2437
2266
 
2438
2267
  export interface DraftRequest {
2439
2268
  applicationPayload: any;
2440
- customData?: any;
2269
+ customData?: any | null;
2441
2270
  isCoBorrower: boolean;
2442
2271
  }
2443
2272
 
@@ -2511,9 +2340,9 @@ export interface EncompassCredentialsDetail {
2511
2340
  clearStateIfUnlicensed: boolean;
2512
2341
  /** @deprecated */
2513
2342
  baseUrl?: string | null;
2514
- encompassEnvironment: "Production" | "UAT";
2343
+ encompassEnvironment: EncompassCredentialsDetailEncompassEnvironmentEnum;
2515
2344
  consumerConnectWidgetHost?: string | null;
2516
- signingMethod: "ConsumerConnect" | "POSF";
2345
+ signingMethod: EncompassCredentialsDetailSigningMethodEnum;
2517
2346
  subscriptionId?: string | null;
2518
2347
  environment?: string | null;
2519
2348
  /** @format uuid */
@@ -2530,9 +2359,9 @@ export interface EncompassCredentialsRequest {
2530
2359
  clearStateIfUnlicensed: boolean;
2531
2360
  /** @deprecated */
2532
2361
  baseUrl?: string | null;
2533
- encompassEnvironment: "Production" | "UAT";
2362
+ encompassEnvironment: EncompassCredentialsRequestEncompassEnvironmentEnum;
2534
2363
  consumerConnectWidgetHost?: string | null;
2535
- signingMethod: "ConsumerConnect" | "POSF";
2364
+ signingMethod: EncompassCredentialsRequestSigningMethodEnum;
2536
2365
  subscriptionId?: string | null;
2537
2366
  environment?: string | null;
2538
2367
  clientID?: string | null;
@@ -2654,15 +2483,8 @@ export interface EncompassRequestLog {
2654
2483
  losId?: string | null;
2655
2484
  /** @format uuid */
2656
2485
  accountId: string;
2657
- operationType:
2658
- | "FieldUpdate"
2659
- | "ConsentUpdate"
2660
- | "DocumentSync"
2661
- | "MilestoneUpdate"
2662
- | "DocumentAttachment"
2663
- | "General"
2664
- | "FieldReader";
2665
- outcome: "Success" | "Failure" | "PartialSuccess";
2486
+ operationType: EncompassRequestLogOperationTypeEnum;
2487
+ outcome: EncompassRequestLogOutcomeEnum;
2666
2488
  message: string;
2667
2489
  endpoint?: string | null;
2668
2490
  httpMethod?: string | null;
@@ -2670,7 +2492,7 @@ export interface EncompassRequestLog {
2670
2492
  httpStatusCode?: number | null;
2671
2493
  /** @format int64 */
2672
2494
  durationMs?: number | null;
2673
- context?: any;
2495
+ context?: any | null;
2674
2496
  /** @format date-time */
2675
2497
  createdAt: string;
2676
2498
  }
@@ -2716,7 +2538,7 @@ export interface FileSearchCriteria {
2716
2538
  export interface FileWithBytes {
2717
2539
  name: string;
2718
2540
  /** @format byte */
2719
- data: string;
2541
+ data: Blob;
2720
2542
  fileName: string;
2721
2543
  mimeType?: string | null;
2722
2544
  extension?: string | null;
@@ -2795,7 +2617,7 @@ export interface FormSubmission {
2795
2617
  subjectPropertyAddressCounty?: string | null;
2796
2618
  subjectPropertyAddressState?: string | null;
2797
2619
  subjectPropertyAddressZip?: string | null;
2798
- data?: any;
2620
+ data?: any | null;
2799
2621
  /** @format uuid */
2800
2622
  listingID?: string | null;
2801
2623
  listing?: Listing | null;
@@ -2833,7 +2655,7 @@ export interface FormSubmissionRequest {
2833
2655
  subjectPropertyAddressCounty?: string | null;
2834
2656
  subjectPropertyAddressState?: string | null;
2835
2657
  subjectPropertyAddressZip?: string | null;
2836
- data?: any;
2658
+ data?: any | null;
2837
2659
  /** @format uuid */
2838
2660
  listingID?: string | null;
2839
2661
  }
@@ -2888,20 +2710,7 @@ export interface FusionFieldDisplay {
2888
2710
  }
2889
2711
 
2890
2712
  export interface FusionReportFilter {
2891
- filterType:
2892
- | "DateGreaterThanOrEqualTo"
2893
- | "DateGreaterThan"
2894
- | "DateLessThan"
2895
- | "DateLessThanOrEqualTo"
2896
- | "DateEquals"
2897
- | "DateDoesntEqual"
2898
- | "DateNonEmpty"
2899
- | "DateEmpty"
2900
- | "StringContains"
2901
- | "StringEquals"
2902
- | "StringNotEmpty"
2903
- | "StringNotEquals"
2904
- | "StringNotContains";
2713
+ filterType: FusionReportFilterFilterTypeEnum;
2905
2714
  targetField: string;
2906
2715
  targetValue: string;
2907
2716
  }
@@ -2924,7 +2733,7 @@ export interface GenerateSystemPrompt {
2924
2733
 
2925
2734
  export interface GenerateSystemPromptRequest {
2926
2735
  description: string;
2927
- category: "DocumentAnalysis" | "DataQuery" | "General" | "Action";
2736
+ category: GenerateSystemPromptRequestCategoryEnum;
2928
2737
  }
2929
2738
 
2930
2739
  export interface GetApplications {
@@ -3020,45 +2829,12 @@ export interface GetWorkflowRequest {
3020
2829
  export interface GuidPatchOperation {
3021
2830
  op: string;
3022
2831
  path: string;
3023
- value?: any;
2832
+ value?: any | null;
3024
2833
  from?: string | null;
3025
2834
  }
3026
2835
 
3027
2836
  export interface IPAddress {
3028
- addressFamily:
3029
- | "Unspecified"
3030
- | "Unix"
3031
- | "InterNetwork"
3032
- | "ImpLink"
3033
- | "Pup"
3034
- | "Chaos"
3035
- | "NS"
3036
- | "Ipx"
3037
- | "Iso"
3038
- | "Osi"
3039
- | "Ecma"
3040
- | "DataKit"
3041
- | "Ccitt"
3042
- | "Sna"
3043
- | "DecNet"
3044
- | "DataLink"
3045
- | "Lat"
3046
- | "HyperChannel"
3047
- | "AppleTalk"
3048
- | "NetBios"
3049
- | "VoiceView"
3050
- | "FireFox"
3051
- | "Banyan"
3052
- | "Atm"
3053
- | "InterNetworkV6"
3054
- | "Cluster"
3055
- | "Ieee12844"
3056
- | "Irda"
3057
- | "NetworkDesigners"
3058
- | "Max"
3059
- | "Packet"
3060
- | "ControllerAreaNetwork"
3061
- | "Unknown";
2837
+ addressFamily: IpAddressAddressFamilyEnum;
3062
2838
  /** @format int64 */
3063
2839
  scopeId: number;
3064
2840
  isIPv6Multicast: boolean;
@@ -3322,7 +3098,7 @@ export interface Loan {
3322
3098
  contacts: LoanContact[];
3323
3099
  customFields: CustomFieldEntry[];
3324
3100
  milestones: LoanMilestone[];
3325
- signingMethod: "ConsumerConnect" | "POSF";
3101
+ signingMethod: LoanSigningMethodEnum;
3326
3102
  }
3327
3103
 
3328
3104
  export interface LoanApplication {
@@ -3362,7 +3138,7 @@ export interface LoanApplicationRequest {
3362
3138
  nonOwningBorrowers: LoanNonOwningBorrowerRequest[];
3363
3139
  /** @format uuid */
3364
3140
  draftId?: string | null;
3365
- additionalFields?: Record<string, any>;
3141
+ additionalFields?: Record<string, any> | null;
3366
3142
  /** @format uuid */
3367
3143
  existingLoanId?: string | null;
3368
3144
  }
@@ -3382,7 +3158,7 @@ export interface LoanBorrower {
3382
3158
  citizenship?: LoanCitizenship | null;
3383
3159
  maritalStatus?: LoanMaritalStatus | null;
3384
3160
  languagePreference?: LoanLanguagePreference | null;
3385
- applicationStatus: "Draft" | "Complete";
3161
+ applicationStatus: LoanBorrowerApplicationStatusEnum;
3386
3162
  /** @format int32 */
3387
3163
  numberOfDependents?: number | null;
3388
3164
  /** @format int32 */
@@ -4175,7 +3951,7 @@ export interface LoanConsentRequest {
4175
3951
  borrowerEConsent?: boolean | null;
4176
3952
  borrowerCreditAuth?: boolean | null;
4177
3953
  borrowerTCPAOptIn?: boolean | null;
4178
- additionalFields?: Record<string, string>;
3954
+ additionalFields?: Record<string, string> | null;
4179
3955
  }
4180
3956
 
4181
3957
  export interface LoanContact {
@@ -4194,20 +3970,7 @@ export interface LoanContact {
4194
3970
  email?: string | null;
4195
3971
  phone?: string | null;
4196
3972
  companyName?: string | null;
4197
- role:
4198
- | "Borrower"
4199
- | "CoBorrower"
4200
- | "NonBorrower"
4201
- | "LoanOfficer"
4202
- | "LoanProcessor"
4203
- | "LoanOfficerAssistant"
4204
- | "SupportingLoanOfficer"
4205
- | "BuyerAgent"
4206
- | "SellerAgent"
4207
- | "TitleInsuranceAgent"
4208
- | "EscrowAgent"
4209
- | "SettlementAgent"
4210
- | "Admin";
3973
+ role: LoanContactRoleEnum;
4211
3974
  }
4212
3975
 
4213
3976
  export interface LoanContactList {
@@ -4232,7 +3995,7 @@ export interface LoanCostDetails {
4232
3995
  }
4233
3996
 
4234
3997
  export interface LoanCustomFieldsRequest {
4235
- additionalFields?: Record<string, string>;
3998
+ additionalFields?: Record<string, string> | null;
4236
3999
  }
4237
4000
 
4238
4001
  export interface LoanDocument {
@@ -4285,39 +4048,13 @@ export interface LoanDocumentFolderPermission {
4285
4048
  id: string;
4286
4049
  /** @format uuid */
4287
4050
  loanDocumentFolderID: string;
4288
- role:
4289
- | "Borrower"
4290
- | "CoBorrower"
4291
- | "NonBorrower"
4292
- | "LoanOfficer"
4293
- | "LoanProcessor"
4294
- | "LoanOfficerAssistant"
4295
- | "SupportingLoanOfficer"
4296
- | "BuyerAgent"
4297
- | "SellerAgent"
4298
- | "TitleInsuranceAgent"
4299
- | "EscrowAgent"
4300
- | "SettlementAgent"
4301
- | "Admin";
4302
- level: "None" | "Read" | "Write" | "Manage";
4051
+ role: LoanDocumentFolderPermissionRoleEnum;
4052
+ level: LoanDocumentFolderPermissionLevelEnum;
4303
4053
  }
4304
4054
 
4305
4055
  export interface LoanDocumentFolderPermissionRequest {
4306
- role:
4307
- | "Borrower"
4308
- | "CoBorrower"
4309
- | "NonBorrower"
4310
- | "LoanOfficer"
4311
- | "LoanProcessor"
4312
- | "LoanOfficerAssistant"
4313
- | "SupportingLoanOfficer"
4314
- | "BuyerAgent"
4315
- | "SellerAgent"
4316
- | "TitleInsuranceAgent"
4317
- | "EscrowAgent"
4318
- | "SettlementAgent"
4319
- | "Admin";
4320
- level: "None" | "Read" | "Write" | "Manage";
4056
+ role: LoanDocumentFolderPermissionRequestRoleEnum;
4057
+ level: LoanDocumentFolderPermissionRequestLevelEnum;
4321
4058
  }
4322
4059
 
4323
4060
  export interface LoanDocumentFolderUsage {
@@ -4463,19 +4200,14 @@ export interface LoanImport {
4463
4200
  /** @format int32 */
4464
4201
  importedCount: number;
4465
4202
  statusMessage?: string | null;
4466
- status:
4467
- | "WaitingProcess"
4468
- | "InProgress"
4469
- | "Completed"
4470
- | "Failed"
4471
- | "Cancelled";
4472
- importMode: "All" | "NewOnly" | "UpdateOnly";
4203
+ status: LoanImportStatusEnum;
4204
+ importMode: LoanImportImportModeEnum;
4473
4205
  /** @format date-time */
4474
4206
  createdAt?: string | null;
4475
4207
  }
4476
4208
 
4477
4209
  export interface LoanImportLog {
4478
- level: "None" | "Info" | "Warning" | "Error";
4210
+ level: LoanImportLogLevelEnum;
4479
4211
  message: string;
4480
4212
  /** @format date-time */
4481
4213
  createdAt: string;
@@ -4536,26 +4268,8 @@ export interface LoanListPaginated {
4536
4268
  export interface LoanLog {
4537
4269
  /** @format uuid */
4538
4270
  id: string;
4539
- level: "None" | "Info" | "Warning" | "Error";
4540
- type:
4541
- | "Loan"
4542
- | "Queue"
4543
- | "POSFlagChanged"
4544
- | "Verification"
4545
- | "DocumentUploaded"
4546
- | "LoanCreated"
4547
- | "WorkflowSubmitted"
4548
- | "UserInvitationSent"
4549
- | "CoBorrowerAdded"
4550
- | "TaskCompleted"
4551
- | "LoanStatusChanged"
4552
- | "Consent"
4553
- | "SensitiveDataPurge"
4554
- | "ClosingDateUpdated"
4555
- | "ConsumerConnectAssociation"
4556
- | "TaskReminderSent"
4557
- | "DocumentClassified"
4558
- | "CoBorrowerEmailAutoFixed";
4271
+ level: LoanLogLevelEnum;
4272
+ type: LoanLogTypeEnum;
4559
4273
  message: string;
4560
4274
  /** @format date-time */
4561
4275
  createdAt: string;
@@ -4564,26 +4278,8 @@ export interface LoanLog {
4564
4278
  export interface LoanLogDetail {
4565
4279
  /** @format uuid */
4566
4280
  id: string;
4567
- level: "None" | "Info" | "Warning" | "Error";
4568
- type:
4569
- | "Loan"
4570
- | "Queue"
4571
- | "POSFlagChanged"
4572
- | "Verification"
4573
- | "DocumentUploaded"
4574
- | "LoanCreated"
4575
- | "WorkflowSubmitted"
4576
- | "UserInvitationSent"
4577
- | "CoBorrowerAdded"
4578
- | "TaskCompleted"
4579
- | "LoanStatusChanged"
4580
- | "Consent"
4581
- | "SensitiveDataPurge"
4582
- | "ClosingDateUpdated"
4583
- | "ConsumerConnectAssociation"
4584
- | "TaskReminderSent"
4585
- | "DocumentClassified"
4586
- | "CoBorrowerEmailAutoFixed";
4281
+ level: LoanLogDetailLevelEnum;
4282
+ type: LoanLogDetailTypeEnum;
4587
4283
  message: string;
4588
4284
  /** @format date-time */
4589
4285
  createdAt: string;
@@ -4867,7 +4563,7 @@ export interface LoanQueueWithData {
4867
4563
  user: UserPublic;
4868
4564
  loanOfficer: LoanOfficerPublic;
4869
4565
  siteConfiguration: SiteConfigurationReduced;
4870
- data?: any;
4566
+ data?: any | null;
4871
4567
  }
4872
4568
 
4873
4569
  export interface LoanRecord {
@@ -4903,7 +4599,7 @@ export interface LoanTaskSearchRequest {
4903
4599
  }
4904
4600
 
4905
4601
  export interface LoanTaskStatusSummary {
4906
- status: "Outstanding" | "Pending" | "Completed" | "Rejected" | "Unknown";
4602
+ status: LoanTaskStatusSummaryStatusEnum;
4907
4603
  /** @format int32 */
4908
4604
  count: number;
4909
4605
  }
@@ -4916,20 +4612,7 @@ export interface LoanUser {
4916
4612
  email: string;
4917
4613
  phone?: string | null;
4918
4614
  role: string;
4919
- loanRole:
4920
- | "Borrower"
4921
- | "CoBorrower"
4922
- | "NonBorrower"
4923
- | "LoanOfficer"
4924
- | "LoanProcessor"
4925
- | "LoanOfficerAssistant"
4926
- | "SupportingLoanOfficer"
4927
- | "BuyerAgent"
4928
- | "SellerAgent"
4929
- | "TitleInsuranceAgent"
4930
- | "EscrowAgent"
4931
- | "SettlementAgent"
4932
- | "Admin";
4615
+ loanRole: LoanUserLoanRoleEnum;
4933
4616
  isUser: boolean;
4934
4617
  /** @format date-time */
4935
4618
  createdAt: string;
@@ -4965,13 +4648,7 @@ export interface LosOperationTracking {
4965
4648
  operationType: string;
4966
4649
  correlationKey: string;
4967
4650
  lastTriggerSource?: string | null;
4968
- status:
4969
- | "Pending"
4970
- | "Success"
4971
- | "Failed"
4972
- | "ConfigurationError"
4973
- | "PermanentFailure"
4974
- | "Locked";
4651
+ status: LosOperationTrackingStatusEnum;
4975
4652
  /** @format date-time */
4976
4653
  createdAt: string;
4977
4654
  /** @format date-time */
@@ -5038,7 +4715,7 @@ export interface LosSyncStep {
5038
4715
  /** @format int32 */
5039
4716
  order: number;
5040
4717
  name: string;
5041
- severity: "Success" | "Info" | "Warning" | "Error";
4718
+ severity: LosSyncStepSeverityEnum;
5042
4719
  message: string;
5043
4720
  /** @format date-time */
5044
4721
  atUtc: string;
@@ -5054,65 +4731,7 @@ export interface LosWebhook {
5054
4731
  }
5055
4732
 
5056
4733
  export interface ManualDocumentClassificationRequest {
5057
- documentType:
5058
- | "W2"
5059
- | "Paystub"
5060
- | "Form1099"
5061
- | "Form1099Int"
5062
- | "Form1099Misc"
5063
- | "Form1099Nec"
5064
- | "Form1099R"
5065
- | "Form1099G"
5066
- | "Form1099Div"
5067
- | "Form1099Ssa"
5068
- | "FederalTaxReturn1040"
5069
- | "TaxReturnScheduleC"
5070
- | "TaxReturnScheduleD"
5071
- | "TaxReturnScheduleE"
5072
- | "Form1065"
5073
- | "Form1120"
5074
- | "Form1120S"
5075
- | "ProfitAndLossStatement"
5076
- | "VerificationOfEmployment"
5077
- | "BankStatement"
5078
- | "InvestmentStatement"
5079
- | "CreditCardStatement"
5080
- | "MortgageStatement"
5081
- | "PayoffStatement"
5082
- | "HoaDocuments"
5083
- | "UtilityBill"
5084
- | "IdentityDocument"
5085
- | "DemographicAddendum"
5086
- | "Ssa89"
5087
- | "Vba260551"
5088
- | "Hud92900B"
5089
- | "Check"
5090
- | "Invoice"
5091
- | "Receipt"
5092
- | "LoanApplication1003"
5093
- | "UnderwritingTransmittal1008"
5094
- | "Other"
5095
- | "SalesContract"
5096
- | "TitleCommitment"
5097
- | "DriversLicense"
5098
- | "VerificationOfIncome"
5099
- | "VerificationOfAssets"
5100
- | "FloodCertificate"
5101
- | "FraudReport"
5102
- | "AddendumToSalesContract"
5103
- | "GiftLetter"
5104
- | "CpaLetter"
5105
- | "TaxBill"
5106
- | "CondoQuestionnaire"
5107
- | "CondoBudget"
5108
- | "CondoBylaws"
5109
- | "RentalAgreements"
5110
- | "Lease"
5111
- | "HazardInsurance"
5112
- | "VaCertificateOfEligibility"
5113
- | "Appraisal"
5114
- | "CreditReport"
5115
- | "CondoMasterPolicy";
4734
+ documentType: ManualDocumentClassificationRequestDocumentTypeEnum;
5116
4735
  }
5117
4736
 
5118
4737
  export interface MdmUser {
@@ -5199,7 +4818,7 @@ export interface ModuleParameterValue {
5199
4818
  parameterID: string;
5200
4819
  parameterName: string;
5201
4820
  parameterType: string;
5202
- value?: any;
4821
+ value?: any | null;
5203
4822
  isInherited: boolean;
5204
4823
  }
5205
4824
 
@@ -5385,7 +5004,7 @@ export interface NotificationTemplateVersionUpdateRequest {
5385
5004
 
5386
5005
  export interface Operation {
5387
5006
  op?: string;
5388
- value?: string | number | boolean | null | object;
5007
+ value?: object | null;
5389
5008
  path?: string;
5390
5009
  }
5391
5010
 
@@ -5747,7 +5366,7 @@ export interface SiteConfiguration {
5747
5366
  deletedAt?: string | null;
5748
5367
  /** @format uuid */
5749
5368
  id: string;
5750
- type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
5369
+ type: SiteConfigurationTypeEnum;
5751
5370
  /** @format uuid */
5752
5371
  entityID: string;
5753
5372
  /** @format int32 */
@@ -5941,7 +5560,7 @@ export interface SiteConfigurationByUrl {
5941
5560
  deletedAt?: string | null;
5942
5561
  /** @format uuid */
5943
5562
  id: string;
5944
- type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
5563
+ type: SiteConfigurationByUrlTypeEnum;
5945
5564
  /** @format uuid */
5946
5565
  entityID: string;
5947
5566
  /** @format int32 */
@@ -6153,7 +5772,7 @@ export interface SiteConfigurationForm {
6153
5772
  export interface SiteConfigurationReduced {
6154
5773
  /** @format uuid */
6155
5774
  id: string;
6156
- type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
5775
+ type: SiteConfigurationReducedTypeEnum;
6157
5776
  url?: string | null;
6158
5777
  name: string;
6159
5778
  /** @format int64 */
@@ -6171,7 +5790,7 @@ export interface SiteConfigurationRequest {
6171
5790
  entityID: string;
6172
5791
  /** @format int32 */
6173
5792
  entityType: number;
6174
- type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
5793
+ type: SiteConfigurationRequestTypeEnum;
6175
5794
  url: string;
6176
5795
  name: string;
6177
5796
  introduction?: string | null;
@@ -6348,7 +5967,7 @@ export interface SiteConfigurationSearchCriteria {
6348
5967
  export interface SiteConfigurationSummary {
6349
5968
  /** @format uuid */
6350
5969
  id: string;
6351
- type: "None" | "Account" | "Corporate" | "Branch" | "LoanOfficer" | "Partner";
5970
+ type: SiteConfigurationSummaryTypeEnum;
6352
5971
  url?: string | null;
6353
5972
  name: string;
6354
5973
  /** @format int64 */
@@ -6378,6 +5997,71 @@ export interface SiteConfigurationWithInherited {
6378
5997
  inheritedSiteConfiguration?: SiteConfiguration | null;
6379
5998
  }
6380
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
+
6381
6065
  export interface SocialSurveyRecord {
6382
6066
  /** @format date-time */
6383
6067
  createdAt: string;
@@ -6629,20 +6313,7 @@ export interface UnregisteredBorrower {
6629
6313
  lastName?: string | null;
6630
6314
  fullName?: string | null;
6631
6315
  email?: string | null;
6632
- role:
6633
- | "Borrower"
6634
- | "CoBorrower"
6635
- | "NonBorrower"
6636
- | "LoanOfficer"
6637
- | "LoanProcessor"
6638
- | "LoanOfficerAssistant"
6639
- | "SupportingLoanOfficer"
6640
- | "BuyerAgent"
6641
- | "SellerAgent"
6642
- | "TitleInsuranceAgent"
6643
- | "EscrowAgent"
6644
- | "SettlementAgent"
6645
- | "Admin";
6316
+ role: UnregisteredBorrowerRoleEnum;
6646
6317
  }
6647
6318
 
6648
6319
  export interface UpdateAccountRequest {
@@ -6670,7 +6341,7 @@ export interface UpdateAiCanonicalFieldRequest {
6670
6341
 
6671
6342
  export interface UpdateAiGuardrailRequest {
6672
6343
  name: string;
6673
- category: "ContentSafety" | "PromptInjection" | "Privacy" | "Legal";
6344
+ category: UpdateAiGuardrailRequestCategoryEnum;
6674
6345
  description?: string | null;
6675
6346
  keywords: string[];
6676
6347
  responseTemplate: string;
@@ -6691,21 +6362,14 @@ export interface UpdateAiPromptRequest {
6691
6362
  bedrockModelId?: string | null;
6692
6363
  requiredDataSources?: string[] | null;
6693
6364
  outputType?: AiOutputType | null;
6694
- scope?: AiPromptScope | null;
6695
- inputHint?: string | null;
6696
- }
6697
-
6698
- export interface UpdateAiPromptToolsRequest {
6699
- tools: AiPromptToolInput[];
6700
- agentSystemPrompt?: string | null;
6701
6365
  }
6702
6366
 
6703
6367
  export interface UpdateAiUrlSourceRequest {
6704
6368
  name: string;
6705
6369
  url: string;
6706
6370
  description?: string | null;
6707
- category: "Regulatory" | "Guidelines" | "MarketData" | "Custom";
6708
- scope: "FullDomain" | "SpecificPath";
6371
+ category: UpdateAiUrlSourceRequestCategoryEnum;
6372
+ scope: UpdateAiUrlSourceRequestScopeEnum;
6709
6373
  }
6710
6374
 
6711
6375
  export interface UpdateCustomFieldDefinitionRequest {
@@ -7017,20 +6681,7 @@ export interface UserDevice {
7017
6681
  export interface UserDraft {
7018
6682
  /** @format uuid */
7019
6683
  draftID: string;
7020
- role:
7021
- | "Borrower"
7022
- | "CoBorrower"
7023
- | "NonBorrower"
7024
- | "LoanOfficer"
7025
- | "LoanProcessor"
7026
- | "LoanOfficerAssistant"
7027
- | "SupportingLoanOfficer"
7028
- | "BuyerAgent"
7029
- | "SellerAgent"
7030
- | "TitleInsuranceAgent"
7031
- | "EscrowAgent"
7032
- | "SettlementAgent"
7033
- | "Admin";
6684
+ role: UserDraftRoleEnum;
7034
6685
  user: User;
7035
6686
  }
7036
6687
 
@@ -7057,7 +6708,7 @@ export interface UserGroupAccessScope {
7057
6708
  id: string;
7058
6709
  /** @format uuid */
7059
6710
  groupId: string;
7060
- scopeType: "User" | "Branch";
6711
+ scopeType: UserGroupAccessScopeScopeTypeEnum;
7061
6712
  /** @format uuid */
7062
6713
  userId?: string | null;
7063
6714
  /** @format uuid */
@@ -7093,20 +6744,7 @@ export interface UserLoan {
7093
6744
  deletedAt?: string | null;
7094
6745
  loanID: string;
7095
6746
  user: User;
7096
- role:
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";
6747
+ role: UserLoanRoleEnum;
7110
6748
  /** @format int32 */
7111
6749
  borrowerPair?: number | null;
7112
6750
  /** @format int32 */
@@ -7119,11 +6757,11 @@ export interface UserLoanConsent {
7119
6757
  id: string;
7120
6758
  /** @format uuid */
7121
6759
  userLoanID: string;
7122
- type: "Econsent" | "CreditAuthorization" | "Tcpa";
6760
+ type: UserLoanConsentTypeEnum;
7123
6761
  providedConsent: boolean;
7124
6762
  source?: ConsentSource | null;
7125
6763
  ipAddress?: string | null;
7126
- losSyncStatus: "NotStarted" | "Failed" | "Success";
6764
+ losSyncStatus: UserLoanConsentLosSyncStatusEnum;
7127
6765
  /** @format date-time */
7128
6766
  createdAt: string;
7129
6767
  /** @format date-time */
@@ -7191,120 +6829,809 @@ export interface UserNotificationSettingsUpdateRequest {
7191
6829
  pushEnabled: boolean;
7192
6830
  }
7193
6831
 
7194
- export interface UserPaginated {
7195
- rows: User[];
7196
- pagination: Pagination;
7197
- /** @format int64 */
7198
- count: number;
7199
- }
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";
7200
7581
 
7201
- export interface UserPublic {
7202
- /** @format uuid */
7203
- id: string;
7204
- role: string;
7205
- firstName: string;
7206
- lastName: string;
7207
- email: string;
7208
- phone?: string | null;
7209
- title?: string | null;
7210
- }
7582
+ export type UserLoanConsentLosSyncStatusEnum =
7583
+ | "NotStarted"
7584
+ | "Failed"
7585
+ | "Success";
7211
7586
 
7212
- export interface UserRelation {
7213
- /** @format uuid */
7214
- userId1: string;
7215
- /** @format uuid */
7216
- userId2: string;
7217
- relationType: string;
7218
- /** @format uuid */
7219
- id: string;
7220
- user1Email: string;
7221
- user1Role: string;
7222
- user2Email: string;
7223
- user2Role: string;
7224
- }
7587
+ export type UserSummaryRoleEnum =
7588
+ | "Borrower"
7589
+ | "LoanOfficer"
7590
+ | "Admin"
7591
+ | "SuperAdmin"
7592
+ | "Realtor"
7593
+ | "SettlementAgent"
7594
+ | "LoanProcessor"
7595
+ | "LoanOfficerAssistant"
7596
+ | "SystemAdmin";
7225
7597
 
7226
- export interface UserRelationship {
7227
- /** @format uuid */
7228
- id: string;
7229
- role: string;
7230
- firstName?: string | null;
7231
- lastName?: string | null;
7232
- email?: string | null;
7233
- phone?: string | null;
7234
- siteConfigurations: SiteConfigurationReduced[];
7235
- /** @format date-time */
7236
- createdAt?: string | null;
7237
- /** @format date-time */
7238
- deletedAt?: string | null;
7239
- }
7598
+ export type GetCustomFieldDefinitionsParamsEntityTypeEnum = "Loan";
7240
7599
 
7241
- export interface UserRelationshipProspect {
7242
- /** @format uuid */
7243
- id: string;
7244
- role: string;
7245
- firstName: string;
7246
- lastName: string;
7247
- email: string;
7248
- contactPhone?: string | null;
7249
- licenseNumber?: string | null;
7250
- /** @format uuid */
7251
- branchID: string;
7252
- companyName?: string | null;
7253
- /** @format date-time */
7254
- createdAt?: string | null;
7255
- /** @format date-time */
7256
- deletedAt?: string | null;
7257
- }
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";
7258
7611
 
7259
- export interface UserSearchCriteria {
7260
- searchText?: string | null;
7261
- isActive?: boolean | null;
7262
- roles?: string[] | null;
7263
- }
7612
+ export type GetSamlMetadataParamsSSoIntegrationEnum =
7613
+ | "ConsumerConnect"
7614
+ | "TheBigPOS"
7615
+ | "POSF";
7264
7616
 
7265
- export interface UserSummary {
7266
- /** @format uuid */
7267
- id: string;
7268
- name?: string | null;
7269
- email?: string | null;
7270
- role:
7271
- | "Borrower"
7272
- | "LoanOfficer"
7273
- | "Admin"
7274
- | "SuperAdmin"
7275
- | "Realtor"
7276
- | "SettlementAgent"
7277
- | "LoanProcessor"
7278
- | "LoanOfficerAssistant"
7279
- | "SystemAdmin";
7280
- }
7617
+ export type GetSamlMetadataParamsEnum =
7618
+ | "ConsumerConnect"
7619
+ | "TheBigPOS"
7620
+ | "POSF";
7281
7621
 
7282
- export interface VerifyPasswordRequest {
7283
- email: string;
7284
- code: string;
7285
- password: string;
7286
- /** @format uuid */
7287
- siteConfigurationId?: string | null;
7288
- }
7622
+ export type CreateOrReplaceSamlMetadataParamsSSoIntegrationEnum =
7623
+ | "ConsumerConnect"
7624
+ | "TheBigPOS"
7625
+ | "POSF";
7289
7626
 
7290
- export interface Workflow {
7291
- formType: string;
7292
- target: string;
7293
- authType: string;
7294
- name: string;
7295
- isDefault: boolean;
7296
- description: string;
7297
- slug: string;
7298
- status: string;
7299
- userRole: string;
7300
- borrowerType: string;
7301
- showProgressBar: boolean;
7302
- showTile: boolean;
7303
- tileLocation: string;
7304
- tileText: string;
7305
- tileSubtitle: string;
7306
- icon: string;
7307
- }
7627
+ export type CreateOrReplaceSamlMetadataParamsEnum =
7628
+ | "ConsumerConnect"
7629
+ | "TheBigPOS"
7630
+ | "POSF";
7631
+
7632
+ export type GetSiteTilesBySiteConfigurationParamsLocationEnum =
7633
+ | "HomePage"
7634
+ | "Dashboard";
7308
7635
 
7309
7636
  import type {
7310
7637
  AxiosInstance,
@@ -7347,14 +7674,12 @@ export interface ApiConfig<SecurityDataType = unknown>
7347
7674
  format?: ResponseType;
7348
7675
  }
7349
7676
 
7350
- export enum ContentType {
7351
- JsonPatch = "application/json-patch+json",
7352
- Json = "application/json",
7353
- JsonApi = "application/vnd.api+json",
7354
- FormData = "multipart/form-data",
7355
- UrlEncoded = "application/x-www-form-urlencoded",
7356
- Text = "text/plain",
7357
- }
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";
7358
7683
 
7359
7684
  export class HttpClient<SecurityDataType = unknown> {
7360
7685
  public instance: AxiosInstance;
@@ -7451,7 +7776,7 @@ export class HttpClient<SecurityDataType = unknown> {
7451
7776
  const responseFormat = format || this.format || undefined;
7452
7777
 
7453
7778
  if (
7454
- type === ContentType.FormData &&
7779
+ type === "multipart/form-data" &&
7455
7780
  body &&
7456
7781
  body !== null &&
7457
7782
  typeof body === "object"
@@ -7460,7 +7785,7 @@ export class HttpClient<SecurityDataType = unknown> {
7460
7785
  }
7461
7786
 
7462
7787
  if (
7463
- type === ContentType.Text &&
7788
+ type === "text/plain" &&
7464
7789
  body &&
7465
7790
  body !== null &&
7466
7791
  typeof body !== "string"
@@ -7484,7 +7809,7 @@ export class HttpClient<SecurityDataType = unknown> {
7484
7809
 
7485
7810
  /**
7486
7811
  * @title The Big POS API
7487
- * @version v2.46.8
7812
+ * @version v2.47.0
7488
7813
  * @termsOfService https://www.thebigpos.com/terms-of-use/
7489
7814
  * @contact Mortgage Automation Technologies <support@thebigpos.com> (https://www.thebigpos.com/terms-of-use/)
7490
7815
  */
@@ -7567,7 +7892,7 @@ export class Api<
7567
7892
  method: "PUT",
7568
7893
  body: data,
7569
7894
  secure: true,
7570
- type: ContentType.Json,
7895
+ type: "application/json",
7571
7896
  format: "json",
7572
7897
  ...params,
7573
7898
  }),
@@ -7611,7 +7936,7 @@ export class Api<
7611
7936
  method: "PUT",
7612
7937
  body: data,
7613
7938
  secure: true,
7614
- type: ContentType.Json,
7939
+ type: "application/json",
7615
7940
  format: "json",
7616
7941
  ...params,
7617
7942
  }),
@@ -7635,7 +7960,7 @@ export class Api<
7635
7960
  method: "POST",
7636
7961
  body: data,
7637
7962
  secure: true,
7638
- type: ContentType.Json,
7963
+ type: "application/json",
7639
7964
  ...params,
7640
7965
  }),
7641
7966
 
@@ -7659,7 +7984,7 @@ export class Api<
7659
7984
  method: "POST",
7660
7985
  body: data,
7661
7986
  secure: true,
7662
- type: ContentType.Json,
7987
+ type: "application/json",
7663
7988
  ...params,
7664
7989
  }),
7665
7990
 
@@ -7699,7 +8024,7 @@ export class Api<
7699
8024
  method: "POST",
7700
8025
  body: data,
7701
8026
  secure: true,
7702
- type: ContentType.Json,
8027
+ type: "application/json",
7703
8028
  format: "json",
7704
8029
  ...params,
7705
8030
  }),
@@ -7775,7 +8100,7 @@ export class Api<
7775
8100
  method: "PUT",
7776
8101
  body: data,
7777
8102
  secure: true,
7778
- type: ContentType.Json,
8103
+ type: "application/json",
7779
8104
  format: "json",
7780
8105
  ...params,
7781
8106
  }),
@@ -7838,7 +8163,7 @@ export class Api<
7838
8163
  method: "PUT",
7839
8164
  body: data,
7840
8165
  secure: true,
7841
- type: ContentType.Json,
8166
+ type: "application/json",
7842
8167
  ...params,
7843
8168
  }),
7844
8169
 
@@ -7881,7 +8206,7 @@ export class Api<
7881
8206
  method: "PUT",
7882
8207
  body: data,
7883
8208
  secure: true,
7884
- type: ContentType.Json,
8209
+ type: "application/json",
7885
8210
  format: "json",
7886
8211
  ...params,
7887
8212
  }),
@@ -7922,7 +8247,7 @@ export class Api<
7922
8247
  method: "POST",
7923
8248
  body: data,
7924
8249
  secure: true,
7925
- type: ContentType.Json,
8250
+ type: "application/json",
7926
8251
  format: "json",
7927
8252
  ...params,
7928
8253
  }),
@@ -7969,7 +8294,7 @@ export class Api<
7969
8294
  method: "PUT",
7970
8295
  body: data,
7971
8296
  secure: true,
7972
- type: ContentType.Json,
8297
+ type: "application/json",
7973
8298
  format: "json",
7974
8299
  ...params,
7975
8300
  }),
@@ -7994,52 +8319,6 @@ export class Api<
7994
8319
  ...params,
7995
8320
  }),
7996
8321
 
7997
- /**
7998
- * No description
7999
- *
8000
- * @tags AiAdminPrompt
8001
- * @name GetAiTools
8002
- * @summary List available agent tools and their settings schema
8003
- * @request GET:/api/ai/prompts/tools
8004
- * @secure
8005
- * @response `200` `(AiToolCatalogItem)[]` OK
8006
- */
8007
- getAiTools: (params: RequestParams = {}) =>
8008
- this.request<AiToolCatalogItem[], any>({
8009
- path: `/api/ai/prompts/tools`,
8010
- method: "GET",
8011
- secure: true,
8012
- format: "json",
8013
- ...params,
8014
- }),
8015
-
8016
- /**
8017
- * No description
8018
- *
8019
- * @tags AiAdminPrompt
8020
- * @name UpdateAiPromptTools
8021
- * @summary Replace the prompt's agent tool configuration
8022
- * @request PUT:/api/ai/prompts/{id}/tools
8023
- * @secure
8024
- * @response `200` `AiPrompt` OK
8025
- * @response `400` `ProblemDetails` Bad Request
8026
- * @response `404` `ProblemDetails` Not Found
8027
- */
8028
- updateAiPromptTools: (
8029
- id: string,
8030
- data: UpdateAiPromptToolsRequest,
8031
- params: RequestParams = {},
8032
- ) =>
8033
- this.request<AiPrompt, ProblemDetails>({
8034
- path: `/api/ai/prompts/${id}/tools`,
8035
- method: "PUT",
8036
- body: data,
8037
- secure: true,
8038
- type: ContentType.Json,
8039
- format: "json",
8040
- ...params,
8041
- }),
8042
-
8043
8322
  /**
8044
8323
  * No description
8045
8324
  *
@@ -8080,7 +8359,7 @@ export class Api<
8080
8359
  method: "POST",
8081
8360
  body: data,
8082
8361
  secure: true,
8083
- type: ContentType.JsonPatch,
8362
+ type: "application/json",
8084
8363
  format: "json",
8085
8364
  ...params,
8086
8365
  }),
@@ -8143,7 +8422,7 @@ export class Api<
8143
8422
  method: "PUT",
8144
8423
  body: data,
8145
8424
  secure: true,
8146
- type: ContentType.Json,
8425
+ type: "application/json",
8147
8426
  format: "json",
8148
8427
  ...params,
8149
8428
  }),
@@ -8365,7 +8644,7 @@ export class Api<
8365
8644
  method: "POST",
8366
8645
  body: data,
8367
8646
  secure: true,
8368
- type: ContentType.Json,
8647
+ type: "application/json",
8369
8648
  format: "json",
8370
8649
  ...params,
8371
8650
  }),
@@ -8412,7 +8691,7 @@ export class Api<
8412
8691
  method: "PUT",
8413
8692
  body: data,
8414
8693
  secure: true,
8415
- type: ContentType.Json,
8694
+ type: "application/json",
8416
8695
  format: "json",
8417
8696
  ...params,
8418
8697
  }),
@@ -8474,7 +8753,7 @@ export class Api<
8474
8753
  method: "POST",
8475
8754
  body: data,
8476
8755
  secure: true,
8477
- type: ContentType.JsonPatch,
8756
+ type: "application/json",
8478
8757
  format: "json",
8479
8758
  ...params,
8480
8759
  }),
@@ -8555,7 +8834,7 @@ export class Api<
8555
8834
  method: "PATCH",
8556
8835
  body: data,
8557
8836
  secure: true,
8558
- type: ContentType.JsonPatch,
8837
+ type: "application/json",
8559
8838
  format: "json",
8560
8839
  ...params,
8561
8840
  }),
@@ -8655,7 +8934,7 @@ export class Api<
8655
8934
  method: "PUT",
8656
8935
  body: data,
8657
8936
  secure: true,
8658
- type: ContentType.Json,
8937
+ type: "application/json",
8659
8938
  format: "json",
8660
8939
  ...params,
8661
8940
  }),
@@ -8783,7 +9062,7 @@ export class Api<
8783
9062
  method: "POST",
8784
9063
  body: data,
8785
9064
  secure: true,
8786
- type: ContentType.Json,
9065
+ type: "application/json",
8787
9066
  format: "json",
8788
9067
  ...params,
8789
9068
  }),
@@ -8830,7 +9109,7 @@ export class Api<
8830
9109
  method: "PUT",
8831
9110
  body: data,
8832
9111
  secure: true,
8833
- type: ContentType.Json,
9112
+ type: "application/json",
8834
9113
  format: "json",
8835
9114
  ...params,
8836
9115
  }),
@@ -8928,7 +9207,7 @@ export class Api<
8928
9207
  query: query,
8929
9208
  body: data,
8930
9209
  secure: true,
8931
- type: ContentType.JsonPatch,
9210
+ type: "application/json",
8932
9211
  format: "json",
8933
9212
  ...params,
8934
9213
  }),
@@ -9004,7 +9283,7 @@ export class Api<
9004
9283
  method: "PUT",
9005
9284
  body: data,
9006
9285
  secure: true,
9007
- type: ContentType.Json,
9286
+ type: "application/json",
9008
9287
  format: "json",
9009
9288
  ...params,
9010
9289
  }),
@@ -9049,7 +9328,7 @@ export class Api<
9049
9328
  method: "POST",
9050
9329
  body: data,
9051
9330
  secure: true,
9052
- type: ContentType.Json,
9331
+ type: "application/json",
9053
9332
  format: "json",
9054
9333
  ...params,
9055
9334
  }),
@@ -9097,7 +9376,7 @@ export class Api<
9097
9376
  method: "PUT",
9098
9377
  body: data,
9099
9378
  secure: true,
9100
- type: ContentType.Json,
9379
+ type: "application/json",
9101
9380
  format: "json",
9102
9381
  ...params,
9103
9382
  }),
@@ -9218,7 +9497,7 @@ export class Api<
9218
9497
  query: query,
9219
9498
  body: data,
9220
9499
  secure: true,
9221
- type: ContentType.JsonPatch,
9500
+ type: "application/json",
9222
9501
  format: "json",
9223
9502
  ...params,
9224
9503
  }),
@@ -9283,7 +9562,7 @@ export class Api<
9283
9562
  method: "POST",
9284
9563
  body: data,
9285
9564
  secure: true,
9286
- type: ContentType.Json,
9565
+ type: "application/json",
9287
9566
  format: "json",
9288
9567
  ...params,
9289
9568
  }),
@@ -9305,7 +9584,7 @@ export class Api<
9305
9584
  method: "POST",
9306
9585
  body: data,
9307
9586
  secure: true,
9308
- type: ContentType.Json,
9587
+ type: "application/json",
9309
9588
  format: "json",
9310
9589
  ...params,
9311
9590
  }),
@@ -9330,7 +9609,7 @@ export class Api<
9330
9609
  method: "POST",
9331
9610
  body: data,
9332
9611
  secure: true,
9333
- type: ContentType.Json,
9612
+ type: "application/json",
9334
9613
  format: "json",
9335
9614
  ...params,
9336
9615
  }),
@@ -9352,7 +9631,7 @@ export class Api<
9352
9631
  method: "POST",
9353
9632
  body: data,
9354
9633
  secure: true,
9355
- type: ContentType.Json,
9634
+ type: "application/json",
9356
9635
  format: "json",
9357
9636
  ...params,
9358
9637
  }),
@@ -9374,7 +9653,7 @@ export class Api<
9374
9653
  method: "POST",
9375
9654
  body: data,
9376
9655
  secure: true,
9377
- type: ContentType.Json,
9656
+ type: "application/json",
9378
9657
  format: "json",
9379
9658
  ...params,
9380
9659
  }),
@@ -9447,7 +9726,7 @@ export class Api<
9447
9726
  method: "POST",
9448
9727
  body: data,
9449
9728
  secure: true,
9450
- type: ContentType.Json,
9729
+ type: "application/json",
9451
9730
  format: "json",
9452
9731
  ...params,
9453
9732
  }),
@@ -9480,7 +9759,7 @@ export class Api<
9480
9759
  query: query,
9481
9760
  body: data,
9482
9761
  secure: true,
9483
- type: ContentType.Json,
9762
+ type: "application/json",
9484
9763
  format: "json",
9485
9764
  ...params,
9486
9765
  }),
@@ -9525,7 +9804,7 @@ export class Api<
9525
9804
  method: "PUT",
9526
9805
  body: data,
9527
9806
  secure: true,
9528
- type: ContentType.Json,
9807
+ type: "application/json",
9529
9808
  format: "json",
9530
9809
  ...params,
9531
9810
  }),
@@ -9588,7 +9867,7 @@ export class Api<
9588
9867
  method: "POST",
9589
9868
  body: data,
9590
9869
  secure: true,
9591
- type: ContentType.Json,
9870
+ type: "application/json",
9592
9871
  format: "json",
9593
9872
  ...params,
9594
9873
  }),
@@ -9642,7 +9921,7 @@ export class Api<
9642
9921
  query: query,
9643
9922
  body: data,
9644
9923
  secure: true,
9645
- type: ContentType.Json,
9924
+ type: "application/json",
9646
9925
  format: "json",
9647
9926
  ...params,
9648
9927
  }),
@@ -9711,7 +9990,7 @@ export class Api<
9711
9990
  method: "POST",
9712
9991
  body: data,
9713
9992
  secure: true,
9714
- type: ContentType.Json,
9993
+ type: "application/json",
9715
9994
  format: "json",
9716
9995
  ...params,
9717
9996
  }),
@@ -9756,7 +10035,7 @@ export class Api<
9756
10035
  method: "PUT",
9757
10036
  body: data,
9758
10037
  secure: true,
9759
- type: ContentType.Json,
10038
+ type: "application/json",
9760
10039
  format: "json",
9761
10040
  ...params,
9762
10041
  }),
@@ -9817,7 +10096,7 @@ export class Api<
9817
10096
  method: "POST",
9818
10097
  body: data,
9819
10098
  secure: true,
9820
- type: ContentType.Json,
10099
+ type: "application/json",
9821
10100
  format: "json",
9822
10101
  ...params,
9823
10102
  }),
@@ -9916,7 +10195,7 @@ export class Api<
9916
10195
  method: "POST",
9917
10196
  body: data,
9918
10197
  secure: true,
9919
- type: ContentType.Json,
10198
+ type: "application/json",
9920
10199
  format: "json",
9921
10200
  ...params,
9922
10201
  }),
@@ -9949,7 +10228,7 @@ export class Api<
9949
10228
  query: query,
9950
10229
  body: data,
9951
10230
  secure: true,
9952
- type: ContentType.Json,
10231
+ type: "application/json",
9953
10232
  format: "json",
9954
10233
  ...params,
9955
10234
  }),
@@ -9994,7 +10273,7 @@ export class Api<
9994
10273
  method: "PUT",
9995
10274
  body: data,
9996
10275
  secure: true,
9997
- type: ContentType.Json,
10276
+ type: "application/json",
9998
10277
  format: "json",
9999
10278
  ...params,
10000
10279
  }),
@@ -10056,7 +10335,7 @@ export class Api<
10056
10335
  method: "POST",
10057
10336
  body: data,
10058
10337
  secure: true,
10059
- type: ContentType.Json,
10338
+ type: "application/json",
10060
10339
  format: "json",
10061
10340
  ...params,
10062
10341
  }),
@@ -10110,7 +10389,7 @@ export class Api<
10110
10389
  query: query,
10111
10390
  body: data,
10112
10391
  secure: true,
10113
- type: ContentType.Json,
10392
+ type: "application/json",
10114
10393
  format: "json",
10115
10394
  ...params,
10116
10395
  }),
@@ -10165,7 +10444,7 @@ export class Api<
10165
10444
  */
10166
10445
  getCustomFieldDefinitions: (
10167
10446
  query?: {
10168
- entityType?: "Loan";
10447
+ entityType?: GetCustomFieldDefinitionsParamsEntityTypeEnum;
10169
10448
  },
10170
10449
  params: RequestParams = {},
10171
10450
  ) =>
@@ -10199,7 +10478,7 @@ export class Api<
10199
10478
  method: "POST",
10200
10479
  body: data,
10201
10480
  secure: true,
10202
- type: ContentType.Json,
10481
+ type: "application/json",
10203
10482
  format: "json",
10204
10483
  ...params,
10205
10484
  }),
@@ -10248,7 +10527,7 @@ export class Api<
10248
10527
  method: "PUT",
10249
10528
  body: data,
10250
10529
  secure: true,
10251
- type: ContentType.Json,
10530
+ type: "application/json",
10252
10531
  format: "json",
10253
10532
  ...params,
10254
10533
  }),
@@ -10382,7 +10661,7 @@ export class Api<
10382
10661
  method: "PUT",
10383
10662
  body: data,
10384
10663
  secure: true,
10385
- type: ContentType.Json,
10664
+ type: "application/json",
10386
10665
  format: "json",
10387
10666
  ...params,
10388
10667
  }),
@@ -10501,7 +10780,7 @@ export class Api<
10501
10780
  method: "POST",
10502
10781
  body: data,
10503
10782
  secure: true,
10504
- type: ContentType.Json,
10783
+ type: "application/json",
10505
10784
  format: "json",
10506
10785
  ...params,
10507
10786
  }),
@@ -10578,7 +10857,7 @@ export class Api<
10578
10857
  method: "PUT",
10579
10858
  body: data,
10580
10859
  secure: true,
10581
- type: ContentType.Json,
10860
+ type: "application/json",
10582
10861
  format: "json",
10583
10862
  ...params,
10584
10863
  }),
@@ -10665,7 +10944,7 @@ export class Api<
10665
10944
  method: "POST",
10666
10945
  body: data,
10667
10946
  secure: true,
10668
- type: ContentType.Json,
10947
+ type: "application/json",
10669
10948
  format: "json",
10670
10949
  ...params,
10671
10950
  }),
@@ -10714,7 +10993,7 @@ export class Api<
10714
10993
  method: "PUT",
10715
10994
  body: data,
10716
10995
  secure: true,
10717
- type: ContentType.Json,
10996
+ type: "application/json",
10718
10997
  format: "json",
10719
10998
  ...params,
10720
10999
  }),
@@ -10789,7 +11068,7 @@ export class Api<
10789
11068
  method: "POST",
10790
11069
  body: data,
10791
11070
  secure: true,
10792
- type: ContentType.Json,
11071
+ type: "application/json",
10793
11072
  format: "json",
10794
11073
  ...params,
10795
11074
  }),
@@ -11006,7 +11285,7 @@ export class Api<
11006
11285
  method: "POST",
11007
11286
  body: data,
11008
11287
  secure: true,
11009
- type: ContentType.Json,
11288
+ type: "application/json",
11010
11289
  format: "json",
11011
11290
  ...params,
11012
11291
  }),
@@ -11069,7 +11348,7 @@ export class Api<
11069
11348
  method: "POST",
11070
11349
  body: data,
11071
11350
  secure: true,
11072
- type: ContentType.FormData,
11351
+ type: "multipart/form-data",
11073
11352
  format: "json",
11074
11353
  ...params,
11075
11354
  }),
@@ -11110,7 +11389,7 @@ export class Api<
11110
11389
  method: "PUT",
11111
11390
  body: data,
11112
11391
  secure: true,
11113
- type: ContentType.Json,
11392
+ type: "application/json",
11114
11393
  format: "json",
11115
11394
  ...params,
11116
11395
  }),
@@ -11161,7 +11440,7 @@ export class Api<
11161
11440
  query: query,
11162
11441
  body: data,
11163
11442
  secure: true,
11164
- type: ContentType.Json,
11443
+ type: "application/json",
11165
11444
  format: "json",
11166
11445
  ...params,
11167
11446
  }),
@@ -11208,7 +11487,7 @@ export class Api<
11208
11487
  method: "POST",
11209
11488
  body: data,
11210
11489
  secure: true,
11211
- type: ContentType.Json,
11490
+ type: "application/json",
11212
11491
  format: "json",
11213
11492
  ...params,
11214
11493
  }),
@@ -11249,7 +11528,7 @@ export class Api<
11249
11528
  method: "PUT",
11250
11529
  body: data,
11251
11530
  secure: true,
11252
- type: ContentType.Json,
11531
+ type: "application/json",
11253
11532
  format: "json",
11254
11533
  ...params,
11255
11534
  }),
@@ -11315,7 +11594,7 @@ export class Api<
11315
11594
  method: "POST",
11316
11595
  body: data,
11317
11596
  secure: true,
11318
- type: ContentType.FormData,
11597
+ type: "multipart/form-data",
11319
11598
  format: "json",
11320
11599
  ...params,
11321
11600
  }),
@@ -11423,7 +11702,7 @@ export class Api<
11423
11702
  query: query,
11424
11703
  body: data,
11425
11704
  secure: true,
11426
- type: ContentType.Json,
11705
+ type: "application/json",
11427
11706
  format: "json",
11428
11707
  ...params,
11429
11708
  }),
@@ -11467,7 +11746,7 @@ export class Api<
11467
11746
  method: "PUT",
11468
11747
  body: data,
11469
11748
  secure: true,
11470
- type: ContentType.Json,
11749
+ type: "application/json",
11471
11750
  format: "json",
11472
11751
  ...params,
11473
11752
  }),
@@ -11518,7 +11797,7 @@ export class Api<
11518
11797
  query: query,
11519
11798
  body: data,
11520
11799
  secure: true,
11521
- type: ContentType.Json,
11800
+ type: "application/json",
11522
11801
  format: "json",
11523
11802
  ...params,
11524
11803
  }),
@@ -11562,7 +11841,7 @@ export class Api<
11562
11841
  method: "POST",
11563
11842
  body: data,
11564
11843
  secure: true,
11565
- type: ContentType.Json,
11844
+ type: "application/json",
11566
11845
  format: "json",
11567
11846
  ...params,
11568
11847
  }),
@@ -11607,7 +11886,7 @@ export class Api<
11607
11886
  method: "PUT",
11608
11887
  body: data,
11609
11888
  secure: true,
11610
- type: ContentType.Json,
11889
+ type: "application/json",
11611
11890
  format: "json",
11612
11891
  ...params,
11613
11892
  }),
@@ -11695,7 +11974,7 @@ export class Api<
11695
11974
  method: "PATCH",
11696
11975
  body: data,
11697
11976
  secure: true,
11698
- type: ContentType.JsonPatch,
11977
+ type: "application/json",
11699
11978
  format: "json",
11700
11979
  ...params,
11701
11980
  }),
@@ -11716,7 +11995,7 @@ export class Api<
11716
11995
  method: "POST",
11717
11996
  body: data,
11718
11997
  secure: true,
11719
- type: ContentType.Json,
11998
+ type: "application/json",
11720
11999
  format: "json",
11721
12000
  ...params,
11722
12001
  }),
@@ -11748,7 +12027,7 @@ export class Api<
11748
12027
  query: query,
11749
12028
  body: data,
11750
12029
  secure: true,
11751
- type: ContentType.Json,
12030
+ type: "application/json",
11752
12031
  format: "json",
11753
12032
  ...params,
11754
12033
  }),
@@ -11779,7 +12058,7 @@ export class Api<
11779
12058
  query: query,
11780
12059
  body: data,
11781
12060
  secure: true,
11782
- type: ContentType.Json,
12061
+ type: "application/json",
11783
12062
  format: "json",
11784
12063
  ...params,
11785
12064
  }),
@@ -11805,7 +12084,7 @@ export class Api<
11805
12084
  method: "PATCH",
11806
12085
  body: data,
11807
12086
  secure: true,
11808
- type: ContentType.JsonPatch,
12087
+ type: "application/json",
11809
12088
  format: "json",
11810
12089
  ...params,
11811
12090
  }),
@@ -11832,7 +12111,7 @@ export class Api<
11832
12111
  method: "PATCH",
11833
12112
  body: data,
11834
12113
  secure: true,
11835
- type: ContentType.JsonPatch,
12114
+ type: "application/json",
11836
12115
  format: "json",
11837
12116
  ...params,
11838
12117
  }),
@@ -12005,7 +12284,7 @@ export class Api<
12005
12284
  method: "POST",
12006
12285
  body: data,
12007
12286
  secure: true,
12008
- type: ContentType.FormData,
12287
+ type: "multipart/form-data",
12009
12288
  format: "json",
12010
12289
  ...params,
12011
12290
  }),
@@ -12030,7 +12309,7 @@ export class Api<
12030
12309
  method: "PATCH",
12031
12310
  body: data,
12032
12311
  secure: true,
12033
- type: ContentType.JsonPatch,
12312
+ type: "application/json",
12034
12313
  format: "json",
12035
12314
  ...params,
12036
12315
  }),
@@ -12085,7 +12364,7 @@ export class Api<
12085
12364
  method: "POST",
12086
12365
  body: data,
12087
12366
  secure: true,
12088
- type: ContentType.FormData,
12367
+ type: "multipart/form-data",
12089
12368
  format: "json",
12090
12369
  ...params,
12091
12370
  }),
@@ -12110,7 +12389,7 @@ export class Api<
12110
12389
  method: "PATCH",
12111
12390
  body: data,
12112
12391
  secure: true,
12113
- type: ContentType.JsonPatch,
12392
+ type: "application/json",
12114
12393
  format: "json",
12115
12394
  ...params,
12116
12395
  }),
@@ -12184,7 +12463,7 @@ export class Api<
12184
12463
  method: "POST",
12185
12464
  body: data,
12186
12465
  secure: true,
12187
- type: ContentType.Json,
12466
+ type: "application/json",
12188
12467
  format: "json",
12189
12468
  ...params,
12190
12469
  }),
@@ -12247,7 +12526,7 @@ export class Api<
12247
12526
  method: "PUT",
12248
12527
  body: data,
12249
12528
  secure: true,
12250
- type: ContentType.Json,
12529
+ type: "application/json",
12251
12530
  format: "json",
12252
12531
  ...params,
12253
12532
  }),
@@ -12298,7 +12577,7 @@ export class Api<
12298
12577
  query: query,
12299
12578
  body: data,
12300
12579
  secure: true,
12301
- type: ContentType.Json,
12580
+ type: "application/json",
12302
12581
  format: "json",
12303
12582
  ...params,
12304
12583
  }),
@@ -12326,7 +12605,7 @@ export class Api<
12326
12605
  method: "PUT",
12327
12606
  body: data,
12328
12607
  secure: true,
12329
- type: ContentType.FormData,
12608
+ type: "multipart/form-data",
12330
12609
  format: "json",
12331
12610
  ...params,
12332
12611
  }),
@@ -12409,7 +12688,7 @@ export class Api<
12409
12688
  method: "POST",
12410
12689
  body: data,
12411
12690
  secure: true,
12412
- type: ContentType.Json,
12691
+ type: "application/json",
12413
12692
  format: "json",
12414
12693
  ...params,
12415
12694
  }),
@@ -12456,7 +12735,7 @@ export class Api<
12456
12735
  method: "POST",
12457
12736
  body: data,
12458
12737
  secure: true,
12459
- type: ContentType.Json,
12738
+ type: "application/json",
12460
12739
  format: "json",
12461
12740
  ...params,
12462
12741
  }),
@@ -12504,7 +12783,7 @@ export class Api<
12504
12783
  method: "POST",
12505
12784
  body: data,
12506
12785
  secure: true,
12507
- type: ContentType.Json,
12786
+ type: "application/json",
12508
12787
  ...params,
12509
12788
  }),
12510
12789
 
@@ -12569,7 +12848,7 @@ export class Api<
12569
12848
  method: "PUT",
12570
12849
  body: data,
12571
12850
  secure: true,
12572
- type: ContentType.Json,
12851
+ type: "application/json",
12573
12852
  ...params,
12574
12853
  }),
12575
12854
 
@@ -12597,7 +12876,7 @@ export class Api<
12597
12876
  method: "PUT",
12598
12877
  body: data,
12599
12878
  secure: true,
12600
- type: ContentType.Json,
12879
+ type: "application/json",
12601
12880
  ...params,
12602
12881
  }),
12603
12882
 
@@ -12663,7 +12942,7 @@ export class Api<
12663
12942
  method: "POST",
12664
12943
  body: data,
12665
12944
  secure: true,
12666
- type: ContentType.Json,
12945
+ type: "application/json",
12667
12946
  format: "json",
12668
12947
  ...params,
12669
12948
  }),
@@ -12708,7 +12987,7 @@ export class Api<
12708
12987
  method: "POST",
12709
12988
  body: data,
12710
12989
  secure: true,
12711
- type: ContentType.Json,
12990
+ type: "application/json",
12712
12991
  format: "json",
12713
12992
  ...params,
12714
12993
  }),
@@ -12757,7 +13036,7 @@ export class Api<
12757
13036
  method: "PUT",
12758
13037
  body: data,
12759
13038
  secure: true,
12760
- type: ContentType.Json,
13039
+ type: "application/json",
12761
13040
  format: "json",
12762
13041
  ...params,
12763
13042
  }),
@@ -12892,7 +13171,7 @@ export class Api<
12892
13171
  method: "POST",
12893
13172
  body: data,
12894
13173
  secure: true,
12895
- type: ContentType.Json,
13174
+ type: "application/json",
12896
13175
  format: "json",
12897
13176
  ...params,
12898
13177
  }),
@@ -12926,7 +13205,7 @@ export class Api<
12926
13205
  query: query,
12927
13206
  body: data,
12928
13207
  secure: true,
12929
- type: ContentType.Json,
13208
+ type: "application/json",
12930
13209
  format: "json",
12931
13210
  ...params,
12932
13211
  }),
@@ -12956,7 +13235,7 @@ export class Api<
12956
13235
  query: query,
12957
13236
  body: data,
12958
13237
  secure: true,
12959
- type: ContentType.Json,
13238
+ type: "application/json",
12960
13239
  format: "json",
12961
13240
  ...params,
12962
13241
  }),
@@ -12969,7 +13248,7 @@ export class Api<
12969
13248
  * @summary Download By ID
12970
13249
  * @request GET:/api/loans/{loanId}/documents/{documentId}/download
12971
13250
  * @secure
12972
- * @response `200` `string` OK
13251
+ * @response `200` `Blob` OK
12973
13252
  * @response `404` `ProblemDetails` Not Found
12974
13253
  */
12975
13254
  downloadLoanDocument: (
@@ -12977,7 +13256,7 @@ export class Api<
12977
13256
  documentId: string,
12978
13257
  params: RequestParams = {},
12979
13258
  ) =>
12980
- this.request<string, ProblemDetails>({
13259
+ this.request<Blob, ProblemDetails>({
12981
13260
  path: `/api/loans/${loanId}/documents/${documentId}/download`,
12982
13261
  method: "GET",
12983
13262
  secure: true,
@@ -13014,7 +13293,7 @@ export class Api<
13014
13293
  method: "POST",
13015
13294
  body: data,
13016
13295
  secure: true,
13017
- type: ContentType.FormData,
13296
+ type: "multipart/form-data",
13018
13297
  format: "json",
13019
13298
  ...params,
13020
13299
  }),
@@ -13064,7 +13343,7 @@ export class Api<
13064
13343
  method: "POST",
13065
13344
  body: data,
13066
13345
  secure: true,
13067
- type: ContentType.Json,
13346
+ type: "application/json",
13068
13347
  format: "json",
13069
13348
  ...params,
13070
13349
  }),
@@ -13091,7 +13370,7 @@ export class Api<
13091
13370
  method: "POST",
13092
13371
  body: data,
13093
13372
  secure: true,
13094
- type: ContentType.Json,
13373
+ type: "application/json",
13095
13374
  ...params,
13096
13375
  }),
13097
13376
 
@@ -13138,7 +13417,7 @@ export class Api<
13138
13417
  method: "POST",
13139
13418
  body: data,
13140
13419
  secure: true,
13141
- type: ContentType.Json,
13420
+ type: "application/json",
13142
13421
  format: "json",
13143
13422
  ...params,
13144
13423
  }),
@@ -13183,7 +13462,7 @@ export class Api<
13183
13462
  method: "POST",
13184
13463
  body: data,
13185
13464
  secure: true,
13186
- type: ContentType.Json,
13465
+ type: "application/json",
13187
13466
  format: "json",
13188
13467
  ...params,
13189
13468
  }),
@@ -13246,7 +13525,7 @@ export class Api<
13246
13525
  method: "PUT",
13247
13526
  body: data,
13248
13527
  secure: true,
13249
- type: ContentType.Json,
13528
+ type: "application/json",
13250
13529
  format: "json",
13251
13530
  ...params,
13252
13531
  }),
@@ -13297,7 +13576,7 @@ export class Api<
13297
13576
  query: query,
13298
13577
  body: data,
13299
13578
  secure: true,
13300
- type: ContentType.Json,
13579
+ type: "application/json",
13301
13580
  format: "json",
13302
13581
  ...params,
13303
13582
  }),
@@ -13322,7 +13601,7 @@ export class Api<
13322
13601
  method: "PUT",
13323
13602
  body: data,
13324
13603
  secure: true,
13325
- type: ContentType.Json,
13604
+ type: "application/json",
13326
13605
  format: "json",
13327
13606
  ...params,
13328
13607
  }),
@@ -13397,7 +13676,7 @@ export class Api<
13397
13676
  method: "POST",
13398
13677
  body: data,
13399
13678
  secure: true,
13400
- type: ContentType.Json,
13679
+ type: "application/json",
13401
13680
  format: "json",
13402
13681
  ...params,
13403
13682
  }),
@@ -13493,7 +13772,7 @@ export class Api<
13493
13772
  method: "POST",
13494
13773
  body: data,
13495
13774
  secure: true,
13496
- type: ContentType.Json,
13775
+ type: "application/json",
13497
13776
  format: "json",
13498
13777
  ...params,
13499
13778
  }),
@@ -13527,7 +13806,7 @@ export class Api<
13527
13806
  query: query,
13528
13807
  body: data,
13529
13808
  secure: true,
13530
- type: ContentType.Json,
13809
+ type: "application/json",
13531
13810
  format: "json",
13532
13811
  ...params,
13533
13812
  }),
@@ -13578,7 +13857,7 @@ export class Api<
13578
13857
  method: "POST",
13579
13858
  body: data,
13580
13859
  secure: true,
13581
- type: ContentType.Json,
13860
+ type: "application/json",
13582
13861
  ...params,
13583
13862
  }),
13584
13863
 
@@ -13604,7 +13883,7 @@ export class Api<
13604
13883
  method: "POST",
13605
13884
  body: data,
13606
13885
  secure: true,
13607
- type: ContentType.Json,
13886
+ type: "application/json",
13608
13887
  ...params,
13609
13888
  }),
13610
13889
 
@@ -13667,7 +13946,7 @@ export class Api<
13667
13946
  query: query,
13668
13947
  body: data,
13669
13948
  secure: true,
13670
- type: ContentType.Json,
13949
+ type: "application/json",
13671
13950
  format: "json",
13672
13951
  ...params,
13673
13952
  }),
@@ -13712,7 +13991,7 @@ export class Api<
13712
13991
  method: "POST",
13713
13992
  body: data,
13714
13993
  secure: true,
13715
- type: ContentType.Json,
13994
+ type: "application/json",
13716
13995
  format: "json",
13717
13996
  ...params,
13718
13997
  }),
@@ -13766,7 +14045,7 @@ export class Api<
13766
14045
  query: query,
13767
14046
  body: data,
13768
14047
  secure: true,
13769
- type: ContentType.Json,
14048
+ type: "application/json",
13770
14049
  format: "json",
13771
14050
  ...params,
13772
14051
  }),
@@ -13799,7 +14078,7 @@ export class Api<
13799
14078
  query: query,
13800
14079
  body: data,
13801
14080
  secure: true,
13802
- type: ContentType.Json,
14081
+ type: "application/json",
13803
14082
  format: "json",
13804
14083
  ...params,
13805
14084
  }),
@@ -13845,7 +14124,7 @@ export class Api<
13845
14124
  method: "PUT",
13846
14125
  body: data,
13847
14126
  secure: true,
13848
- type: ContentType.Json,
14127
+ type: "application/json",
13849
14128
  format: "json",
13850
14129
  ...params,
13851
14130
  }),
@@ -13946,7 +14225,7 @@ export class Api<
13946
14225
  method: "POST",
13947
14226
  body: data,
13948
14227
  secure: true,
13949
- type: ContentType.Json,
14228
+ type: "application/json",
13950
14229
  format: "json",
13951
14230
  ...params,
13952
14231
  }),
@@ -13979,7 +14258,7 @@ export class Api<
13979
14258
  query: query,
13980
14259
  body: data,
13981
14260
  secure: true,
13982
- type: ContentType.Json,
14261
+ type: "application/json",
13983
14262
  format: "json",
13984
14263
  ...params,
13985
14264
  }),
@@ -14009,7 +14288,7 @@ export class Api<
14009
14288
  method: "PATCH",
14010
14289
  body: data,
14011
14290
  secure: true,
14012
- type: ContentType.JsonPatch,
14291
+ type: "application/json",
14013
14292
  format: "json",
14014
14293
  ...params,
14015
14294
  }),
@@ -14119,7 +14398,7 @@ export class Api<
14119
14398
  method: "POST",
14120
14399
  body: data,
14121
14400
  secure: true,
14122
- type: ContentType.Json,
14401
+ type: "application/json",
14123
14402
  format: "json",
14124
14403
  ...params,
14125
14404
  }),
@@ -14155,7 +14434,7 @@ export class Api<
14155
14434
  query: query,
14156
14435
  body: data,
14157
14436
  secure: true,
14158
- type: ContentType.Json,
14437
+ type: "application/json",
14159
14438
  format: "json",
14160
14439
  ...params,
14161
14440
  }),
@@ -14207,7 +14486,7 @@ export class Api<
14207
14486
  method: "POST",
14208
14487
  body: data,
14209
14488
  secure: true,
14210
- type: ContentType.Json,
14489
+ type: "application/json",
14211
14490
  format: "json",
14212
14491
  ...params,
14213
14492
  }),
@@ -14235,7 +14514,7 @@ export class Api<
14235
14514
  method: "PUT",
14236
14515
  body: data,
14237
14516
  secure: true,
14238
- type: ContentType.Json,
14517
+ type: "application/json",
14239
14518
  format: "json",
14240
14519
  ...params,
14241
14520
  }),
@@ -14294,7 +14573,7 @@ export class Api<
14294
14573
  method: "POST",
14295
14574
  body: data,
14296
14575
  secure: true,
14297
- type: ContentType.FormData,
14576
+ type: "multipart/form-data",
14298
14577
  format: "json",
14299
14578
  ...params,
14300
14579
  }),
@@ -14322,7 +14601,7 @@ export class Api<
14322
14601
  method: "POST",
14323
14602
  body: data,
14324
14603
  secure: true,
14325
- type: ContentType.Json,
14604
+ type: "application/json",
14326
14605
  ...params,
14327
14606
  }),
14328
14607
 
@@ -14348,7 +14627,7 @@ export class Api<
14348
14627
  method: "POST",
14349
14628
  body: data,
14350
14629
  secure: true,
14351
- type: ContentType.Json,
14630
+ type: "application/json",
14352
14631
  ...params,
14353
14632
  }),
14354
14633
 
@@ -14380,7 +14659,7 @@ export class Api<
14380
14659
  query: query,
14381
14660
  body: data,
14382
14661
  secure: true,
14383
- type: ContentType.Json,
14662
+ type: "application/json",
14384
14663
  format: "json",
14385
14664
  ...params,
14386
14665
  }),
@@ -14405,7 +14684,7 @@ export class Api<
14405
14684
  method: "POST",
14406
14685
  body: data,
14407
14686
  secure: true,
14408
- type: ContentType.Json,
14687
+ type: "application/json",
14409
14688
  format: "json",
14410
14689
  ...params,
14411
14690
  }),
@@ -14492,7 +14771,7 @@ export class Api<
14492
14771
  method: "POST",
14493
14772
  body: data,
14494
14773
  secure: true,
14495
- type: ContentType.Json,
14774
+ type: "application/json",
14496
14775
  format: "json",
14497
14776
  ...params,
14498
14777
  }),
@@ -14518,7 +14797,7 @@ export class Api<
14518
14797
  method: "POST",
14519
14798
  body: data,
14520
14799
  secure: true,
14521
- type: ContentType.Json,
14800
+ type: "application/json",
14522
14801
  format: "json",
14523
14802
  ...params,
14524
14803
  }),
@@ -14545,7 +14824,7 @@ export class Api<
14545
14824
  method: "PUT",
14546
14825
  body: data,
14547
14826
  secure: true,
14548
- type: ContentType.Json,
14827
+ type: "application/json",
14549
14828
  format: "json",
14550
14829
  ...params,
14551
14830
  }),
@@ -14662,7 +14941,7 @@ export class Api<
14662
14941
  method: "POST",
14663
14942
  body: data,
14664
14943
  secure: true,
14665
- type: ContentType.Json,
14944
+ type: "application/json",
14666
14945
  format: "json",
14667
14946
  ...params,
14668
14947
  }),
@@ -14740,7 +15019,7 @@ export class Api<
14740
15019
  query: query,
14741
15020
  body: data,
14742
15021
  secure: true,
14743
- type: ContentType.Json,
15022
+ type: "application/json",
14744
15023
  format: "json",
14745
15024
  ...params,
14746
15025
  }),
@@ -14784,7 +15063,7 @@ export class Api<
14784
15063
  method: "POST",
14785
15064
  body: data,
14786
15065
  secure: true,
14787
- type: ContentType.Json,
15066
+ type: "application/json",
14788
15067
  format: "json",
14789
15068
  ...params,
14790
15069
  }),
@@ -14831,7 +15110,7 @@ export class Api<
14831
15110
  method: "PUT",
14832
15111
  body: data,
14833
15112
  secure: true,
14834
- type: ContentType.Json,
15113
+ type: "application/json",
14835
15114
  format: "json",
14836
15115
  ...params,
14837
15116
  }),
@@ -14877,7 +15156,7 @@ export class Api<
14877
15156
  method: "POST",
14878
15157
  body: data,
14879
15158
  secure: true,
14880
- type: ContentType.Json,
15159
+ type: "application/json",
14881
15160
  format: "json",
14882
15161
  ...params,
14883
15162
  }),
@@ -14902,7 +15181,7 @@ export class Api<
14902
15181
  method: "POST",
14903
15182
  body: data,
14904
15183
  secure: true,
14905
- type: ContentType.Json,
15184
+ type: "application/json",
14906
15185
  format: "json",
14907
15186
  ...params,
14908
15187
  }),
@@ -14927,7 +15206,7 @@ export class Api<
14927
15206
  method: "POST",
14928
15207
  body: data,
14929
15208
  secure: true,
14930
- type: ContentType.Json,
15209
+ type: "application/json",
14931
15210
  format: "json",
14932
15211
  ...params,
14933
15212
  }),
@@ -14952,7 +15231,7 @@ export class Api<
14952
15231
  method: "POST",
14953
15232
  body: data,
14954
15233
  secure: true,
14955
- type: ContentType.Json,
15234
+ type: "application/json",
14956
15235
  format: "json",
14957
15236
  ...params,
14958
15237
  }),
@@ -14977,7 +15256,7 @@ export class Api<
14977
15256
  method: "POST",
14978
15257
  body: data,
14979
15258
  secure: true,
14980
- type: ContentType.Json,
15259
+ type: "application/json",
14981
15260
  format: "json",
14982
15261
  ...params,
14983
15262
  }),
@@ -15027,7 +15306,7 @@ export class Api<
15027
15306
  method: "POST",
15028
15307
  body: data,
15029
15308
  secure: true,
15030
- type: ContentType.Json,
15309
+ type: "application/json",
15031
15310
  format: "json",
15032
15311
  ...params,
15033
15312
  }),
@@ -15060,7 +15339,7 @@ export class Api<
15060
15339
  query: query,
15061
15340
  body: data,
15062
15341
  secure: true,
15063
- type: ContentType.Json,
15342
+ type: "application/json",
15064
15343
  format: "json",
15065
15344
  ...params,
15066
15345
  }),
@@ -15105,7 +15384,7 @@ export class Api<
15105
15384
  method: "PUT",
15106
15385
  body: data,
15107
15386
  secure: true,
15108
- type: ContentType.Json,
15387
+ type: "application/json",
15109
15388
  format: "json",
15110
15389
  ...params,
15111
15390
  }),
@@ -15189,7 +15468,7 @@ export class Api<
15189
15468
  method: "POST",
15190
15469
  body: data,
15191
15470
  secure: true,
15192
- type: ContentType.Json,
15471
+ type: "application/json",
15193
15472
  format: "json",
15194
15473
  ...params,
15195
15474
  }),
@@ -15238,7 +15517,7 @@ export class Api<
15238
15517
  method: "PUT",
15239
15518
  body: data,
15240
15519
  secure: true,
15241
- type: ContentType.Json,
15520
+ type: "application/json",
15242
15521
  format: "json",
15243
15522
  ...params,
15244
15523
  }),
@@ -15280,16 +15559,7 @@ export class Api<
15280
15559
  query?: {
15281
15560
  showAll?: boolean;
15282
15561
  /** @default "Realtor" */
15283
- role?:
15284
- | "Borrower"
15285
- | "LoanOfficer"
15286
- | "Admin"
15287
- | "SuperAdmin"
15288
- | "Realtor"
15289
- | "SettlementAgent"
15290
- | "LoanProcessor"
15291
- | "LoanOfficerAssistant"
15292
- | "SystemAdmin";
15562
+ role?: GetPartnersParamsRoleEnum;
15293
15563
  /** @format int32 */
15294
15564
  pageSize?: number;
15295
15565
  /** @format int32 */
@@ -15336,7 +15606,7 @@ export class Api<
15336
15606
  query: query,
15337
15607
  body: data,
15338
15608
  secure: true,
15339
- type: ContentType.Json,
15609
+ type: "application/json",
15340
15610
  format: "json",
15341
15611
  ...params,
15342
15612
  }),
@@ -15381,7 +15651,7 @@ export class Api<
15381
15651
  method: "POST",
15382
15652
  body: data,
15383
15653
  secure: true,
15384
- type: ContentType.Json,
15654
+ type: "application/json",
15385
15655
  format: "json",
15386
15656
  ...params,
15387
15657
  }),
@@ -15435,7 +15705,7 @@ export class Api<
15435
15705
  query: query,
15436
15706
  body: data,
15437
15707
  secure: true,
15438
- type: ContentType.Json,
15708
+ type: "application/json",
15439
15709
  format: "json",
15440
15710
  ...params,
15441
15711
  }),
@@ -15480,7 +15750,7 @@ export class Api<
15480
15750
  method: "POST",
15481
15751
  body: data,
15482
15752
  secure: true,
15483
- type: ContentType.Json,
15753
+ type: "application/json",
15484
15754
  format: "json",
15485
15755
  ...params,
15486
15756
  }),
@@ -15532,7 +15802,7 @@ export class Api<
15532
15802
  method: "POST",
15533
15803
  body: data,
15534
15804
  secure: true,
15535
- type: ContentType.Json,
15805
+ type: "application/json",
15536
15806
  format: "json",
15537
15807
  ...params,
15538
15808
  }),
@@ -15589,7 +15859,7 @@ export class Api<
15589
15859
  query: query,
15590
15860
  body: data,
15591
15861
  secure: true,
15592
- type: ContentType.Json,
15862
+ type: "application/json",
15593
15863
  format: "json",
15594
15864
  ...params,
15595
15865
  }),
@@ -15625,7 +15895,7 @@ export class Api<
15625
15895
  * @response `404` `ProblemDetails` Not Found
15626
15896
  */
15627
15897
  getSamlMetadata: (
15628
- sSoIntegration: "ConsumerConnect" | "TheBigPOS" | "POSF",
15898
+ sSoIntegration: GetSamlMetadataParamsEnum,
15629
15899
  ssoIntegration: string,
15630
15900
  params: RequestParams = {},
15631
15901
  ) =>
@@ -15647,7 +15917,7 @@ export class Api<
15647
15917
  * @response `200` `File` OK
15648
15918
  */
15649
15919
  createOrReplaceSamlMetadata: (
15650
- sSoIntegration: "ConsumerConnect" | "TheBigPOS" | "POSF",
15920
+ sSoIntegration: CreateOrReplaceSamlMetadataParamsEnum,
15651
15921
  ssoIntegration: string,
15652
15922
  params: RequestParams = {},
15653
15923
  ) =>
@@ -15772,7 +16042,162 @@ export class Api<
15772
16042
  method: "POST",
15773
16043
  body: data,
15774
16044
  secure: true,
15775
- 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",
15776
16201
  format: "json",
15777
16202
  ...params,
15778
16203
  }),
@@ -15820,7 +16245,7 @@ export class Api<
15820
16245
  method: "POST",
15821
16246
  body: data,
15822
16247
  secure: true,
15823
- type: ContentType.Json,
16248
+ type: "application/json",
15824
16249
  format: "json",
15825
16250
  ...params,
15826
16251
  }),
@@ -15872,7 +16297,7 @@ export class Api<
15872
16297
  method: "POST",
15873
16298
  body: data,
15874
16299
  secure: true,
15875
- type: ContentType.Json,
16300
+ type: "application/json",
15876
16301
  format: "json",
15877
16302
  ...params,
15878
16303
  }),
@@ -15914,7 +16339,7 @@ export class Api<
15914
16339
  method: "PUT",
15915
16340
  body: data,
15916
16341
  secure: true,
15917
- type: ContentType.Json,
16342
+ type: "application/json",
15918
16343
  format: "json",
15919
16344
  ...params,
15920
16345
  }),
@@ -15966,7 +16391,7 @@ export class Api<
15966
16391
  query: query,
15967
16392
  body: data,
15968
16393
  secure: true,
15969
- type: ContentType.Json,
16394
+ type: "application/json",
15970
16395
  format: "json",
15971
16396
  ...params,
15972
16397
  }),
@@ -15989,7 +16414,7 @@ export class Api<
15989
16414
  method: "POST",
15990
16415
  body: data,
15991
16416
  secure: true,
15992
- type: ContentType.Json,
16417
+ type: "application/json",
15993
16418
  ...params,
15994
16419
  }),
15995
16420
 
@@ -16022,7 +16447,7 @@ export class Api<
16022
16447
  query: query,
16023
16448
  body: data,
16024
16449
  secure: true,
16025
- type: ContentType.Json,
16450
+ type: "application/json",
16026
16451
  format: "json",
16027
16452
  ...params,
16028
16453
  }),
@@ -16066,7 +16491,7 @@ export class Api<
16066
16491
  method: "POST",
16067
16492
  body: data,
16068
16493
  secure: true,
16069
- type: ContentType.Json,
16494
+ type: "application/json",
16070
16495
  format: "json",
16071
16496
  ...params,
16072
16497
  }),
@@ -16090,7 +16515,7 @@ export class Api<
16090
16515
  method: "PUT",
16091
16516
  body: data,
16092
16517
  secure: true,
16093
- type: ContentType.Json,
16518
+ type: "application/json",
16094
16519
  format: "json",
16095
16520
  ...params,
16096
16521
  }),
@@ -16133,7 +16558,7 @@ export class Api<
16133
16558
  method: "POST",
16134
16559
  body: data,
16135
16560
  secure: true,
16136
- type: ContentType.Json,
16561
+ type: "application/json",
16137
16562
  format: "json",
16138
16563
  ...params,
16139
16564
  }),
@@ -16185,7 +16610,7 @@ export class Api<
16185
16610
  query: query,
16186
16611
  body: data,
16187
16612
  secure: true,
16188
- type: ContentType.Json,
16613
+ type: "application/json",
16189
16614
  format: "json",
16190
16615
  ...params,
16191
16616
  }),
@@ -16359,7 +16784,7 @@ export class Api<
16359
16784
  method: "POST",
16360
16785
  body: data,
16361
16786
  secure: true,
16362
- type: ContentType.Json,
16787
+ type: "application/json",
16363
16788
  format: "json",
16364
16789
  ...params,
16365
16790
  }),
@@ -16458,7 +16883,7 @@ export class Api<
16458
16883
  method: "POST",
16459
16884
  body: data,
16460
16885
  secure: true,
16461
- type: ContentType.Json,
16886
+ type: "application/json",
16462
16887
  format: "json",
16463
16888
  ...params,
16464
16889
  }),
@@ -16524,7 +16949,7 @@ export class Api<
16524
16949
  method: "POST",
16525
16950
  body: data,
16526
16951
  secure: true,
16527
- type: ContentType.Json,
16952
+ type: "application/json",
16528
16953
  format: "json",
16529
16954
  ...params,
16530
16955
  }),
@@ -16595,7 +17020,7 @@ export class Api<
16595
17020
  query: query,
16596
17021
  body: data,
16597
17022
  secure: true,
16598
- type: ContentType.Json,
17023
+ type: "application/json",
16599
17024
  format: "json",
16600
17025
  ...params,
16601
17026
  }),
@@ -16692,7 +17117,7 @@ export class Api<
16692
17117
  method: "PUT",
16693
17118
  body: data,
16694
17119
  secure: true,
16695
- type: ContentType.Json,
17120
+ type: "application/json",
16696
17121
  format: "json",
16697
17122
  ...params,
16698
17123
  }),
@@ -16734,7 +17159,7 @@ export class Api<
16734
17159
  method: "POST",
16735
17160
  body: data,
16736
17161
  secure: true,
16737
- type: ContentType.Json,
17162
+ type: "application/json",
16738
17163
  format: "json",
16739
17164
  ...params,
16740
17165
  }),
@@ -16760,7 +17185,7 @@ export class Api<
16760
17185
  method: "POST",
16761
17186
  body: data,
16762
17187
  secure: true,
16763
- type: ContentType.Json,
17188
+ type: "application/json",
16764
17189
  ...params,
16765
17190
  }),
16766
17191
 
@@ -16785,7 +17210,7 @@ export class Api<
16785
17210
  method: "POST",
16786
17211
  body: data,
16787
17212
  secure: true,
16788
- type: ContentType.Json,
17213
+ type: "application/json",
16789
17214
  ...params,
16790
17215
  }),
16791
17216
 
@@ -16871,7 +17296,7 @@ export class Api<
16871
17296
  method: "POST",
16872
17297
  body: data,
16873
17298
  secure: true,
16874
- type: ContentType.Json,
17299
+ type: "application/json",
16875
17300
  ...params,
16876
17301
  }),
16877
17302
 
@@ -16911,7 +17336,7 @@ export class Api<
16911
17336
  method: "POST",
16912
17337
  body: data,
16913
17338
  secure: true,
16914
- type: ContentType.Json,
17339
+ type: "application/json",
16915
17340
  ...params,
16916
17341
  }),
16917
17342
 
@@ -16994,7 +17419,7 @@ export class Api<
16994
17419
  method: "POST",
16995
17420
  body: data,
16996
17421
  secure: true,
16997
- type: ContentType.Json,
17422
+ type: "application/json",
16998
17423
  ...params,
16999
17424
  }),
17000
17425
 
@@ -17086,7 +17511,7 @@ export class Api<
17086
17511
  method: "POST",
17087
17512
  body: data,
17088
17513
  secure: true,
17089
- type: ContentType.Json,
17514
+ type: "application/json",
17090
17515
  format: "json",
17091
17516
  ...params,
17092
17517
  }),
@@ -17119,7 +17544,7 @@ export class Api<
17119
17544
  query: query,
17120
17545
  body: data,
17121
17546
  secure: true,
17122
- type: ContentType.Json,
17547
+ type: "application/json",
17123
17548
  format: "json",
17124
17549
  ...params,
17125
17550
  }),
@@ -17140,7 +17565,7 @@ export class Api<
17140
17565
  method: "POST",
17141
17566
  body: data,
17142
17567
  secure: true,
17143
- type: ContentType.Json,
17568
+ type: "application/json",
17144
17569
  format: "json",
17145
17570
  ...params,
17146
17571
  }),
@@ -17162,7 +17587,7 @@ export class Api<
17162
17587
  method: "POST",
17163
17588
  body: data,
17164
17589
  secure: true,
17165
- type: ContentType.Json,
17590
+ type: "application/json",
17166
17591
  format: "json",
17167
17592
  ...params,
17168
17593
  }),
@@ -17188,7 +17613,7 @@ export class Api<
17188
17613
  method: "PUT",
17189
17614
  body: data,
17190
17615
  secure: true,
17191
- type: ContentType.Json,
17616
+ type: "application/json",
17192
17617
  format: "json",
17193
17618
  ...params,
17194
17619
  }),
@@ -17254,7 +17679,7 @@ export class Api<
17254
17679
  method: "POST",
17255
17680
  body: data,
17256
17681
  secure: true,
17257
- type: ContentType.Json,
17682
+ type: "application/json",
17258
17683
  ...params,
17259
17684
  }),
17260
17685
 
@@ -17275,7 +17700,7 @@ export class Api<
17275
17700
  method: "POST",
17276
17701
  body: data,
17277
17702
  secure: true,
17278
- type: ContentType.Json,
17703
+ type: "application/json",
17279
17704
  ...params,
17280
17705
  }),
17281
17706
 
@@ -17300,7 +17725,7 @@ export class Api<
17300
17725
  method: "POST",
17301
17726
  body: data,
17302
17727
  secure: true,
17303
- type: ContentType.Json,
17728
+ type: "application/json",
17304
17729
  ...params,
17305
17730
  }),
17306
17731
 
@@ -17324,7 +17749,7 @@ export class Api<
17324
17749
  method: "POST",
17325
17750
  body: data,
17326
17751
  secure: true,
17327
- type: ContentType.Json,
17752
+ type: "application/json",
17328
17753
  ...params,
17329
17754
  }),
17330
17755
 
@@ -17367,7 +17792,7 @@ export class Api<
17367
17792
  method: "PUT",
17368
17793
  body: data,
17369
17794
  secure: true,
17370
- type: ContentType.Json,
17795
+ type: "application/json",
17371
17796
  ...params,
17372
17797
  }),
17373
17798
 
@@ -17407,7 +17832,7 @@ export class Api<
17407
17832
  method: "PUT",
17408
17833
  body: data,
17409
17834
  secure: true,
17410
- type: ContentType.Json,
17835
+ type: "application/json",
17411
17836
  format: "json",
17412
17837
  ...params,
17413
17838
  }),
@@ -17431,7 +17856,7 @@ export class Api<
17431
17856
  method: "PUT",
17432
17857
  body: data,
17433
17858
  secure: true,
17434
- type: ContentType.Json,
17859
+ type: "application/json",
17435
17860
  format: "json",
17436
17861
  ...params,
17437
17862
  }),
@@ -17508,7 +17933,7 @@ export class Api<
17508
17933
  method: "POST",
17509
17934
  body: data,
17510
17935
  secure: true,
17511
- type: ContentType.Json,
17936
+ type: "application/json",
17512
17937
  ...params,
17513
17938
  }),
17514
17939
 
@@ -17528,7 +17953,7 @@ export class Api<
17528
17953
  method: "POST",
17529
17954
  body: data,
17530
17955
  secure: true,
17531
- type: ContentType.Json,
17956
+ type: "application/json",
17532
17957
  format: "json",
17533
17958
  ...params,
17534
17959
  }),