@matech/thebigpos-sdk 2.45.0-rc0 → 2.45.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/.husky/pre-commit +2 -2
- package/LICENSE +21 -21
- package/dist/index.d.ts +185 -108
- package/dist/index.js +180 -189
- package/dist/index.js.map +1 -1
- package/package.json +6 -5
- package/src/index.ts +987 -697
- package/tsconfig.json +27 -27
package/src/index.ts
CHANGED
|
@@ -511,7 +511,9 @@ export type AiQueryTemplateName =
|
|
|
511
511
|
| "ApplicationCompleteness"
|
|
512
512
|
| "LosSyncHealth"
|
|
513
513
|
| "DeclarationsRisk"
|
|
514
|
-
| "MilitaryEligibility"
|
|
514
|
+
| "MilitaryEligibility"
|
|
515
|
+
| "OutstandingTasks"
|
|
516
|
+
| "ConsentTracking";
|
|
515
517
|
|
|
516
518
|
export type AiPromptCategory =
|
|
517
519
|
| "DocumentAnalysis"
|
|
@@ -673,7 +675,7 @@ export interface AccountBilling {
|
|
|
673
675
|
}
|
|
674
676
|
|
|
675
677
|
export interface AccountBillingRequest {
|
|
676
|
-
billingType:
|
|
678
|
+
billingType: AccountBillingRequestBillingTypeEnum;
|
|
677
679
|
/** @format double */
|
|
678
680
|
contractedRate: number;
|
|
679
681
|
}
|
|
@@ -723,7 +725,7 @@ export interface Action {
|
|
|
723
725
|
comments?: string | null;
|
|
724
726
|
/** @format uuid */
|
|
725
727
|
siteConfigurationID: string;
|
|
726
|
-
applicationSettings?: any;
|
|
728
|
+
applicationSettings?: any | null;
|
|
727
729
|
surveysToken?: string | null;
|
|
728
730
|
}
|
|
729
731
|
|
|
@@ -960,29 +962,7 @@ export interface AiAuditLog {
|
|
|
960
962
|
conversationId?: string | null;
|
|
961
963
|
/** @format uuid */
|
|
962
964
|
messageId?: string | null;
|
|
963
|
-
eventType:
|
|
964
|
-
| "Error"
|
|
965
|
-
| "GuardrailBlockedPre"
|
|
966
|
-
| "GuardrailPassedPre"
|
|
967
|
-
| "IntentClassified"
|
|
968
|
-
| "LoanResolvedFromMessage"
|
|
969
|
-
| "DocumentNotFound"
|
|
970
|
-
| "GuardrailBlockedPost"
|
|
971
|
-
| "GuardrailPassedPost"
|
|
972
|
-
| "DocumentAnalyzed"
|
|
973
|
-
| "DocumentList"
|
|
974
|
-
| "DocumentResolutionAmbiguous"
|
|
975
|
-
| "ResponseGenerated"
|
|
976
|
-
| "ParametersExtracted"
|
|
977
|
-
| "QueryExecuted"
|
|
978
|
-
| "LoanContextNotFound"
|
|
979
|
-
| "LoanContextLoaded"
|
|
980
|
-
| "GuardrailBlockedBedrock"
|
|
981
|
-
| "PromptMatched"
|
|
982
|
-
| "QueryCondensed"
|
|
983
|
-
| "IntentParseFailed"
|
|
984
|
-
| "LoanSearchTermDiscarded"
|
|
985
|
-
| "CanonicalFieldsSelected";
|
|
965
|
+
eventType: AiAuditLogEventTypeEnum;
|
|
986
966
|
modelId?: string | null;
|
|
987
967
|
/** @format int32 */
|
|
988
968
|
inputTokens?: number | null;
|
|
@@ -995,7 +975,7 @@ export interface AiAuditLog {
|
|
|
995
975
|
guardrailCategory?: string | null;
|
|
996
976
|
rawRequest?: string | null;
|
|
997
977
|
rawResponse?: string | null;
|
|
998
|
-
details?: any;
|
|
978
|
+
details?: any | null;
|
|
999
979
|
/** @format date-time */
|
|
1000
980
|
createdAt: string;
|
|
1001
981
|
}
|
|
@@ -1064,18 +1044,7 @@ export interface AiChatMessagePaginated {
|
|
|
1064
1044
|
}
|
|
1065
1045
|
|
|
1066
1046
|
export interface AiChatMetadata {
|
|
1067
|
-
intent:
|
|
1068
|
-
| "Greeting"
|
|
1069
|
-
| "Invalid"
|
|
1070
|
-
| "Relevant"
|
|
1071
|
-
| "LoanSpecific"
|
|
1072
|
-
| "DocumentList"
|
|
1073
|
-
| "GeneralKnowledge"
|
|
1074
|
-
| "Blocked"
|
|
1075
|
-
| "Action"
|
|
1076
|
-
| "ConversationMeta"
|
|
1077
|
-
| "Capabilities"
|
|
1078
|
-
| "UsageReport";
|
|
1047
|
+
intent: AiChatMetadataIntentEnum;
|
|
1079
1048
|
fieldsAccessed: string[];
|
|
1080
1049
|
/** @format int64 */
|
|
1081
1050
|
queryTimeMs: number;
|
|
@@ -1103,7 +1072,7 @@ export interface AiChatRequest {
|
|
|
1103
1072
|
}
|
|
1104
1073
|
|
|
1105
1074
|
export interface AiChatStructuredData {
|
|
1106
|
-
type:
|
|
1075
|
+
type: AiChatStructuredDataTypeEnum;
|
|
1107
1076
|
displayHint?: AiDisplayHint | null;
|
|
1108
1077
|
detectedDocumentType?: string | null;
|
|
1109
1078
|
columns: string[];
|
|
@@ -1120,19 +1089,12 @@ export interface AiConfigChangeLog {
|
|
|
1120
1089
|
accountId?: string | null;
|
|
1121
1090
|
/** @format uuid */
|
|
1122
1091
|
actorUserId: string;
|
|
1123
|
-
entityType:
|
|
1124
|
-
| "Prompt"
|
|
1125
|
-
| "Guardrail"
|
|
1126
|
-
| "CanonicalField"
|
|
1127
|
-
| "UrlSource"
|
|
1128
|
-
| "AdminSettings"
|
|
1129
|
-
| "AccountTokenSettings"
|
|
1130
|
-
| "AccountSettings";
|
|
1092
|
+
entityType: AiConfigChangeLogEntityTypeEnum;
|
|
1131
1093
|
/** @format uuid */
|
|
1132
1094
|
entityId?: string | null;
|
|
1133
|
-
action:
|
|
1134
|
-
before?: any;
|
|
1135
|
-
after?: any;
|
|
1095
|
+
action: AiConfigChangeLogActionEnum;
|
|
1096
|
+
before?: any | null;
|
|
1097
|
+
after?: any | null;
|
|
1136
1098
|
/** @format date-time */
|
|
1137
1099
|
createdAt: string;
|
|
1138
1100
|
}
|
|
@@ -1213,7 +1175,7 @@ export interface AiGuardrail {
|
|
|
1213
1175
|
/** @format uuid */
|
|
1214
1176
|
id: string;
|
|
1215
1177
|
name: string;
|
|
1216
|
-
category:
|
|
1178
|
+
category: AiGuardrailCategoryEnum;
|
|
1217
1179
|
description?: string | null;
|
|
1218
1180
|
keywords: string[];
|
|
1219
1181
|
responseTemplate: string;
|
|
@@ -1325,8 +1287,8 @@ export interface AiUrlSource {
|
|
|
1325
1287
|
name: string;
|
|
1326
1288
|
url: string;
|
|
1327
1289
|
description?: string | null;
|
|
1328
|
-
category:
|
|
1329
|
-
scope:
|
|
1290
|
+
category: AiUrlSourceCategoryEnum;
|
|
1291
|
+
scope: AiUrlSourceScopeEnum;
|
|
1330
1292
|
isActive: boolean;
|
|
1331
1293
|
isDefault: boolean;
|
|
1332
1294
|
hasAccountOverride: boolean;
|
|
@@ -1444,21 +1406,14 @@ export interface AuditLogEntry {
|
|
|
1444
1406
|
/** @format uuid */
|
|
1445
1407
|
id: string;
|
|
1446
1408
|
entityType: string;
|
|
1447
|
-
changeType:
|
|
1448
|
-
| "Created"
|
|
1449
|
-
| "Modified"
|
|
1450
|
-
| "SoftDeleted"
|
|
1451
|
-
| "HardDeleted"
|
|
1452
|
-
| "Restored"
|
|
1453
|
-
| "Deactivated"
|
|
1454
|
-
| "Reactivated";
|
|
1409
|
+
changeType: AuditLogEntryChangeTypeEnum;
|
|
1455
1410
|
/** @format uuid */
|
|
1456
1411
|
entityId: string;
|
|
1457
1412
|
performedBy?: AuditLogUser | null;
|
|
1458
1413
|
rootEntityType?: string | null;
|
|
1459
1414
|
/** @format uuid */
|
|
1460
1415
|
rootEntityId?: string | null;
|
|
1461
|
-
changes?: any;
|
|
1416
|
+
changes?: any | null;
|
|
1462
1417
|
/** @format date-time */
|
|
1463
1418
|
createdAt: string;
|
|
1464
1419
|
}
|
|
@@ -1503,20 +1458,7 @@ export interface BorrowerCount {
|
|
|
1503
1458
|
firstName: string;
|
|
1504
1459
|
lastName: string;
|
|
1505
1460
|
email: string;
|
|
1506
|
-
role:
|
|
1507
|
-
| "Borrower"
|
|
1508
|
-
| "CoBorrower"
|
|
1509
|
-
| "NonBorrower"
|
|
1510
|
-
| "LoanOfficer"
|
|
1511
|
-
| "LoanProcessor"
|
|
1512
|
-
| "LoanOfficerAssistant"
|
|
1513
|
-
| "SupportingLoanOfficer"
|
|
1514
|
-
| "BuyerAgent"
|
|
1515
|
-
| "SellerAgent"
|
|
1516
|
-
| "TitleInsuranceAgent"
|
|
1517
|
-
| "EscrowAgent"
|
|
1518
|
-
| "SettlementAgent"
|
|
1519
|
-
| "Admin";
|
|
1461
|
+
role: BorrowerCountRoleEnum;
|
|
1520
1462
|
/** @format int32 */
|
|
1521
1463
|
count: number;
|
|
1522
1464
|
}
|
|
@@ -1527,20 +1469,7 @@ export interface BorrowerIdentity {
|
|
|
1527
1469
|
firstName: string;
|
|
1528
1470
|
lastName: string;
|
|
1529
1471
|
email: string;
|
|
1530
|
-
role:
|
|
1531
|
-
| "Borrower"
|
|
1532
|
-
| "CoBorrower"
|
|
1533
|
-
| "NonBorrower"
|
|
1534
|
-
| "LoanOfficer"
|
|
1535
|
-
| "LoanProcessor"
|
|
1536
|
-
| "LoanOfficerAssistant"
|
|
1537
|
-
| "SupportingLoanOfficer"
|
|
1538
|
-
| "BuyerAgent"
|
|
1539
|
-
| "SellerAgent"
|
|
1540
|
-
| "TitleInsuranceAgent"
|
|
1541
|
-
| "EscrowAgent"
|
|
1542
|
-
| "SettlementAgent"
|
|
1543
|
-
| "Admin";
|
|
1472
|
+
role: BorrowerIdentityRoleEnum;
|
|
1544
1473
|
}
|
|
1545
1474
|
|
|
1546
1475
|
export interface BorrowersNotUsingPosSummary {
|
|
@@ -1801,7 +1730,7 @@ export interface CorporateSearchCriteria {
|
|
|
1801
1730
|
}
|
|
1802
1731
|
|
|
1803
1732
|
export interface CreateAccessScopeRequest {
|
|
1804
|
-
scopeType:
|
|
1733
|
+
scopeType: CreateAccessScopeRequestScopeTypeEnum;
|
|
1805
1734
|
/** @format uuid */
|
|
1806
1735
|
userId?: string | null;
|
|
1807
1736
|
/** @format uuid */
|
|
@@ -1820,7 +1749,7 @@ export interface CreateAccountRequest {
|
|
|
1820
1749
|
/** @format int64 */
|
|
1821
1750
|
nlmsid: number;
|
|
1822
1751
|
settings: AccountSettingsRequest;
|
|
1823
|
-
environment:
|
|
1752
|
+
environment: CreateAccountRequestEnvironmentEnum;
|
|
1824
1753
|
losIntegration: LOSIntegration;
|
|
1825
1754
|
billingSettings: AccountBillingRequest;
|
|
1826
1755
|
}
|
|
@@ -1836,7 +1765,7 @@ export interface CreateAiCanonicalFieldRequest {
|
|
|
1836
1765
|
|
|
1837
1766
|
export interface CreateAiGuardrailRequest {
|
|
1838
1767
|
name: string;
|
|
1839
|
-
category:
|
|
1768
|
+
category: CreateAiGuardrailRequestCategoryEnum;
|
|
1840
1769
|
description?: string | null;
|
|
1841
1770
|
keywords: string[];
|
|
1842
1771
|
responseTemplate: string;
|
|
@@ -1864,8 +1793,8 @@ export interface CreateAiUrlSourceRequest {
|
|
|
1864
1793
|
name: string;
|
|
1865
1794
|
url: string;
|
|
1866
1795
|
description?: string | null;
|
|
1867
|
-
category:
|
|
1868
|
-
scope:
|
|
1796
|
+
category: CreateAiUrlSourceRequestCategoryEnum;
|
|
1797
|
+
scope: CreateAiUrlSourceRequestScopeEnum;
|
|
1869
1798
|
}
|
|
1870
1799
|
|
|
1871
1800
|
export interface CreateBranchRequest {
|
|
@@ -1890,15 +1819,8 @@ export interface CreateCustomFieldDefinitionRequest {
|
|
|
1890
1819
|
name: string;
|
|
1891
1820
|
defaultValue?: string | null;
|
|
1892
1821
|
regexPattern?: string | null;
|
|
1893
|
-
dataType:
|
|
1894
|
-
|
|
1895
|
-
| "Number"
|
|
1896
|
-
| "Decimal"
|
|
1897
|
-
| "Boolean"
|
|
1898
|
-
| "Date"
|
|
1899
|
-
| "SingleSelect"
|
|
1900
|
-
| "MultiSelect";
|
|
1901
|
-
entityType: "Loan";
|
|
1822
|
+
dataType: CreateCustomFieldDefinitionRequestDataTypeEnum;
|
|
1823
|
+
entityType: CreateCustomFieldDefinitionRequestEntityTypeEnum;
|
|
1902
1824
|
options?: CustomFieldOptionRequest[] | null;
|
|
1903
1825
|
permissions?: CustomFieldPermissionRequest[] | null;
|
|
1904
1826
|
}
|
|
@@ -1915,20 +1837,7 @@ export interface CreateDocumentTemplateRequest {
|
|
|
1915
1837
|
export interface CreateGroupMemberRequest {
|
|
1916
1838
|
/** @format uuid */
|
|
1917
1839
|
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";
|
|
1840
|
+
loanRole: CreateGroupMemberRequestLoanRoleEnum;
|
|
1932
1841
|
}
|
|
1933
1842
|
|
|
1934
1843
|
export interface CreateInviteRequest {
|
|
@@ -1937,7 +1846,7 @@ export interface CreateInviteRequest {
|
|
|
1937
1846
|
emailAddress: string;
|
|
1938
1847
|
phoneNumber?: string | null;
|
|
1939
1848
|
/** @deprecated */
|
|
1940
|
-
relationship:
|
|
1849
|
+
relationship: CreateInviteRequestRelationshipEnum;
|
|
1941
1850
|
loanID: string;
|
|
1942
1851
|
route?: string | null;
|
|
1943
1852
|
/** @format uuid */
|
|
@@ -1959,7 +1868,7 @@ export interface CreateLoanImportRequest {
|
|
|
1959
1868
|
endDate: string;
|
|
1960
1869
|
/** @format date-time */
|
|
1961
1870
|
startDate: string;
|
|
1962
|
-
importMode:
|
|
1871
|
+
importMode: CreateLoanImportRequestImportModeEnum;
|
|
1963
1872
|
}
|
|
1964
1873
|
|
|
1965
1874
|
export interface CreateSession {
|
|
@@ -1981,20 +1890,7 @@ export interface CreateUserDeviceRequest {
|
|
|
1981
1890
|
}
|
|
1982
1891
|
|
|
1983
1892
|
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";
|
|
1893
|
+
loanRole: CreateUserDraftLoanRoleEnum;
|
|
1998
1894
|
}
|
|
1999
1895
|
|
|
2000
1896
|
export interface CreateUserGroupRequest {
|
|
@@ -2062,15 +1958,8 @@ export interface CustomFieldDefinition {
|
|
|
2062
1958
|
name: string;
|
|
2063
1959
|
defaultValue?: string | null;
|
|
2064
1960
|
regexPattern?: string | null;
|
|
2065
|
-
dataType:
|
|
2066
|
-
|
|
2067
|
-
| "Number"
|
|
2068
|
-
| "Decimal"
|
|
2069
|
-
| "Boolean"
|
|
2070
|
-
| "Date"
|
|
2071
|
-
| "SingleSelect"
|
|
2072
|
-
| "MultiSelect";
|
|
2073
|
-
entityType: "Loan";
|
|
1961
|
+
dataType: CustomFieldDefinitionDataTypeEnum;
|
|
1962
|
+
entityType: CustomFieldDefinitionEntityTypeEnum;
|
|
2074
1963
|
options: CustomFieldOption[];
|
|
2075
1964
|
permissions: CustomFieldPermission[];
|
|
2076
1965
|
encompassMapping?: EncompassMapping | null;
|
|
@@ -2085,14 +1974,7 @@ export interface CustomFieldEntry {
|
|
|
2085
1974
|
displayOrder: number;
|
|
2086
1975
|
name: string;
|
|
2087
1976
|
value: string;
|
|
2088
|
-
dataType:
|
|
2089
|
-
| "String"
|
|
2090
|
-
| "Number"
|
|
2091
|
-
| "Decimal"
|
|
2092
|
-
| "Boolean"
|
|
2093
|
-
| "Date"
|
|
2094
|
-
| "SingleSelect"
|
|
2095
|
-
| "MultiSelect";
|
|
1977
|
+
dataType: CustomFieldEntryDataTypeEnum;
|
|
2096
1978
|
}
|
|
2097
1979
|
|
|
2098
1980
|
export interface CustomFieldOption {
|
|
@@ -2112,31 +1994,13 @@ export interface CustomFieldOptionRequest {
|
|
|
2112
1994
|
export interface CustomFieldPermission {
|
|
2113
1995
|
/** @format uuid */
|
|
2114
1996
|
id: string;
|
|
2115
|
-
role:
|
|
2116
|
-
|
|
2117
|
-
| "LoanOfficer"
|
|
2118
|
-
| "Admin"
|
|
2119
|
-
| "SuperAdmin"
|
|
2120
|
-
| "Realtor"
|
|
2121
|
-
| "SettlementAgent"
|
|
2122
|
-
| "LoanProcessor"
|
|
2123
|
-
| "LoanOfficerAssistant"
|
|
2124
|
-
| "SystemAdmin";
|
|
2125
|
-
accessLevel: "NoAccess" | "ReadOnly" | "ReadWrite";
|
|
1997
|
+
role: CustomFieldPermissionRoleEnum;
|
|
1998
|
+
accessLevel: CustomFieldPermissionAccessLevelEnum;
|
|
2126
1999
|
}
|
|
2127
2000
|
|
|
2128
2001
|
export interface CustomFieldPermissionRequest {
|
|
2129
|
-
role:
|
|
2130
|
-
|
|
2131
|
-
| "LoanOfficer"
|
|
2132
|
-
| "Admin"
|
|
2133
|
-
| "SuperAdmin"
|
|
2134
|
-
| "Realtor"
|
|
2135
|
-
| "SettlementAgent"
|
|
2136
|
-
| "LoanProcessor"
|
|
2137
|
-
| "LoanOfficerAssistant"
|
|
2138
|
-
| "SystemAdmin";
|
|
2139
|
-
accessLevel: "NoAccess" | "ReadOnly" | "ReadWrite";
|
|
2002
|
+
role: CustomFieldPermissionRequestRoleEnum;
|
|
2003
|
+
accessLevel: CustomFieldPermissionRequestAccessLevelEnum;
|
|
2140
2004
|
}
|
|
2141
2005
|
|
|
2142
2006
|
export interface CustomFieldValue {
|
|
@@ -2148,14 +2012,7 @@ export interface CustomFieldValue {
|
|
|
2148
2012
|
customFieldDefinitionID: string;
|
|
2149
2013
|
value: string;
|
|
2150
2014
|
definitionName: string;
|
|
2151
|
-
dataType:
|
|
2152
|
-
| "String"
|
|
2153
|
-
| "Number"
|
|
2154
|
-
| "Decimal"
|
|
2155
|
-
| "Boolean"
|
|
2156
|
-
| "Date"
|
|
2157
|
-
| "SingleSelect"
|
|
2158
|
-
| "MultiSelect";
|
|
2015
|
+
dataType: CustomFieldValueDataTypeEnum;
|
|
2159
2016
|
}
|
|
2160
2017
|
|
|
2161
2018
|
export interface DetailedUser {
|
|
@@ -2412,7 +2269,7 @@ export interface Draft {
|
|
|
2412
2269
|
siteConfiguration: SiteConfigurationReduced;
|
|
2413
2270
|
/** @format uuid */
|
|
2414
2271
|
loanID?: string | null;
|
|
2415
|
-
type:
|
|
2272
|
+
type: DraftTypeEnum;
|
|
2416
2273
|
isCoBorrower: boolean;
|
|
2417
2274
|
}
|
|
2418
2275
|
|
|
@@ -2431,7 +2288,7 @@ export interface DraftContent {
|
|
|
2431
2288
|
siteConfiguration: SiteConfigurationReduced;
|
|
2432
2289
|
/** @format uuid */
|
|
2433
2290
|
loanID?: string | null;
|
|
2434
|
-
type:
|
|
2291
|
+
type: DraftContentTypeEnum;
|
|
2435
2292
|
isCoBorrower: boolean;
|
|
2436
2293
|
applicationPayload: any;
|
|
2437
2294
|
}
|
|
@@ -2450,7 +2307,7 @@ export interface DraftLoanOfficerReassignRequest {
|
|
|
2450
2307
|
|
|
2451
2308
|
export interface DraftRequest {
|
|
2452
2309
|
applicationPayload: any;
|
|
2453
|
-
customData?: any;
|
|
2310
|
+
customData?: any | null;
|
|
2454
2311
|
isCoBorrower: boolean;
|
|
2455
2312
|
}
|
|
2456
2313
|
|
|
@@ -2528,9 +2385,9 @@ export interface EncompassCredentialsDetail {
|
|
|
2528
2385
|
clearStateIfUnlicensed: boolean;
|
|
2529
2386
|
/** @deprecated */
|
|
2530
2387
|
baseUrl?: string | null;
|
|
2531
|
-
encompassEnvironment:
|
|
2388
|
+
encompassEnvironment: EncompassCredentialsDetailEncompassEnvironmentEnum;
|
|
2532
2389
|
consumerConnectWidgetHost?: string | null;
|
|
2533
|
-
signingMethod:
|
|
2390
|
+
signingMethod: EncompassCredentialsDetailSigningMethodEnum;
|
|
2534
2391
|
subscriptionId?: string | null;
|
|
2535
2392
|
environment?: string | null;
|
|
2536
2393
|
}
|
|
@@ -2547,9 +2404,9 @@ export interface EncompassCredentialsRequest {
|
|
|
2547
2404
|
clearStateIfUnlicensed: boolean;
|
|
2548
2405
|
/** @deprecated */
|
|
2549
2406
|
baseUrl?: string | null;
|
|
2550
|
-
encompassEnvironment:
|
|
2407
|
+
encompassEnvironment: EncompassCredentialsRequestEncompassEnvironmentEnum;
|
|
2551
2408
|
consumerConnectWidgetHost?: string | null;
|
|
2552
|
-
signingMethod:
|
|
2409
|
+
signingMethod: EncompassCredentialsRequestSigningMethodEnum;
|
|
2553
2410
|
subscriptionId?: string | null;
|
|
2554
2411
|
environment?: string | null;
|
|
2555
2412
|
clientID?: string | null;
|
|
@@ -2670,15 +2527,8 @@ export interface EncompassRequestLog {
|
|
|
2670
2527
|
losId?: string | null;
|
|
2671
2528
|
/** @format uuid */
|
|
2672
2529
|
accountId: string;
|
|
2673
|
-
operationType:
|
|
2674
|
-
|
|
2675
|
-
| "ConsentUpdate"
|
|
2676
|
-
| "DocumentSync"
|
|
2677
|
-
| "MilestoneUpdate"
|
|
2678
|
-
| "DocumentAttachment"
|
|
2679
|
-
| "General"
|
|
2680
|
-
| "FieldReader";
|
|
2681
|
-
outcome: "Success" | "Failure" | "PartialSuccess";
|
|
2530
|
+
operationType: EncompassRequestLogOperationTypeEnum;
|
|
2531
|
+
outcome: EncompassRequestLogOutcomeEnum;
|
|
2682
2532
|
message: string;
|
|
2683
2533
|
endpoint?: string | null;
|
|
2684
2534
|
httpMethod?: string | null;
|
|
@@ -2686,7 +2536,7 @@ export interface EncompassRequestLog {
|
|
|
2686
2536
|
httpStatusCode?: number | null;
|
|
2687
2537
|
/** @format int64 */
|
|
2688
2538
|
durationMs?: number | null;
|
|
2689
|
-
context?: any;
|
|
2539
|
+
context?: any | null;
|
|
2690
2540
|
/** @format date-time */
|
|
2691
2541
|
createdAt: string;
|
|
2692
2542
|
}
|
|
@@ -2732,7 +2582,7 @@ export interface FileSearchCriteria {
|
|
|
2732
2582
|
export interface FileWithBytes {
|
|
2733
2583
|
name: string;
|
|
2734
2584
|
/** @format byte */
|
|
2735
|
-
data:
|
|
2585
|
+
data: Blob;
|
|
2736
2586
|
fileName: string;
|
|
2737
2587
|
mimeType?: string | null;
|
|
2738
2588
|
extension?: string | null;
|
|
@@ -2811,7 +2661,7 @@ export interface FormSubmission {
|
|
|
2811
2661
|
subjectPropertyAddressCounty?: string | null;
|
|
2812
2662
|
subjectPropertyAddressState?: string | null;
|
|
2813
2663
|
subjectPropertyAddressZip?: string | null;
|
|
2814
|
-
data?: any;
|
|
2664
|
+
data?: any | null;
|
|
2815
2665
|
/** @format uuid */
|
|
2816
2666
|
listingID?: string | null;
|
|
2817
2667
|
listing?: Listing | null;
|
|
@@ -2849,7 +2699,7 @@ export interface FormSubmissionRequest {
|
|
|
2849
2699
|
subjectPropertyAddressCounty?: string | null;
|
|
2850
2700
|
subjectPropertyAddressState?: string | null;
|
|
2851
2701
|
subjectPropertyAddressZip?: string | null;
|
|
2852
|
-
data?: any;
|
|
2702
|
+
data?: any | null;
|
|
2853
2703
|
/** @format uuid */
|
|
2854
2704
|
listingID?: string | null;
|
|
2855
2705
|
}
|
|
@@ -2904,20 +2754,7 @@ export interface FusionFieldDisplay {
|
|
|
2904
2754
|
}
|
|
2905
2755
|
|
|
2906
2756
|
export interface FusionReportFilter {
|
|
2907
|
-
filterType:
|
|
2908
|
-
| "DateGreaterThanOrEqualTo"
|
|
2909
|
-
| "DateGreaterThan"
|
|
2910
|
-
| "DateLessThan"
|
|
2911
|
-
| "DateLessThanOrEqualTo"
|
|
2912
|
-
| "DateEquals"
|
|
2913
|
-
| "DateDoesntEqual"
|
|
2914
|
-
| "DateNonEmpty"
|
|
2915
|
-
| "DateEmpty"
|
|
2916
|
-
| "StringContains"
|
|
2917
|
-
| "StringEquals"
|
|
2918
|
-
| "StringNotEmpty"
|
|
2919
|
-
| "StringNotEquals"
|
|
2920
|
-
| "StringNotContains";
|
|
2757
|
+
filterType: FusionReportFilterFilterTypeEnum;
|
|
2921
2758
|
targetField: string;
|
|
2922
2759
|
targetValue: string;
|
|
2923
2760
|
}
|
|
@@ -2942,7 +2779,7 @@ export interface GenerateSystemPrompt {
|
|
|
2942
2779
|
|
|
2943
2780
|
export interface GenerateSystemPromptRequest {
|
|
2944
2781
|
description: string;
|
|
2945
|
-
category:
|
|
2782
|
+
category: GenerateSystemPromptRequestCategoryEnum;
|
|
2946
2783
|
}
|
|
2947
2784
|
|
|
2948
2785
|
export interface GetApplications {
|
|
@@ -3038,45 +2875,12 @@ export interface GetWorkflowRequest {
|
|
|
3038
2875
|
export interface GuidPatchOperation {
|
|
3039
2876
|
op: string;
|
|
3040
2877
|
path: string;
|
|
3041
|
-
value?: any;
|
|
2878
|
+
value?: any | null;
|
|
3042
2879
|
from?: string | null;
|
|
3043
2880
|
}
|
|
3044
2881
|
|
|
3045
2882
|
export interface IPAddress {
|
|
3046
|
-
addressFamily:
|
|
3047
|
-
| "Unspecified"
|
|
3048
|
-
| "Unix"
|
|
3049
|
-
| "InterNetwork"
|
|
3050
|
-
| "ImpLink"
|
|
3051
|
-
| "Pup"
|
|
3052
|
-
| "Chaos"
|
|
3053
|
-
| "NS"
|
|
3054
|
-
| "Ipx"
|
|
3055
|
-
| "Iso"
|
|
3056
|
-
| "Osi"
|
|
3057
|
-
| "Ecma"
|
|
3058
|
-
| "DataKit"
|
|
3059
|
-
| "Ccitt"
|
|
3060
|
-
| "Sna"
|
|
3061
|
-
| "DecNet"
|
|
3062
|
-
| "DataLink"
|
|
3063
|
-
| "Lat"
|
|
3064
|
-
| "HyperChannel"
|
|
3065
|
-
| "AppleTalk"
|
|
3066
|
-
| "NetBios"
|
|
3067
|
-
| "VoiceView"
|
|
3068
|
-
| "FireFox"
|
|
3069
|
-
| "Banyan"
|
|
3070
|
-
| "Atm"
|
|
3071
|
-
| "InterNetworkV6"
|
|
3072
|
-
| "Cluster"
|
|
3073
|
-
| "Ieee12844"
|
|
3074
|
-
| "Irda"
|
|
3075
|
-
| "NetworkDesigners"
|
|
3076
|
-
| "Max"
|
|
3077
|
-
| "Packet"
|
|
3078
|
-
| "ControllerAreaNetwork"
|
|
3079
|
-
| "Unknown";
|
|
2883
|
+
addressFamily: IpAddressAddressFamilyEnum;
|
|
3080
2884
|
/** @format int64 */
|
|
3081
2885
|
scopeId: number;
|
|
3082
2886
|
isIPv6Multicast: boolean;
|
|
@@ -3338,7 +3142,7 @@ export interface Loan {
|
|
|
3338
3142
|
contacts: LoanContact[];
|
|
3339
3143
|
customFields: CustomFieldEntry[];
|
|
3340
3144
|
milestones: LoanMilestone[];
|
|
3341
|
-
signingMethod:
|
|
3145
|
+
signingMethod: LoanSigningMethodEnum;
|
|
3342
3146
|
}
|
|
3343
3147
|
|
|
3344
3148
|
export interface LoanApplication {
|
|
@@ -3376,7 +3180,7 @@ export interface LoanApplicationRequest {
|
|
|
3376
3180
|
nonOwningBorrowers: LoanNonOwningBorrowerRequest[];
|
|
3377
3181
|
/** @format uuid */
|
|
3378
3182
|
draftId?: string | null;
|
|
3379
|
-
additionalFields?: Record<string, any
|
|
3183
|
+
additionalFields?: Record<string, any> | null;
|
|
3380
3184
|
/** @format uuid */
|
|
3381
3185
|
existingLoanId?: string | null;
|
|
3382
3186
|
}
|
|
@@ -3396,7 +3200,7 @@ export interface LoanBorrower {
|
|
|
3396
3200
|
citizenship?: LoanCitizenship | null;
|
|
3397
3201
|
maritalStatus?: LoanMaritalStatus | null;
|
|
3398
3202
|
languagePreference?: LoanLanguagePreference | null;
|
|
3399
|
-
applicationStatus:
|
|
3203
|
+
applicationStatus: LoanBorrowerApplicationStatusEnum;
|
|
3400
3204
|
/** @format int32 */
|
|
3401
3205
|
numberOfDependents?: number | null;
|
|
3402
3206
|
isPrimaryBorrower: boolean;
|
|
@@ -4165,7 +3969,7 @@ export interface LoanConsentRequest {
|
|
|
4165
3969
|
borrowerEConsent?: boolean | null;
|
|
4166
3970
|
borrowerCreditAuth?: boolean | null;
|
|
4167
3971
|
borrowerTCPAOptIn?: boolean | null;
|
|
4168
|
-
additionalFields?: Record<string, string
|
|
3972
|
+
additionalFields?: Record<string, string> | null;
|
|
4169
3973
|
}
|
|
4170
3974
|
|
|
4171
3975
|
export interface LoanContact {
|
|
@@ -4184,20 +3988,7 @@ export interface LoanContact {
|
|
|
4184
3988
|
email?: string | null;
|
|
4185
3989
|
phone?: string | null;
|
|
4186
3990
|
companyName?: string | null;
|
|
4187
|
-
role:
|
|
4188
|
-
| "Borrower"
|
|
4189
|
-
| "CoBorrower"
|
|
4190
|
-
| "NonBorrower"
|
|
4191
|
-
| "LoanOfficer"
|
|
4192
|
-
| "LoanProcessor"
|
|
4193
|
-
| "LoanOfficerAssistant"
|
|
4194
|
-
| "SupportingLoanOfficer"
|
|
4195
|
-
| "BuyerAgent"
|
|
4196
|
-
| "SellerAgent"
|
|
4197
|
-
| "TitleInsuranceAgent"
|
|
4198
|
-
| "EscrowAgent"
|
|
4199
|
-
| "SettlementAgent"
|
|
4200
|
-
| "Admin";
|
|
3991
|
+
role: LoanContactRoleEnum;
|
|
4201
3992
|
}
|
|
4202
3993
|
|
|
4203
3994
|
export interface LoanContactList {
|
|
@@ -4205,7 +3996,7 @@ export interface LoanContactList {
|
|
|
4205
3996
|
}
|
|
4206
3997
|
|
|
4207
3998
|
export interface LoanCustomFieldsRequest {
|
|
4208
|
-
additionalFields?: Record<string, string
|
|
3999
|
+
additionalFields?: Record<string, string> | null;
|
|
4209
4000
|
}
|
|
4210
4001
|
|
|
4211
4002
|
export interface LoanDocument {
|
|
@@ -4258,39 +4049,13 @@ export interface LoanDocumentFolderPermission {
|
|
|
4258
4049
|
id: string;
|
|
4259
4050
|
/** @format uuid */
|
|
4260
4051
|
loanDocumentFolderID: string;
|
|
4261
|
-
role:
|
|
4262
|
-
|
|
4263
|
-
| "CoBorrower"
|
|
4264
|
-
| "NonBorrower"
|
|
4265
|
-
| "LoanOfficer"
|
|
4266
|
-
| "LoanProcessor"
|
|
4267
|
-
| "LoanOfficerAssistant"
|
|
4268
|
-
| "SupportingLoanOfficer"
|
|
4269
|
-
| "BuyerAgent"
|
|
4270
|
-
| "SellerAgent"
|
|
4271
|
-
| "TitleInsuranceAgent"
|
|
4272
|
-
| "EscrowAgent"
|
|
4273
|
-
| "SettlementAgent"
|
|
4274
|
-
| "Admin";
|
|
4275
|
-
level: "None" | "Read" | "Write" | "Manage";
|
|
4052
|
+
role: LoanDocumentFolderPermissionRoleEnum;
|
|
4053
|
+
level: LoanDocumentFolderPermissionLevelEnum;
|
|
4276
4054
|
}
|
|
4277
4055
|
|
|
4278
4056
|
export interface LoanDocumentFolderPermissionRequest {
|
|
4279
|
-
role:
|
|
4280
|
-
|
|
4281
|
-
| "CoBorrower"
|
|
4282
|
-
| "NonBorrower"
|
|
4283
|
-
| "LoanOfficer"
|
|
4284
|
-
| "LoanProcessor"
|
|
4285
|
-
| "LoanOfficerAssistant"
|
|
4286
|
-
| "SupportingLoanOfficer"
|
|
4287
|
-
| "BuyerAgent"
|
|
4288
|
-
| "SellerAgent"
|
|
4289
|
-
| "TitleInsuranceAgent"
|
|
4290
|
-
| "EscrowAgent"
|
|
4291
|
-
| "SettlementAgent"
|
|
4292
|
-
| "Admin";
|
|
4293
|
-
level: "None" | "Read" | "Write" | "Manage";
|
|
4057
|
+
role: LoanDocumentFolderPermissionRequestRoleEnum;
|
|
4058
|
+
level: LoanDocumentFolderPermissionRequestLevelEnum;
|
|
4294
4059
|
}
|
|
4295
4060
|
|
|
4296
4061
|
export interface LoanDocumentFolderUsage {
|
|
@@ -4417,19 +4182,14 @@ export interface LoanImport {
|
|
|
4417
4182
|
/** @format int32 */
|
|
4418
4183
|
importedCount: number;
|
|
4419
4184
|
statusMessage?: string | null;
|
|
4420
|
-
status:
|
|
4421
|
-
|
|
4422
|
-
| "InProgress"
|
|
4423
|
-
| "Completed"
|
|
4424
|
-
| "Failed"
|
|
4425
|
-
| "Cancelled";
|
|
4426
|
-
importMode: "All" | "NewOnly" | "UpdateOnly";
|
|
4185
|
+
status: LoanImportStatusEnum;
|
|
4186
|
+
importMode: LoanImportImportModeEnum;
|
|
4427
4187
|
/** @format date-time */
|
|
4428
4188
|
createdAt?: string | null;
|
|
4429
4189
|
}
|
|
4430
4190
|
|
|
4431
4191
|
export interface LoanImportLog {
|
|
4432
|
-
level:
|
|
4192
|
+
level: LoanImportLogLevelEnum;
|
|
4433
4193
|
message: string;
|
|
4434
4194
|
/** @format date-time */
|
|
4435
4195
|
createdAt: string;
|
|
@@ -4490,25 +4250,8 @@ export interface LoanListPaginated {
|
|
|
4490
4250
|
export interface LoanLog {
|
|
4491
4251
|
/** @format uuid */
|
|
4492
4252
|
id: string;
|
|
4493
|
-
level:
|
|
4494
|
-
type:
|
|
4495
|
-
| "Loan"
|
|
4496
|
-
| "Queue"
|
|
4497
|
-
| "POSFlagChanged"
|
|
4498
|
-
| "Verification"
|
|
4499
|
-
| "DocumentUploaded"
|
|
4500
|
-
| "LoanCreated"
|
|
4501
|
-
| "WorkflowSubmitted"
|
|
4502
|
-
| "UserInvitationSent"
|
|
4503
|
-
| "CoBorrowerAdded"
|
|
4504
|
-
| "TaskCompleted"
|
|
4505
|
-
| "LoanStatusChanged"
|
|
4506
|
-
| "Consent"
|
|
4507
|
-
| "SensitiveDataPurge"
|
|
4508
|
-
| "ClosingDateUpdated"
|
|
4509
|
-
| "ConsumerConnectAssociation"
|
|
4510
|
-
| "TaskReminderSent"
|
|
4511
|
-
| "DocumentClassified";
|
|
4253
|
+
level: LoanLogLevelEnum;
|
|
4254
|
+
type: LoanLogTypeEnum;
|
|
4512
4255
|
message: string;
|
|
4513
4256
|
/** @format date-time */
|
|
4514
4257
|
createdAt: string;
|
|
@@ -4517,25 +4260,8 @@ export interface LoanLog {
|
|
|
4517
4260
|
export interface LoanLogDetail {
|
|
4518
4261
|
/** @format uuid */
|
|
4519
4262
|
id: string;
|
|
4520
|
-
level:
|
|
4521
|
-
type:
|
|
4522
|
-
| "Loan"
|
|
4523
|
-
| "Queue"
|
|
4524
|
-
| "POSFlagChanged"
|
|
4525
|
-
| "Verification"
|
|
4526
|
-
| "DocumentUploaded"
|
|
4527
|
-
| "LoanCreated"
|
|
4528
|
-
| "WorkflowSubmitted"
|
|
4529
|
-
| "UserInvitationSent"
|
|
4530
|
-
| "CoBorrowerAdded"
|
|
4531
|
-
| "TaskCompleted"
|
|
4532
|
-
| "LoanStatusChanged"
|
|
4533
|
-
| "Consent"
|
|
4534
|
-
| "SensitiveDataPurge"
|
|
4535
|
-
| "ClosingDateUpdated"
|
|
4536
|
-
| "ConsumerConnectAssociation"
|
|
4537
|
-
| "TaskReminderSent"
|
|
4538
|
-
| "DocumentClassified";
|
|
4263
|
+
level: LoanLogDetailLevelEnum;
|
|
4264
|
+
type: LoanLogDetailTypeEnum;
|
|
4539
4265
|
message: string;
|
|
4540
4266
|
/** @format date-time */
|
|
4541
4267
|
createdAt: string;
|
|
@@ -4789,7 +4515,7 @@ export interface LoanQueueWithData {
|
|
|
4789
4515
|
user: UserPublic;
|
|
4790
4516
|
loanOfficer: LoanOfficerPublic;
|
|
4791
4517
|
siteConfiguration: SiteConfigurationReduced;
|
|
4792
|
-
data?: any;
|
|
4518
|
+
data?: any | null;
|
|
4793
4519
|
}
|
|
4794
4520
|
|
|
4795
4521
|
export interface LoanRecord {
|
|
@@ -4825,7 +4551,7 @@ export interface LoanTaskSearchRequest {
|
|
|
4825
4551
|
}
|
|
4826
4552
|
|
|
4827
4553
|
export interface LoanTaskStatusSummary {
|
|
4828
|
-
status:
|
|
4554
|
+
status: LoanTaskStatusSummaryStatusEnum;
|
|
4829
4555
|
/** @format int32 */
|
|
4830
4556
|
count: number;
|
|
4831
4557
|
}
|
|
@@ -4838,20 +4564,7 @@ export interface LoanUser {
|
|
|
4838
4564
|
email: string;
|
|
4839
4565
|
phone?: string | null;
|
|
4840
4566
|
role: string;
|
|
4841
|
-
loanRole:
|
|
4842
|
-
| "Borrower"
|
|
4843
|
-
| "CoBorrower"
|
|
4844
|
-
| "NonBorrower"
|
|
4845
|
-
| "LoanOfficer"
|
|
4846
|
-
| "LoanProcessor"
|
|
4847
|
-
| "LoanOfficerAssistant"
|
|
4848
|
-
| "SupportingLoanOfficer"
|
|
4849
|
-
| "BuyerAgent"
|
|
4850
|
-
| "SellerAgent"
|
|
4851
|
-
| "TitleInsuranceAgent"
|
|
4852
|
-
| "EscrowAgent"
|
|
4853
|
-
| "SettlementAgent"
|
|
4854
|
-
| "Admin";
|
|
4567
|
+
loanRole: LoanUserLoanRoleEnum;
|
|
4855
4568
|
isUser: boolean;
|
|
4856
4569
|
/** @format date-time */
|
|
4857
4570
|
createdAt: string;
|
|
@@ -4887,13 +4600,7 @@ export interface LosOperationTracking {
|
|
|
4887
4600
|
operationType: string;
|
|
4888
4601
|
correlationKey: string;
|
|
4889
4602
|
lastTriggerSource?: string | null;
|
|
4890
|
-
status:
|
|
4891
|
-
| "Pending"
|
|
4892
|
-
| "Success"
|
|
4893
|
-
| "Failed"
|
|
4894
|
-
| "ConfigurationError"
|
|
4895
|
-
| "PermanentFailure"
|
|
4896
|
-
| "Locked";
|
|
4603
|
+
status: LosOperationTrackingStatusEnum;
|
|
4897
4604
|
/** @format date-time */
|
|
4898
4605
|
createdAt: string;
|
|
4899
4606
|
/** @format date-time */
|
|
@@ -4960,7 +4667,7 @@ export interface LosSyncStep {
|
|
|
4960
4667
|
/** @format int32 */
|
|
4961
4668
|
order: number;
|
|
4962
4669
|
name: string;
|
|
4963
|
-
severity:
|
|
4670
|
+
severity: LosSyncStepSeverityEnum;
|
|
4964
4671
|
message: string;
|
|
4965
4672
|
/** @format date-time */
|
|
4966
4673
|
atUtc: string;
|
|
@@ -4976,65 +4683,7 @@ export interface LosWebhook {
|
|
|
4976
4683
|
}
|
|
4977
4684
|
|
|
4978
4685
|
export interface ManualDocumentClassificationRequest {
|
|
4979
|
-
documentType:
|
|
4980
|
-
| "W2"
|
|
4981
|
-
| "Paystub"
|
|
4982
|
-
| "Form1099"
|
|
4983
|
-
| "Form1099Int"
|
|
4984
|
-
| "Form1099Misc"
|
|
4985
|
-
| "Form1099Nec"
|
|
4986
|
-
| "Form1099R"
|
|
4987
|
-
| "Form1099G"
|
|
4988
|
-
| "Form1099Div"
|
|
4989
|
-
| "Form1099Ssa"
|
|
4990
|
-
| "FederalTaxReturn1040"
|
|
4991
|
-
| "TaxReturnScheduleC"
|
|
4992
|
-
| "TaxReturnScheduleD"
|
|
4993
|
-
| "TaxReturnScheduleE"
|
|
4994
|
-
| "Form1065"
|
|
4995
|
-
| "Form1120"
|
|
4996
|
-
| "Form1120S"
|
|
4997
|
-
| "ProfitAndLossStatement"
|
|
4998
|
-
| "VerificationOfEmployment"
|
|
4999
|
-
| "BankStatement"
|
|
5000
|
-
| "InvestmentStatement"
|
|
5001
|
-
| "CreditCardStatement"
|
|
5002
|
-
| "MortgageStatement"
|
|
5003
|
-
| "PayoffStatement"
|
|
5004
|
-
| "HoaDocuments"
|
|
5005
|
-
| "UtilityBill"
|
|
5006
|
-
| "IdentityDocument"
|
|
5007
|
-
| "DemographicAddendum"
|
|
5008
|
-
| "Ssa89"
|
|
5009
|
-
| "Vba260551"
|
|
5010
|
-
| "Hud92900B"
|
|
5011
|
-
| "Check"
|
|
5012
|
-
| "Invoice"
|
|
5013
|
-
| "Receipt"
|
|
5014
|
-
| "LoanApplication1003"
|
|
5015
|
-
| "UnderwritingTransmittal1008"
|
|
5016
|
-
| "Other"
|
|
5017
|
-
| "SalesContract"
|
|
5018
|
-
| "TitleCommitment"
|
|
5019
|
-
| "DriversLicense"
|
|
5020
|
-
| "VerificationOfIncome"
|
|
5021
|
-
| "VerificationOfAssets"
|
|
5022
|
-
| "FloodCertificate"
|
|
5023
|
-
| "FraudReport"
|
|
5024
|
-
| "AddendumToSalesContract"
|
|
5025
|
-
| "GiftLetter"
|
|
5026
|
-
| "CpaLetter"
|
|
5027
|
-
| "TaxBill"
|
|
5028
|
-
| "CondoQuestionnaire"
|
|
5029
|
-
| "CondoBudget"
|
|
5030
|
-
| "CondoBylaws"
|
|
5031
|
-
| "RentalAgreements"
|
|
5032
|
-
| "Lease"
|
|
5033
|
-
| "HazardInsurance"
|
|
5034
|
-
| "VaCertificateOfEligibility"
|
|
5035
|
-
| "Appraisal"
|
|
5036
|
-
| "CreditReport"
|
|
5037
|
-
| "CondoMasterPolicy";
|
|
4686
|
+
documentType: ManualDocumentClassificationRequestDocumentTypeEnum;
|
|
5038
4687
|
}
|
|
5039
4688
|
|
|
5040
4689
|
export interface MdmUser {
|
|
@@ -5121,7 +4770,7 @@ export interface ModuleParameterValue {
|
|
|
5121
4770
|
parameterID: string;
|
|
5122
4771
|
parameterName: string;
|
|
5123
4772
|
parameterType: string;
|
|
5124
|
-
value?: any;
|
|
4773
|
+
value?: any | null;
|
|
5125
4774
|
isInherited: boolean;
|
|
5126
4775
|
}
|
|
5127
4776
|
|
|
@@ -5307,7 +4956,7 @@ export interface NotificationTemplateVersionUpdateRequest {
|
|
|
5307
4956
|
|
|
5308
4957
|
export interface Operation {
|
|
5309
4958
|
op?: string;
|
|
5310
|
-
value?:
|
|
4959
|
+
value?: object | null;
|
|
5311
4960
|
path?: string;
|
|
5312
4961
|
}
|
|
5313
4962
|
|
|
@@ -5672,7 +5321,7 @@ export interface SiteConfiguration {
|
|
|
5672
5321
|
deletedAt?: string | null;
|
|
5673
5322
|
/** @format uuid */
|
|
5674
5323
|
id: string;
|
|
5675
|
-
type:
|
|
5324
|
+
type: SiteConfigurationTypeEnum;
|
|
5676
5325
|
/** @format uuid */
|
|
5677
5326
|
entityID: string;
|
|
5678
5327
|
/** @format int32 */
|
|
@@ -5866,7 +5515,7 @@ export interface SiteConfigurationByUrl {
|
|
|
5866
5515
|
deletedAt?: string | null;
|
|
5867
5516
|
/** @format uuid */
|
|
5868
5517
|
id: string;
|
|
5869
|
-
type:
|
|
5518
|
+
type: SiteConfigurationByUrlTypeEnum;
|
|
5870
5519
|
/** @format uuid */
|
|
5871
5520
|
entityID: string;
|
|
5872
5521
|
/** @format int32 */
|
|
@@ -6078,7 +5727,7 @@ export interface SiteConfigurationForm {
|
|
|
6078
5727
|
export interface SiteConfigurationReduced {
|
|
6079
5728
|
/** @format uuid */
|
|
6080
5729
|
id: string;
|
|
6081
|
-
type:
|
|
5730
|
+
type: SiteConfigurationReducedTypeEnum;
|
|
6082
5731
|
url?: string | null;
|
|
6083
5732
|
name: string;
|
|
6084
5733
|
/** @format int64 */
|
|
@@ -6096,7 +5745,7 @@ export interface SiteConfigurationRequest {
|
|
|
6096
5745
|
entityID: string;
|
|
6097
5746
|
/** @format int32 */
|
|
6098
5747
|
entityType: number;
|
|
6099
|
-
type:
|
|
5748
|
+
type: SiteConfigurationRequestTypeEnum;
|
|
6100
5749
|
url: string;
|
|
6101
5750
|
name: string;
|
|
6102
5751
|
introduction?: string | null;
|
|
@@ -6273,7 +5922,7 @@ export interface SiteConfigurationSearchCriteria {
|
|
|
6273
5922
|
export interface SiteConfigurationSummary {
|
|
6274
5923
|
/** @format uuid */
|
|
6275
5924
|
id: string;
|
|
6276
|
-
type:
|
|
5925
|
+
type: SiteConfigurationSummaryTypeEnum;
|
|
6277
5926
|
url?: string | null;
|
|
6278
5927
|
name: string;
|
|
6279
5928
|
/** @format int64 */
|
|
@@ -6564,20 +6213,7 @@ export interface UnregisteredBorrower {
|
|
|
6564
6213
|
lastName?: string | null;
|
|
6565
6214
|
fullName?: string | null;
|
|
6566
6215
|
email?: string | null;
|
|
6567
|
-
role:
|
|
6568
|
-
| "Borrower"
|
|
6569
|
-
| "CoBorrower"
|
|
6570
|
-
| "NonBorrower"
|
|
6571
|
-
| "LoanOfficer"
|
|
6572
|
-
| "LoanProcessor"
|
|
6573
|
-
| "LoanOfficerAssistant"
|
|
6574
|
-
| "SupportingLoanOfficer"
|
|
6575
|
-
| "BuyerAgent"
|
|
6576
|
-
| "SellerAgent"
|
|
6577
|
-
| "TitleInsuranceAgent"
|
|
6578
|
-
| "EscrowAgent"
|
|
6579
|
-
| "SettlementAgent"
|
|
6580
|
-
| "Admin";
|
|
6216
|
+
role: UnregisteredBorrowerRoleEnum;
|
|
6581
6217
|
}
|
|
6582
6218
|
|
|
6583
6219
|
export interface UpdateAccountRequest {
|
|
@@ -6605,7 +6241,7 @@ export interface UpdateAiCanonicalFieldRequest {
|
|
|
6605
6241
|
|
|
6606
6242
|
export interface UpdateAiGuardrailRequest {
|
|
6607
6243
|
name: string;
|
|
6608
|
-
category:
|
|
6244
|
+
category: UpdateAiGuardrailRequestCategoryEnum;
|
|
6609
6245
|
description?: string | null;
|
|
6610
6246
|
keywords: string[];
|
|
6611
6247
|
responseTemplate: string;
|
|
@@ -6632,8 +6268,8 @@ export interface UpdateAiUrlSourceRequest {
|
|
|
6632
6268
|
name: string;
|
|
6633
6269
|
url: string;
|
|
6634
6270
|
description?: string | null;
|
|
6635
|
-
category:
|
|
6636
|
-
scope:
|
|
6271
|
+
category: UpdateAiUrlSourceRequestCategoryEnum;
|
|
6272
|
+
scope: UpdateAiUrlSourceRequestScopeEnum;
|
|
6637
6273
|
}
|
|
6638
6274
|
|
|
6639
6275
|
export interface UpdateCustomFieldDefinitionRequest {
|
|
@@ -6945,20 +6581,7 @@ export interface UserDevice {
|
|
|
6945
6581
|
export interface UserDraft {
|
|
6946
6582
|
/** @format uuid */
|
|
6947
6583
|
draftID: string;
|
|
6948
|
-
role:
|
|
6949
|
-
| "Borrower"
|
|
6950
|
-
| "CoBorrower"
|
|
6951
|
-
| "NonBorrower"
|
|
6952
|
-
| "LoanOfficer"
|
|
6953
|
-
| "LoanProcessor"
|
|
6954
|
-
| "LoanOfficerAssistant"
|
|
6955
|
-
| "SupportingLoanOfficer"
|
|
6956
|
-
| "BuyerAgent"
|
|
6957
|
-
| "SellerAgent"
|
|
6958
|
-
| "TitleInsuranceAgent"
|
|
6959
|
-
| "EscrowAgent"
|
|
6960
|
-
| "SettlementAgent"
|
|
6961
|
-
| "Admin";
|
|
6584
|
+
role: UserDraftRoleEnum;
|
|
6962
6585
|
user: User;
|
|
6963
6586
|
}
|
|
6964
6587
|
|
|
@@ -6985,7 +6608,7 @@ export interface UserGroupAccessScope {
|
|
|
6985
6608
|
id: string;
|
|
6986
6609
|
/** @format uuid */
|
|
6987
6610
|
groupId: string;
|
|
6988
|
-
scopeType:
|
|
6611
|
+
scopeType: UserGroupAccessScopeScopeTypeEnum;
|
|
6989
6612
|
/** @format uuid */
|
|
6990
6613
|
userId?: string | null;
|
|
6991
6614
|
/** @format uuid */
|
|
@@ -7021,20 +6644,7 @@ export interface UserLoan {
|
|
|
7021
6644
|
deletedAt?: string | null;
|
|
7022
6645
|
loanID: string;
|
|
7023
6646
|
user: User;
|
|
7024
|
-
role:
|
|
7025
|
-
| "Borrower"
|
|
7026
|
-
| "CoBorrower"
|
|
7027
|
-
| "NonBorrower"
|
|
7028
|
-
| "LoanOfficer"
|
|
7029
|
-
| "LoanProcessor"
|
|
7030
|
-
| "LoanOfficerAssistant"
|
|
7031
|
-
| "SupportingLoanOfficer"
|
|
7032
|
-
| "BuyerAgent"
|
|
7033
|
-
| "SellerAgent"
|
|
7034
|
-
| "TitleInsuranceAgent"
|
|
7035
|
-
| "EscrowAgent"
|
|
7036
|
-
| "SettlementAgent"
|
|
7037
|
-
| "Admin";
|
|
6647
|
+
role: UserLoanRoleEnum;
|
|
7038
6648
|
/** @format int32 */
|
|
7039
6649
|
borrowerPair?: number | null;
|
|
7040
6650
|
/** @format int32 */
|
|
@@ -7047,11 +6657,11 @@ export interface UserLoanConsent {
|
|
|
7047
6657
|
id: string;
|
|
7048
6658
|
/** @format uuid */
|
|
7049
6659
|
userLoanID: string;
|
|
7050
|
-
type:
|
|
6660
|
+
type: UserLoanConsentTypeEnum;
|
|
7051
6661
|
providedConsent: boolean;
|
|
7052
6662
|
source?: ConsentSource | null;
|
|
7053
6663
|
ipAddress?: string | null;
|
|
7054
|
-
losSyncStatus:
|
|
6664
|
+
losSyncStatus: UserLoanConsentLosSyncStatusEnum;
|
|
7055
6665
|
/** @format date-time */
|
|
7056
6666
|
createdAt: string;
|
|
7057
6667
|
/** @format date-time */
|
|
@@ -7195,16 +6805,7 @@ export interface UserSummary {
|
|
|
7195
6805
|
id: string;
|
|
7196
6806
|
name?: string | null;
|
|
7197
6807
|
email?: string | null;
|
|
7198
|
-
role:
|
|
7199
|
-
| "Borrower"
|
|
7200
|
-
| "LoanOfficer"
|
|
7201
|
-
| "Admin"
|
|
7202
|
-
| "SuperAdmin"
|
|
7203
|
-
| "Realtor"
|
|
7204
|
-
| "SettlementAgent"
|
|
7205
|
-
| "LoanProcessor"
|
|
7206
|
-
| "LoanOfficerAssistant"
|
|
7207
|
-
| "SystemAdmin";
|
|
6808
|
+
role: UserSummaryRoleEnum;
|
|
7208
6809
|
}
|
|
7209
6810
|
|
|
7210
6811
|
export interface VerifyPasswordRequest {
|
|
@@ -7234,6 +6835,706 @@ export interface Workflow {
|
|
|
7234
6835
|
icon: string;
|
|
7235
6836
|
}
|
|
7236
6837
|
|
|
6838
|
+
export type AccountBillingRequestBillingTypeEnum = "ClosedLoan" | "LoanOfficer";
|
|
6839
|
+
|
|
6840
|
+
export type AiAuditLogEventTypeEnum =
|
|
6841
|
+
| "Error"
|
|
6842
|
+
| "GuardrailBlockedPre"
|
|
6843
|
+
| "GuardrailPassedPre"
|
|
6844
|
+
| "IntentClassified"
|
|
6845
|
+
| "LoanResolvedFromMessage"
|
|
6846
|
+
| "DocumentNotFound"
|
|
6847
|
+
| "GuardrailBlockedPost"
|
|
6848
|
+
| "GuardrailPassedPost"
|
|
6849
|
+
| "DocumentAnalyzed"
|
|
6850
|
+
| "DocumentList"
|
|
6851
|
+
| "DocumentResolutionAmbiguous"
|
|
6852
|
+
| "ResponseGenerated"
|
|
6853
|
+
| "ParametersExtracted"
|
|
6854
|
+
| "QueryExecuted"
|
|
6855
|
+
| "LoanContextNotFound"
|
|
6856
|
+
| "LoanContextLoaded"
|
|
6857
|
+
| "GuardrailBlockedBedrock"
|
|
6858
|
+
| "PromptMatched"
|
|
6859
|
+
| "QueryCondensed"
|
|
6860
|
+
| "IntentParseFailed"
|
|
6861
|
+
| "LoanSearchTermDiscarded"
|
|
6862
|
+
| "CanonicalFieldsSelected";
|
|
6863
|
+
|
|
6864
|
+
export type AiChatMetadataIntentEnum =
|
|
6865
|
+
| "Greeting"
|
|
6866
|
+
| "Invalid"
|
|
6867
|
+
| "Relevant"
|
|
6868
|
+
| "LoanSpecific"
|
|
6869
|
+
| "DocumentList"
|
|
6870
|
+
| "GeneralKnowledge"
|
|
6871
|
+
| "Blocked"
|
|
6872
|
+
| "Action"
|
|
6873
|
+
| "ConversationMeta"
|
|
6874
|
+
| "Capabilities"
|
|
6875
|
+
| "UsageReport";
|
|
6876
|
+
|
|
6877
|
+
export type AiChatStructuredDataTypeEnum =
|
|
6878
|
+
| "Table"
|
|
6879
|
+
| "DocumentAnalysis"
|
|
6880
|
+
| "DocumentList"
|
|
6881
|
+
| "GeneratedDocument";
|
|
6882
|
+
|
|
6883
|
+
export type AiConfigChangeLogEntityTypeEnum =
|
|
6884
|
+
| "Prompt"
|
|
6885
|
+
| "Guardrail"
|
|
6886
|
+
| "CanonicalField"
|
|
6887
|
+
| "UrlSource"
|
|
6888
|
+
| "AdminSettings"
|
|
6889
|
+
| "AccountTokenSettings"
|
|
6890
|
+
| "AccountSettings";
|
|
6891
|
+
|
|
6892
|
+
export type AiConfigChangeLogActionEnum =
|
|
6893
|
+
| "Created"
|
|
6894
|
+
| "Updated"
|
|
6895
|
+
| "Deleted"
|
|
6896
|
+
| "Toggled";
|
|
6897
|
+
|
|
6898
|
+
export type AiGuardrailCategoryEnum =
|
|
6899
|
+
| "ContentSafety"
|
|
6900
|
+
| "PromptInjection"
|
|
6901
|
+
| "Privacy"
|
|
6902
|
+
| "Legal";
|
|
6903
|
+
|
|
6904
|
+
export type AiUrlSourceCategoryEnum =
|
|
6905
|
+
| "Regulatory"
|
|
6906
|
+
| "Guidelines"
|
|
6907
|
+
| "MarketData"
|
|
6908
|
+
| "Custom";
|
|
6909
|
+
|
|
6910
|
+
export type AiUrlSourceScopeEnum = "FullDomain" | "SpecificPath";
|
|
6911
|
+
|
|
6912
|
+
export type AuditLogEntryChangeTypeEnum =
|
|
6913
|
+
| "Created"
|
|
6914
|
+
| "Modified"
|
|
6915
|
+
| "SoftDeleted"
|
|
6916
|
+
| "HardDeleted"
|
|
6917
|
+
| "Restored"
|
|
6918
|
+
| "Deactivated"
|
|
6919
|
+
| "Reactivated";
|
|
6920
|
+
|
|
6921
|
+
export type BorrowerCountRoleEnum =
|
|
6922
|
+
| "Borrower"
|
|
6923
|
+
| "CoBorrower"
|
|
6924
|
+
| "NonBorrower"
|
|
6925
|
+
| "LoanOfficer"
|
|
6926
|
+
| "LoanProcessor"
|
|
6927
|
+
| "LoanOfficerAssistant"
|
|
6928
|
+
| "SupportingLoanOfficer"
|
|
6929
|
+
| "BuyerAgent"
|
|
6930
|
+
| "SellerAgent"
|
|
6931
|
+
| "TitleInsuranceAgent"
|
|
6932
|
+
| "EscrowAgent"
|
|
6933
|
+
| "SettlementAgent"
|
|
6934
|
+
| "Admin";
|
|
6935
|
+
|
|
6936
|
+
export type BorrowerIdentityRoleEnum =
|
|
6937
|
+
| "Borrower"
|
|
6938
|
+
| "CoBorrower"
|
|
6939
|
+
| "NonBorrower"
|
|
6940
|
+
| "LoanOfficer"
|
|
6941
|
+
| "LoanProcessor"
|
|
6942
|
+
| "LoanOfficerAssistant"
|
|
6943
|
+
| "SupportingLoanOfficer"
|
|
6944
|
+
| "BuyerAgent"
|
|
6945
|
+
| "SellerAgent"
|
|
6946
|
+
| "TitleInsuranceAgent"
|
|
6947
|
+
| "EscrowAgent"
|
|
6948
|
+
| "SettlementAgent"
|
|
6949
|
+
| "Admin";
|
|
6950
|
+
|
|
6951
|
+
export type CreateAccessScopeRequestScopeTypeEnum = "User" | "Branch";
|
|
6952
|
+
|
|
6953
|
+
export type CreateAccountRequestEnvironmentEnum =
|
|
6954
|
+
| "Development"
|
|
6955
|
+
| "Staging"
|
|
6956
|
+
| "UAT"
|
|
6957
|
+
| "Production";
|
|
6958
|
+
|
|
6959
|
+
export type CreateAiGuardrailRequestCategoryEnum =
|
|
6960
|
+
| "ContentSafety"
|
|
6961
|
+
| "PromptInjection"
|
|
6962
|
+
| "Privacy"
|
|
6963
|
+
| "Legal";
|
|
6964
|
+
|
|
6965
|
+
export type CreateAiUrlSourceRequestCategoryEnum =
|
|
6966
|
+
| "Regulatory"
|
|
6967
|
+
| "Guidelines"
|
|
6968
|
+
| "MarketData"
|
|
6969
|
+
| "Custom";
|
|
6970
|
+
|
|
6971
|
+
export type CreateAiUrlSourceRequestScopeEnum = "FullDomain" | "SpecificPath";
|
|
6972
|
+
|
|
6973
|
+
export type CreateCustomFieldDefinitionRequestDataTypeEnum =
|
|
6974
|
+
| "String"
|
|
6975
|
+
| "Number"
|
|
6976
|
+
| "Decimal"
|
|
6977
|
+
| "Boolean"
|
|
6978
|
+
| "Date"
|
|
6979
|
+
| "SingleSelect"
|
|
6980
|
+
| "MultiSelect";
|
|
6981
|
+
|
|
6982
|
+
export type CreateCustomFieldDefinitionRequestEntityTypeEnum = "Loan";
|
|
6983
|
+
|
|
6984
|
+
export type CreateGroupMemberRequestLoanRoleEnum =
|
|
6985
|
+
| "Borrower"
|
|
6986
|
+
| "CoBorrower"
|
|
6987
|
+
| "NonBorrower"
|
|
6988
|
+
| "LoanOfficer"
|
|
6989
|
+
| "LoanProcessor"
|
|
6990
|
+
| "LoanOfficerAssistant"
|
|
6991
|
+
| "SupportingLoanOfficer"
|
|
6992
|
+
| "BuyerAgent"
|
|
6993
|
+
| "SellerAgent"
|
|
6994
|
+
| "TitleInsuranceAgent"
|
|
6995
|
+
| "EscrowAgent"
|
|
6996
|
+
| "SettlementAgent"
|
|
6997
|
+
| "Admin";
|
|
6998
|
+
|
|
6999
|
+
/** @deprecated */
|
|
7000
|
+
export type CreateInviteRequestRelationshipEnum =
|
|
7001
|
+
| "NotApplicable"
|
|
7002
|
+
| "Spouse"
|
|
7003
|
+
| "NonSpouse";
|
|
7004
|
+
|
|
7005
|
+
export type CreateLoanImportRequestImportModeEnum =
|
|
7006
|
+
| "All"
|
|
7007
|
+
| "NewOnly"
|
|
7008
|
+
| "UpdateOnly";
|
|
7009
|
+
|
|
7010
|
+
export type CreateUserDraftLoanRoleEnum =
|
|
7011
|
+
| "Borrower"
|
|
7012
|
+
| "CoBorrower"
|
|
7013
|
+
| "NonBorrower"
|
|
7014
|
+
| "LoanOfficer"
|
|
7015
|
+
| "LoanProcessor"
|
|
7016
|
+
| "LoanOfficerAssistant"
|
|
7017
|
+
| "SupportingLoanOfficer"
|
|
7018
|
+
| "BuyerAgent"
|
|
7019
|
+
| "SellerAgent"
|
|
7020
|
+
| "TitleInsuranceAgent"
|
|
7021
|
+
| "EscrowAgent"
|
|
7022
|
+
| "SettlementAgent"
|
|
7023
|
+
| "Admin";
|
|
7024
|
+
|
|
7025
|
+
export type CustomFieldDefinitionDataTypeEnum =
|
|
7026
|
+
| "String"
|
|
7027
|
+
| "Number"
|
|
7028
|
+
| "Decimal"
|
|
7029
|
+
| "Boolean"
|
|
7030
|
+
| "Date"
|
|
7031
|
+
| "SingleSelect"
|
|
7032
|
+
| "MultiSelect";
|
|
7033
|
+
|
|
7034
|
+
export type CustomFieldDefinitionEntityTypeEnum = "Loan";
|
|
7035
|
+
|
|
7036
|
+
export type CustomFieldEntryDataTypeEnum =
|
|
7037
|
+
| "String"
|
|
7038
|
+
| "Number"
|
|
7039
|
+
| "Decimal"
|
|
7040
|
+
| "Boolean"
|
|
7041
|
+
| "Date"
|
|
7042
|
+
| "SingleSelect"
|
|
7043
|
+
| "MultiSelect";
|
|
7044
|
+
|
|
7045
|
+
export type CustomFieldPermissionRoleEnum =
|
|
7046
|
+
| "Borrower"
|
|
7047
|
+
| "LoanOfficer"
|
|
7048
|
+
| "Admin"
|
|
7049
|
+
| "SuperAdmin"
|
|
7050
|
+
| "Realtor"
|
|
7051
|
+
| "SettlementAgent"
|
|
7052
|
+
| "LoanProcessor"
|
|
7053
|
+
| "LoanOfficerAssistant"
|
|
7054
|
+
| "SystemAdmin";
|
|
7055
|
+
|
|
7056
|
+
export type CustomFieldPermissionAccessLevelEnum =
|
|
7057
|
+
| "NoAccess"
|
|
7058
|
+
| "ReadOnly"
|
|
7059
|
+
| "ReadWrite";
|
|
7060
|
+
|
|
7061
|
+
export type CustomFieldPermissionRequestRoleEnum =
|
|
7062
|
+
| "Borrower"
|
|
7063
|
+
| "LoanOfficer"
|
|
7064
|
+
| "Admin"
|
|
7065
|
+
| "SuperAdmin"
|
|
7066
|
+
| "Realtor"
|
|
7067
|
+
| "SettlementAgent"
|
|
7068
|
+
| "LoanProcessor"
|
|
7069
|
+
| "LoanOfficerAssistant"
|
|
7070
|
+
| "SystemAdmin";
|
|
7071
|
+
|
|
7072
|
+
export type CustomFieldPermissionRequestAccessLevelEnum =
|
|
7073
|
+
| "NoAccess"
|
|
7074
|
+
| "ReadOnly"
|
|
7075
|
+
| "ReadWrite";
|
|
7076
|
+
|
|
7077
|
+
export type CustomFieldValueDataTypeEnum =
|
|
7078
|
+
| "String"
|
|
7079
|
+
| "Number"
|
|
7080
|
+
| "Decimal"
|
|
7081
|
+
| "Boolean"
|
|
7082
|
+
| "Date"
|
|
7083
|
+
| "SingleSelect"
|
|
7084
|
+
| "MultiSelect";
|
|
7085
|
+
|
|
7086
|
+
export type DraftTypeEnum = "NewLoan" | "EditLoan";
|
|
7087
|
+
|
|
7088
|
+
export type DraftContentTypeEnum = "NewLoan" | "EditLoan";
|
|
7089
|
+
|
|
7090
|
+
export type EncompassCredentialsDetailEncompassEnvironmentEnum =
|
|
7091
|
+
| "Production"
|
|
7092
|
+
| "UAT";
|
|
7093
|
+
|
|
7094
|
+
export type EncompassCredentialsDetailSigningMethodEnum =
|
|
7095
|
+
| "ConsumerConnect"
|
|
7096
|
+
| "POSF";
|
|
7097
|
+
|
|
7098
|
+
export type EncompassCredentialsRequestEncompassEnvironmentEnum =
|
|
7099
|
+
| "Production"
|
|
7100
|
+
| "UAT";
|
|
7101
|
+
|
|
7102
|
+
export type EncompassCredentialsRequestSigningMethodEnum =
|
|
7103
|
+
| "ConsumerConnect"
|
|
7104
|
+
| "POSF";
|
|
7105
|
+
|
|
7106
|
+
export type EncompassRequestLogOperationTypeEnum =
|
|
7107
|
+
| "FieldUpdate"
|
|
7108
|
+
| "ConsentUpdate"
|
|
7109
|
+
| "DocumentSync"
|
|
7110
|
+
| "MilestoneUpdate"
|
|
7111
|
+
| "DocumentAttachment"
|
|
7112
|
+
| "General"
|
|
7113
|
+
| "FieldReader";
|
|
7114
|
+
|
|
7115
|
+
export type EncompassRequestLogOutcomeEnum =
|
|
7116
|
+
| "Success"
|
|
7117
|
+
| "Failure"
|
|
7118
|
+
| "PartialSuccess";
|
|
7119
|
+
|
|
7120
|
+
export type FusionReportFilterFilterTypeEnum =
|
|
7121
|
+
| "DateGreaterThanOrEqualTo"
|
|
7122
|
+
| "DateGreaterThan"
|
|
7123
|
+
| "DateLessThan"
|
|
7124
|
+
| "DateLessThanOrEqualTo"
|
|
7125
|
+
| "DateEquals"
|
|
7126
|
+
| "DateDoesntEqual"
|
|
7127
|
+
| "DateNonEmpty"
|
|
7128
|
+
| "DateEmpty"
|
|
7129
|
+
| "StringContains"
|
|
7130
|
+
| "StringEquals"
|
|
7131
|
+
| "StringNotEmpty"
|
|
7132
|
+
| "StringNotEquals"
|
|
7133
|
+
| "StringNotContains";
|
|
7134
|
+
|
|
7135
|
+
export type GenerateSystemPromptRequestCategoryEnum =
|
|
7136
|
+
| "DocumentAnalysis"
|
|
7137
|
+
| "DataQuery"
|
|
7138
|
+
| "General"
|
|
7139
|
+
| "Action";
|
|
7140
|
+
|
|
7141
|
+
export type IpAddressAddressFamilyEnum =
|
|
7142
|
+
| "Unspecified"
|
|
7143
|
+
| "Unix"
|
|
7144
|
+
| "InterNetwork"
|
|
7145
|
+
| "ImpLink"
|
|
7146
|
+
| "Pup"
|
|
7147
|
+
| "Chaos"
|
|
7148
|
+
| "NS"
|
|
7149
|
+
| "Ipx"
|
|
7150
|
+
| "Iso"
|
|
7151
|
+
| "Osi"
|
|
7152
|
+
| "Ecma"
|
|
7153
|
+
| "DataKit"
|
|
7154
|
+
| "Ccitt"
|
|
7155
|
+
| "Sna"
|
|
7156
|
+
| "DecNet"
|
|
7157
|
+
| "DataLink"
|
|
7158
|
+
| "Lat"
|
|
7159
|
+
| "HyperChannel"
|
|
7160
|
+
| "AppleTalk"
|
|
7161
|
+
| "NetBios"
|
|
7162
|
+
| "VoiceView"
|
|
7163
|
+
| "FireFox"
|
|
7164
|
+
| "Banyan"
|
|
7165
|
+
| "Atm"
|
|
7166
|
+
| "InterNetworkV6"
|
|
7167
|
+
| "Cluster"
|
|
7168
|
+
| "Ieee12844"
|
|
7169
|
+
| "Irda"
|
|
7170
|
+
| "NetworkDesigners"
|
|
7171
|
+
| "Max"
|
|
7172
|
+
| "Packet"
|
|
7173
|
+
| "ControllerAreaNetwork"
|
|
7174
|
+
| "Unknown";
|
|
7175
|
+
|
|
7176
|
+
export type LoanSigningMethodEnum = "ConsumerConnect" | "POSF";
|
|
7177
|
+
|
|
7178
|
+
export type LoanBorrowerApplicationStatusEnum = "Draft" | "Complete";
|
|
7179
|
+
|
|
7180
|
+
export type LoanContactRoleEnum =
|
|
7181
|
+
| "Borrower"
|
|
7182
|
+
| "CoBorrower"
|
|
7183
|
+
| "NonBorrower"
|
|
7184
|
+
| "LoanOfficer"
|
|
7185
|
+
| "LoanProcessor"
|
|
7186
|
+
| "LoanOfficerAssistant"
|
|
7187
|
+
| "SupportingLoanOfficer"
|
|
7188
|
+
| "BuyerAgent"
|
|
7189
|
+
| "SellerAgent"
|
|
7190
|
+
| "TitleInsuranceAgent"
|
|
7191
|
+
| "EscrowAgent"
|
|
7192
|
+
| "SettlementAgent"
|
|
7193
|
+
| "Admin";
|
|
7194
|
+
|
|
7195
|
+
export type LoanDocumentFolderPermissionRoleEnum =
|
|
7196
|
+
| "Borrower"
|
|
7197
|
+
| "CoBorrower"
|
|
7198
|
+
| "NonBorrower"
|
|
7199
|
+
| "LoanOfficer"
|
|
7200
|
+
| "LoanProcessor"
|
|
7201
|
+
| "LoanOfficerAssistant"
|
|
7202
|
+
| "SupportingLoanOfficer"
|
|
7203
|
+
| "BuyerAgent"
|
|
7204
|
+
| "SellerAgent"
|
|
7205
|
+
| "TitleInsuranceAgent"
|
|
7206
|
+
| "EscrowAgent"
|
|
7207
|
+
| "SettlementAgent"
|
|
7208
|
+
| "Admin";
|
|
7209
|
+
|
|
7210
|
+
export type LoanDocumentFolderPermissionLevelEnum =
|
|
7211
|
+
| "None"
|
|
7212
|
+
| "Read"
|
|
7213
|
+
| "Write"
|
|
7214
|
+
| "Manage";
|
|
7215
|
+
|
|
7216
|
+
export type LoanDocumentFolderPermissionRequestRoleEnum =
|
|
7217
|
+
| "Borrower"
|
|
7218
|
+
| "CoBorrower"
|
|
7219
|
+
| "NonBorrower"
|
|
7220
|
+
| "LoanOfficer"
|
|
7221
|
+
| "LoanProcessor"
|
|
7222
|
+
| "LoanOfficerAssistant"
|
|
7223
|
+
| "SupportingLoanOfficer"
|
|
7224
|
+
| "BuyerAgent"
|
|
7225
|
+
| "SellerAgent"
|
|
7226
|
+
| "TitleInsuranceAgent"
|
|
7227
|
+
| "EscrowAgent"
|
|
7228
|
+
| "SettlementAgent"
|
|
7229
|
+
| "Admin";
|
|
7230
|
+
|
|
7231
|
+
export type LoanDocumentFolderPermissionRequestLevelEnum =
|
|
7232
|
+
| "None"
|
|
7233
|
+
| "Read"
|
|
7234
|
+
| "Write"
|
|
7235
|
+
| "Manage";
|
|
7236
|
+
|
|
7237
|
+
export type LoanImportStatusEnum =
|
|
7238
|
+
| "WaitingProcess"
|
|
7239
|
+
| "InProgress"
|
|
7240
|
+
| "Completed"
|
|
7241
|
+
| "Failed"
|
|
7242
|
+
| "Cancelled";
|
|
7243
|
+
|
|
7244
|
+
export type LoanImportImportModeEnum = "All" | "NewOnly" | "UpdateOnly";
|
|
7245
|
+
|
|
7246
|
+
export type LoanImportLogLevelEnum = "None" | "Info" | "Warning" | "Error";
|
|
7247
|
+
|
|
7248
|
+
export type LoanLogLevelEnum = "None" | "Info" | "Warning" | "Error";
|
|
7249
|
+
|
|
7250
|
+
export type LoanLogTypeEnum =
|
|
7251
|
+
| "Loan"
|
|
7252
|
+
| "Queue"
|
|
7253
|
+
| "POSFlagChanged"
|
|
7254
|
+
| "Verification"
|
|
7255
|
+
| "DocumentUploaded"
|
|
7256
|
+
| "LoanCreated"
|
|
7257
|
+
| "WorkflowSubmitted"
|
|
7258
|
+
| "UserInvitationSent"
|
|
7259
|
+
| "CoBorrowerAdded"
|
|
7260
|
+
| "TaskCompleted"
|
|
7261
|
+
| "LoanStatusChanged"
|
|
7262
|
+
| "Consent"
|
|
7263
|
+
| "SensitiveDataPurge"
|
|
7264
|
+
| "ClosingDateUpdated"
|
|
7265
|
+
| "ConsumerConnectAssociation"
|
|
7266
|
+
| "TaskReminderSent"
|
|
7267
|
+
| "DocumentClassified";
|
|
7268
|
+
|
|
7269
|
+
export type LoanLogDetailLevelEnum = "None" | "Info" | "Warning" | "Error";
|
|
7270
|
+
|
|
7271
|
+
export type LoanLogDetailTypeEnum =
|
|
7272
|
+
| "Loan"
|
|
7273
|
+
| "Queue"
|
|
7274
|
+
| "POSFlagChanged"
|
|
7275
|
+
| "Verification"
|
|
7276
|
+
| "DocumentUploaded"
|
|
7277
|
+
| "LoanCreated"
|
|
7278
|
+
| "WorkflowSubmitted"
|
|
7279
|
+
| "UserInvitationSent"
|
|
7280
|
+
| "CoBorrowerAdded"
|
|
7281
|
+
| "TaskCompleted"
|
|
7282
|
+
| "LoanStatusChanged"
|
|
7283
|
+
| "Consent"
|
|
7284
|
+
| "SensitiveDataPurge"
|
|
7285
|
+
| "ClosingDateUpdated"
|
|
7286
|
+
| "ConsumerConnectAssociation"
|
|
7287
|
+
| "TaskReminderSent"
|
|
7288
|
+
| "DocumentClassified";
|
|
7289
|
+
|
|
7290
|
+
export type LoanTaskStatusSummaryStatusEnum =
|
|
7291
|
+
| "Outstanding"
|
|
7292
|
+
| "Pending"
|
|
7293
|
+
| "Completed"
|
|
7294
|
+
| "Rejected"
|
|
7295
|
+
| "Unknown";
|
|
7296
|
+
|
|
7297
|
+
export type LoanUserLoanRoleEnum =
|
|
7298
|
+
| "Borrower"
|
|
7299
|
+
| "CoBorrower"
|
|
7300
|
+
| "NonBorrower"
|
|
7301
|
+
| "LoanOfficer"
|
|
7302
|
+
| "LoanProcessor"
|
|
7303
|
+
| "LoanOfficerAssistant"
|
|
7304
|
+
| "SupportingLoanOfficer"
|
|
7305
|
+
| "BuyerAgent"
|
|
7306
|
+
| "SellerAgent"
|
|
7307
|
+
| "TitleInsuranceAgent"
|
|
7308
|
+
| "EscrowAgent"
|
|
7309
|
+
| "SettlementAgent"
|
|
7310
|
+
| "Admin";
|
|
7311
|
+
|
|
7312
|
+
export type LosOperationTrackingStatusEnum =
|
|
7313
|
+
| "Pending"
|
|
7314
|
+
| "Success"
|
|
7315
|
+
| "Failed"
|
|
7316
|
+
| "ConfigurationError"
|
|
7317
|
+
| "PermanentFailure"
|
|
7318
|
+
| "Locked";
|
|
7319
|
+
|
|
7320
|
+
export type LosSyncStepSeverityEnum = "Success" | "Info" | "Warning" | "Error";
|
|
7321
|
+
|
|
7322
|
+
export type ManualDocumentClassificationRequestDocumentTypeEnum =
|
|
7323
|
+
| "W2"
|
|
7324
|
+
| "Paystub"
|
|
7325
|
+
| "Form1099"
|
|
7326
|
+
| "Form1099Int"
|
|
7327
|
+
| "Form1099Misc"
|
|
7328
|
+
| "Form1099Nec"
|
|
7329
|
+
| "Form1099R"
|
|
7330
|
+
| "Form1099G"
|
|
7331
|
+
| "Form1099Div"
|
|
7332
|
+
| "Form1099Ssa"
|
|
7333
|
+
| "FederalTaxReturn1040"
|
|
7334
|
+
| "TaxReturnScheduleC"
|
|
7335
|
+
| "TaxReturnScheduleD"
|
|
7336
|
+
| "TaxReturnScheduleE"
|
|
7337
|
+
| "Form1065"
|
|
7338
|
+
| "Form1120"
|
|
7339
|
+
| "Form1120S"
|
|
7340
|
+
| "ProfitAndLossStatement"
|
|
7341
|
+
| "VerificationOfEmployment"
|
|
7342
|
+
| "BankStatement"
|
|
7343
|
+
| "InvestmentStatement"
|
|
7344
|
+
| "CreditCardStatement"
|
|
7345
|
+
| "MortgageStatement"
|
|
7346
|
+
| "PayoffStatement"
|
|
7347
|
+
| "HoaDocuments"
|
|
7348
|
+
| "UtilityBill"
|
|
7349
|
+
| "IdentityDocument"
|
|
7350
|
+
| "DemographicAddendum"
|
|
7351
|
+
| "Ssa89"
|
|
7352
|
+
| "Vba260551"
|
|
7353
|
+
| "Hud92900B"
|
|
7354
|
+
| "Check"
|
|
7355
|
+
| "Invoice"
|
|
7356
|
+
| "Receipt"
|
|
7357
|
+
| "LoanApplication1003"
|
|
7358
|
+
| "UnderwritingTransmittal1008"
|
|
7359
|
+
| "Other"
|
|
7360
|
+
| "SalesContract"
|
|
7361
|
+
| "TitleCommitment"
|
|
7362
|
+
| "DriversLicense"
|
|
7363
|
+
| "VerificationOfIncome"
|
|
7364
|
+
| "VerificationOfAssets"
|
|
7365
|
+
| "FloodCertificate"
|
|
7366
|
+
| "FraudReport"
|
|
7367
|
+
| "AddendumToSalesContract"
|
|
7368
|
+
| "GiftLetter"
|
|
7369
|
+
| "CpaLetter"
|
|
7370
|
+
| "TaxBill"
|
|
7371
|
+
| "CondoQuestionnaire"
|
|
7372
|
+
| "CondoBudget"
|
|
7373
|
+
| "CondoBylaws"
|
|
7374
|
+
| "RentalAgreements"
|
|
7375
|
+
| "Lease"
|
|
7376
|
+
| "HazardInsurance"
|
|
7377
|
+
| "VaCertificateOfEligibility"
|
|
7378
|
+
| "Appraisal"
|
|
7379
|
+
| "CreditReport"
|
|
7380
|
+
| "CondoMasterPolicy";
|
|
7381
|
+
|
|
7382
|
+
export type SiteConfigurationTypeEnum =
|
|
7383
|
+
| "None"
|
|
7384
|
+
| "Account"
|
|
7385
|
+
| "Corporate"
|
|
7386
|
+
| "Branch"
|
|
7387
|
+
| "LoanOfficer"
|
|
7388
|
+
| "Partner";
|
|
7389
|
+
|
|
7390
|
+
export type SiteConfigurationByUrlTypeEnum =
|
|
7391
|
+
| "None"
|
|
7392
|
+
| "Account"
|
|
7393
|
+
| "Corporate"
|
|
7394
|
+
| "Branch"
|
|
7395
|
+
| "LoanOfficer"
|
|
7396
|
+
| "Partner";
|
|
7397
|
+
|
|
7398
|
+
export type SiteConfigurationReducedTypeEnum =
|
|
7399
|
+
| "None"
|
|
7400
|
+
| "Account"
|
|
7401
|
+
| "Corporate"
|
|
7402
|
+
| "Branch"
|
|
7403
|
+
| "LoanOfficer"
|
|
7404
|
+
| "Partner";
|
|
7405
|
+
|
|
7406
|
+
export type SiteConfigurationRequestTypeEnum =
|
|
7407
|
+
| "None"
|
|
7408
|
+
| "Account"
|
|
7409
|
+
| "Corporate"
|
|
7410
|
+
| "Branch"
|
|
7411
|
+
| "LoanOfficer"
|
|
7412
|
+
| "Partner";
|
|
7413
|
+
|
|
7414
|
+
export type SiteConfigurationSummaryTypeEnum =
|
|
7415
|
+
| "None"
|
|
7416
|
+
| "Account"
|
|
7417
|
+
| "Corporate"
|
|
7418
|
+
| "Branch"
|
|
7419
|
+
| "LoanOfficer"
|
|
7420
|
+
| "Partner";
|
|
7421
|
+
|
|
7422
|
+
export type UnregisteredBorrowerRoleEnum =
|
|
7423
|
+
| "Borrower"
|
|
7424
|
+
| "CoBorrower"
|
|
7425
|
+
| "NonBorrower"
|
|
7426
|
+
| "LoanOfficer"
|
|
7427
|
+
| "LoanProcessor"
|
|
7428
|
+
| "LoanOfficerAssistant"
|
|
7429
|
+
| "SupportingLoanOfficer"
|
|
7430
|
+
| "BuyerAgent"
|
|
7431
|
+
| "SellerAgent"
|
|
7432
|
+
| "TitleInsuranceAgent"
|
|
7433
|
+
| "EscrowAgent"
|
|
7434
|
+
| "SettlementAgent"
|
|
7435
|
+
| "Admin";
|
|
7436
|
+
|
|
7437
|
+
export type UpdateAiGuardrailRequestCategoryEnum =
|
|
7438
|
+
| "ContentSafety"
|
|
7439
|
+
| "PromptInjection"
|
|
7440
|
+
| "Privacy"
|
|
7441
|
+
| "Legal";
|
|
7442
|
+
|
|
7443
|
+
export type UpdateAiUrlSourceRequestCategoryEnum =
|
|
7444
|
+
| "Regulatory"
|
|
7445
|
+
| "Guidelines"
|
|
7446
|
+
| "MarketData"
|
|
7447
|
+
| "Custom";
|
|
7448
|
+
|
|
7449
|
+
export type UpdateAiUrlSourceRequestScopeEnum = "FullDomain" | "SpecificPath";
|
|
7450
|
+
|
|
7451
|
+
export type UserDraftRoleEnum =
|
|
7452
|
+
| "Borrower"
|
|
7453
|
+
| "CoBorrower"
|
|
7454
|
+
| "NonBorrower"
|
|
7455
|
+
| "LoanOfficer"
|
|
7456
|
+
| "LoanProcessor"
|
|
7457
|
+
| "LoanOfficerAssistant"
|
|
7458
|
+
| "SupportingLoanOfficer"
|
|
7459
|
+
| "BuyerAgent"
|
|
7460
|
+
| "SellerAgent"
|
|
7461
|
+
| "TitleInsuranceAgent"
|
|
7462
|
+
| "EscrowAgent"
|
|
7463
|
+
| "SettlementAgent"
|
|
7464
|
+
| "Admin";
|
|
7465
|
+
|
|
7466
|
+
export type UserGroupAccessScopeScopeTypeEnum = "User" | "Branch";
|
|
7467
|
+
|
|
7468
|
+
export type UserLoanRoleEnum =
|
|
7469
|
+
| "Borrower"
|
|
7470
|
+
| "CoBorrower"
|
|
7471
|
+
| "NonBorrower"
|
|
7472
|
+
| "LoanOfficer"
|
|
7473
|
+
| "LoanProcessor"
|
|
7474
|
+
| "LoanOfficerAssistant"
|
|
7475
|
+
| "SupportingLoanOfficer"
|
|
7476
|
+
| "BuyerAgent"
|
|
7477
|
+
| "SellerAgent"
|
|
7478
|
+
| "TitleInsuranceAgent"
|
|
7479
|
+
| "EscrowAgent"
|
|
7480
|
+
| "SettlementAgent"
|
|
7481
|
+
| "Admin";
|
|
7482
|
+
|
|
7483
|
+
export type UserLoanConsentTypeEnum =
|
|
7484
|
+
| "Econsent"
|
|
7485
|
+
| "CreditAuthorization"
|
|
7486
|
+
| "Tcpa";
|
|
7487
|
+
|
|
7488
|
+
export type UserLoanConsentLosSyncStatusEnum =
|
|
7489
|
+
| "NotStarted"
|
|
7490
|
+
| "Failed"
|
|
7491
|
+
| "Success";
|
|
7492
|
+
|
|
7493
|
+
export type UserSummaryRoleEnum =
|
|
7494
|
+
| "Borrower"
|
|
7495
|
+
| "LoanOfficer"
|
|
7496
|
+
| "Admin"
|
|
7497
|
+
| "SuperAdmin"
|
|
7498
|
+
| "Realtor"
|
|
7499
|
+
| "SettlementAgent"
|
|
7500
|
+
| "LoanProcessor"
|
|
7501
|
+
| "LoanOfficerAssistant"
|
|
7502
|
+
| "SystemAdmin";
|
|
7503
|
+
|
|
7504
|
+
export type GetCustomFieldDefinitionsParamsEntityTypeEnum = "Loan";
|
|
7505
|
+
|
|
7506
|
+
/** @default "Realtor" */
|
|
7507
|
+
export type GetPartnersParamsRoleEnum =
|
|
7508
|
+
| "Borrower"
|
|
7509
|
+
| "LoanOfficer"
|
|
7510
|
+
| "Admin"
|
|
7511
|
+
| "SuperAdmin"
|
|
7512
|
+
| "Realtor"
|
|
7513
|
+
| "SettlementAgent"
|
|
7514
|
+
| "LoanProcessor"
|
|
7515
|
+
| "LoanOfficerAssistant"
|
|
7516
|
+
| "SystemAdmin";
|
|
7517
|
+
|
|
7518
|
+
export type GetSamlMetadataParamsSSoIntegrationEnum =
|
|
7519
|
+
| "ConsumerConnect"
|
|
7520
|
+
| "TheBigPOS"
|
|
7521
|
+
| "POSF";
|
|
7522
|
+
|
|
7523
|
+
export type GetSamlMetadataParamsEnum =
|
|
7524
|
+
| "ConsumerConnect"
|
|
7525
|
+
| "TheBigPOS"
|
|
7526
|
+
| "POSF";
|
|
7527
|
+
|
|
7528
|
+
export type CreateOrReplaceSamlMetadataParamsSSoIntegrationEnum =
|
|
7529
|
+
| "ConsumerConnect"
|
|
7530
|
+
| "TheBigPOS"
|
|
7531
|
+
| "POSF";
|
|
7532
|
+
|
|
7533
|
+
export type CreateOrReplaceSamlMetadataParamsEnum =
|
|
7534
|
+
| "ConsumerConnect"
|
|
7535
|
+
| "TheBigPOS"
|
|
7536
|
+
| "POSF";
|
|
7537
|
+
|
|
7237
7538
|
import type {
|
|
7238
7539
|
AxiosInstance,
|
|
7239
7540
|
AxiosRequestConfig,
|
|
@@ -7275,14 +7576,12 @@ export interface ApiConfig<SecurityDataType = unknown>
|
|
|
7275
7576
|
format?: ResponseType;
|
|
7276
7577
|
}
|
|
7277
7578
|
|
|
7278
|
-
export
|
|
7279
|
-
|
|
7280
|
-
|
|
7281
|
-
|
|
7282
|
-
|
|
7283
|
-
|
|
7284
|
-
Text = "text/plain",
|
|
7285
|
-
}
|
|
7579
|
+
export type ContentType =
|
|
7580
|
+
| "application/json"
|
|
7581
|
+
| "application/vnd.api+json"
|
|
7582
|
+
| "multipart/form-data"
|
|
7583
|
+
| "application/x-www-form-urlencoded"
|
|
7584
|
+
| "text/plain";
|
|
7286
7585
|
|
|
7287
7586
|
export class HttpClient<SecurityDataType = unknown> {
|
|
7288
7587
|
public instance: AxiosInstance;
|
|
@@ -7379,7 +7678,7 @@ export class HttpClient<SecurityDataType = unknown> {
|
|
|
7379
7678
|
const responseFormat = format || this.format || undefined;
|
|
7380
7679
|
|
|
7381
7680
|
if (
|
|
7382
|
-
type ===
|
|
7681
|
+
type === "multipart/form-data" &&
|
|
7383
7682
|
body &&
|
|
7384
7683
|
body !== null &&
|
|
7385
7684
|
typeof body === "object"
|
|
@@ -7388,7 +7687,7 @@ export class HttpClient<SecurityDataType = unknown> {
|
|
|
7388
7687
|
}
|
|
7389
7688
|
|
|
7390
7689
|
if (
|
|
7391
|
-
type ===
|
|
7690
|
+
type === "text/plain" &&
|
|
7392
7691
|
body &&
|
|
7393
7692
|
body !== null &&
|
|
7394
7693
|
typeof body !== "string"
|
|
@@ -7495,7 +7794,7 @@ export class Api<
|
|
|
7495
7794
|
method: "PUT",
|
|
7496
7795
|
body: data,
|
|
7497
7796
|
secure: true,
|
|
7498
|
-
type:
|
|
7797
|
+
type: "application/json",
|
|
7499
7798
|
format: "json",
|
|
7500
7799
|
...params,
|
|
7501
7800
|
}),
|
|
@@ -7539,7 +7838,7 @@ export class Api<
|
|
|
7539
7838
|
method: "PUT",
|
|
7540
7839
|
body: data,
|
|
7541
7840
|
secure: true,
|
|
7542
|
-
type:
|
|
7841
|
+
type: "application/json",
|
|
7543
7842
|
format: "json",
|
|
7544
7843
|
...params,
|
|
7545
7844
|
}),
|
|
@@ -7563,7 +7862,7 @@ export class Api<
|
|
|
7563
7862
|
method: "POST",
|
|
7564
7863
|
body: data,
|
|
7565
7864
|
secure: true,
|
|
7566
|
-
type:
|
|
7865
|
+
type: "application/json",
|
|
7567
7866
|
...params,
|
|
7568
7867
|
}),
|
|
7569
7868
|
|
|
@@ -7587,7 +7886,7 @@ export class Api<
|
|
|
7587
7886
|
method: "POST",
|
|
7588
7887
|
body: data,
|
|
7589
7888
|
secure: true,
|
|
7590
|
-
type:
|
|
7889
|
+
type: "application/json",
|
|
7591
7890
|
...params,
|
|
7592
7891
|
}),
|
|
7593
7892
|
|
|
@@ -7627,7 +7926,7 @@ export class Api<
|
|
|
7627
7926
|
method: "POST",
|
|
7628
7927
|
body: data,
|
|
7629
7928
|
secure: true,
|
|
7630
|
-
type:
|
|
7929
|
+
type: "application/json",
|
|
7631
7930
|
format: "json",
|
|
7632
7931
|
...params,
|
|
7633
7932
|
}),
|
|
@@ -7703,7 +8002,7 @@ export class Api<
|
|
|
7703
8002
|
method: "PUT",
|
|
7704
8003
|
body: data,
|
|
7705
8004
|
secure: true,
|
|
7706
|
-
type:
|
|
8005
|
+
type: "application/json",
|
|
7707
8006
|
format: "json",
|
|
7708
8007
|
...params,
|
|
7709
8008
|
}),
|
|
@@ -7747,7 +8046,7 @@ export class Api<
|
|
|
7747
8046
|
method: "PUT",
|
|
7748
8047
|
body: data,
|
|
7749
8048
|
secure: true,
|
|
7750
|
-
type:
|
|
8049
|
+
type: "application/json",
|
|
7751
8050
|
format: "json",
|
|
7752
8051
|
...params,
|
|
7753
8052
|
}),
|
|
@@ -7952,7 +8251,7 @@ export class Api<
|
|
|
7952
8251
|
method: "POST",
|
|
7953
8252
|
body: data,
|
|
7954
8253
|
secure: true,
|
|
7955
|
-
type:
|
|
8254
|
+
type: "application/json",
|
|
7956
8255
|
format: "json",
|
|
7957
8256
|
...params,
|
|
7958
8257
|
}),
|
|
@@ -7999,7 +8298,7 @@ export class Api<
|
|
|
7999
8298
|
method: "PUT",
|
|
8000
8299
|
body: data,
|
|
8001
8300
|
secure: true,
|
|
8002
|
-
type:
|
|
8301
|
+
type: "application/json",
|
|
8003
8302
|
format: "json",
|
|
8004
8303
|
...params,
|
|
8005
8304
|
}),
|
|
@@ -8064,7 +8363,7 @@ export class Api<
|
|
|
8064
8363
|
method: "POST",
|
|
8065
8364
|
body: data,
|
|
8066
8365
|
secure: true,
|
|
8067
|
-
type:
|
|
8366
|
+
type: "application/json",
|
|
8068
8367
|
format: "json",
|
|
8069
8368
|
...params,
|
|
8070
8369
|
}),
|
|
@@ -8127,7 +8426,7 @@ export class Api<
|
|
|
8127
8426
|
method: "PUT",
|
|
8128
8427
|
body: data,
|
|
8129
8428
|
secure: true,
|
|
8130
|
-
type:
|
|
8429
|
+
type: "application/json",
|
|
8131
8430
|
format: "json",
|
|
8132
8431
|
...params,
|
|
8133
8432
|
}),
|
|
@@ -8171,7 +8470,7 @@ export class Api<
|
|
|
8171
8470
|
method: "POST",
|
|
8172
8471
|
body: data,
|
|
8173
8472
|
secure: true,
|
|
8174
|
-
type:
|
|
8473
|
+
type: "application/json",
|
|
8175
8474
|
format: "json",
|
|
8176
8475
|
...params,
|
|
8177
8476
|
}),
|
|
@@ -8218,7 +8517,7 @@ export class Api<
|
|
|
8218
8517
|
method: "PUT",
|
|
8219
8518
|
body: data,
|
|
8220
8519
|
secure: true,
|
|
8221
|
-
type:
|
|
8520
|
+
type: "application/json",
|
|
8222
8521
|
format: "json",
|
|
8223
8522
|
...params,
|
|
8224
8523
|
}),
|
|
@@ -8280,7 +8579,7 @@ export class Api<
|
|
|
8280
8579
|
method: "POST",
|
|
8281
8580
|
body: data,
|
|
8282
8581
|
secure: true,
|
|
8283
|
-
type:
|
|
8582
|
+
type: "application/json",
|
|
8284
8583
|
format: "json",
|
|
8285
8584
|
...params,
|
|
8286
8585
|
}),
|
|
@@ -8359,7 +8658,7 @@ export class Api<
|
|
|
8359
8658
|
method: "PATCH",
|
|
8360
8659
|
body: data,
|
|
8361
8660
|
secure: true,
|
|
8362
|
-
type:
|
|
8661
|
+
type: "application/json",
|
|
8363
8662
|
format: "json",
|
|
8364
8663
|
...params,
|
|
8365
8664
|
}),
|
|
@@ -8459,7 +8758,7 @@ export class Api<
|
|
|
8459
8758
|
method: "PUT",
|
|
8460
8759
|
body: data,
|
|
8461
8760
|
secure: true,
|
|
8462
|
-
type:
|
|
8761
|
+
type: "application/json",
|
|
8463
8762
|
format: "json",
|
|
8464
8763
|
...params,
|
|
8465
8764
|
}),
|
|
@@ -8587,7 +8886,7 @@ export class Api<
|
|
|
8587
8886
|
method: "POST",
|
|
8588
8887
|
body: data,
|
|
8589
8888
|
secure: true,
|
|
8590
|
-
type:
|
|
8889
|
+
type: "application/json",
|
|
8591
8890
|
format: "json",
|
|
8592
8891
|
...params,
|
|
8593
8892
|
}),
|
|
@@ -8634,7 +8933,7 @@ export class Api<
|
|
|
8634
8933
|
method: "PUT",
|
|
8635
8934
|
body: data,
|
|
8636
8935
|
secure: true,
|
|
8637
|
-
type:
|
|
8936
|
+
type: "application/json",
|
|
8638
8937
|
format: "json",
|
|
8639
8938
|
...params,
|
|
8640
8939
|
}),
|
|
@@ -8875,7 +9174,7 @@ export class Api<
|
|
|
8875
9174
|
query: query,
|
|
8876
9175
|
body: data,
|
|
8877
9176
|
secure: true,
|
|
8878
|
-
type:
|
|
9177
|
+
type: "application/json",
|
|
8879
9178
|
format: "json",
|
|
8880
9179
|
...params,
|
|
8881
9180
|
}),
|
|
@@ -8951,7 +9250,7 @@ export class Api<
|
|
|
8951
9250
|
method: "PUT",
|
|
8952
9251
|
body: data,
|
|
8953
9252
|
secure: true,
|
|
8954
|
-
type:
|
|
9253
|
+
type: "application/json",
|
|
8955
9254
|
format: "json",
|
|
8956
9255
|
...params,
|
|
8957
9256
|
}),
|
|
@@ -8996,7 +9295,7 @@ export class Api<
|
|
|
8996
9295
|
method: "POST",
|
|
8997
9296
|
body: data,
|
|
8998
9297
|
secure: true,
|
|
8999
|
-
type:
|
|
9298
|
+
type: "application/json",
|
|
9000
9299
|
format: "json",
|
|
9001
9300
|
...params,
|
|
9002
9301
|
}),
|
|
@@ -9044,7 +9343,7 @@ export class Api<
|
|
|
9044
9343
|
method: "PUT",
|
|
9045
9344
|
body: data,
|
|
9046
9345
|
secure: true,
|
|
9047
|
-
type:
|
|
9346
|
+
type: "application/json",
|
|
9048
9347
|
format: "json",
|
|
9049
9348
|
...params,
|
|
9050
9349
|
}),
|
|
@@ -9165,7 +9464,7 @@ export class Api<
|
|
|
9165
9464
|
query: query,
|
|
9166
9465
|
body: data,
|
|
9167
9466
|
secure: true,
|
|
9168
|
-
type:
|
|
9467
|
+
type: "application/json",
|
|
9169
9468
|
format: "json",
|
|
9170
9469
|
...params,
|
|
9171
9470
|
}),
|
|
@@ -9230,7 +9529,7 @@ export class Api<
|
|
|
9230
9529
|
method: "POST",
|
|
9231
9530
|
body: data,
|
|
9232
9531
|
secure: true,
|
|
9233
|
-
type:
|
|
9532
|
+
type: "application/json",
|
|
9234
9533
|
format: "json",
|
|
9235
9534
|
...params,
|
|
9236
9535
|
}),
|
|
@@ -9252,7 +9551,7 @@ export class Api<
|
|
|
9252
9551
|
method: "POST",
|
|
9253
9552
|
body: data,
|
|
9254
9553
|
secure: true,
|
|
9255
|
-
type:
|
|
9554
|
+
type: "application/json",
|
|
9256
9555
|
format: "json",
|
|
9257
9556
|
...params,
|
|
9258
9557
|
}),
|
|
@@ -9277,7 +9576,7 @@ export class Api<
|
|
|
9277
9576
|
method: "POST",
|
|
9278
9577
|
body: data,
|
|
9279
9578
|
secure: true,
|
|
9280
|
-
type:
|
|
9579
|
+
type: "application/json",
|
|
9281
9580
|
format: "json",
|
|
9282
9581
|
...params,
|
|
9283
9582
|
}),
|
|
@@ -9299,7 +9598,7 @@ export class Api<
|
|
|
9299
9598
|
method: "POST",
|
|
9300
9599
|
body: data,
|
|
9301
9600
|
secure: true,
|
|
9302
|
-
type:
|
|
9601
|
+
type: "application/json",
|
|
9303
9602
|
format: "json",
|
|
9304
9603
|
...params,
|
|
9305
9604
|
}),
|
|
@@ -9321,7 +9620,7 @@ export class Api<
|
|
|
9321
9620
|
method: "POST",
|
|
9322
9621
|
body: data,
|
|
9323
9622
|
secure: true,
|
|
9324
|
-
type:
|
|
9623
|
+
type: "application/json",
|
|
9325
9624
|
format: "json",
|
|
9326
9625
|
...params,
|
|
9327
9626
|
}),
|
|
@@ -9394,7 +9693,7 @@ export class Api<
|
|
|
9394
9693
|
method: "POST",
|
|
9395
9694
|
body: data,
|
|
9396
9695
|
secure: true,
|
|
9397
|
-
type:
|
|
9696
|
+
type: "application/json",
|
|
9398
9697
|
format: "json",
|
|
9399
9698
|
...params,
|
|
9400
9699
|
}),
|
|
@@ -9427,7 +9726,7 @@ export class Api<
|
|
|
9427
9726
|
query: query,
|
|
9428
9727
|
body: data,
|
|
9429
9728
|
secure: true,
|
|
9430
|
-
type:
|
|
9729
|
+
type: "application/json",
|
|
9431
9730
|
format: "json",
|
|
9432
9731
|
...params,
|
|
9433
9732
|
}),
|
|
@@ -9472,7 +9771,7 @@ export class Api<
|
|
|
9472
9771
|
method: "PUT",
|
|
9473
9772
|
body: data,
|
|
9474
9773
|
secure: true,
|
|
9475
|
-
type:
|
|
9774
|
+
type: "application/json",
|
|
9476
9775
|
format: "json",
|
|
9477
9776
|
...params,
|
|
9478
9777
|
}),
|
|
@@ -9535,7 +9834,7 @@ export class Api<
|
|
|
9535
9834
|
method: "POST",
|
|
9536
9835
|
body: data,
|
|
9537
9836
|
secure: true,
|
|
9538
|
-
type:
|
|
9837
|
+
type: "application/json",
|
|
9539
9838
|
format: "json",
|
|
9540
9839
|
...params,
|
|
9541
9840
|
}),
|
|
@@ -9589,7 +9888,7 @@ export class Api<
|
|
|
9589
9888
|
query: query,
|
|
9590
9889
|
body: data,
|
|
9591
9890
|
secure: true,
|
|
9592
|
-
type:
|
|
9891
|
+
type: "application/json",
|
|
9593
9892
|
format: "json",
|
|
9594
9893
|
...params,
|
|
9595
9894
|
}),
|
|
@@ -9658,7 +9957,7 @@ export class Api<
|
|
|
9658
9957
|
method: "POST",
|
|
9659
9958
|
body: data,
|
|
9660
9959
|
secure: true,
|
|
9661
|
-
type:
|
|
9960
|
+
type: "application/json",
|
|
9662
9961
|
format: "json",
|
|
9663
9962
|
...params,
|
|
9664
9963
|
}),
|
|
@@ -9703,7 +10002,7 @@ export class Api<
|
|
|
9703
10002
|
method: "PUT",
|
|
9704
10003
|
body: data,
|
|
9705
10004
|
secure: true,
|
|
9706
|
-
type:
|
|
10005
|
+
type: "application/json",
|
|
9707
10006
|
format: "json",
|
|
9708
10007
|
...params,
|
|
9709
10008
|
}),
|
|
@@ -9764,7 +10063,7 @@ export class Api<
|
|
|
9764
10063
|
method: "POST",
|
|
9765
10064
|
body: data,
|
|
9766
10065
|
secure: true,
|
|
9767
|
-
type:
|
|
10066
|
+
type: "application/json",
|
|
9768
10067
|
format: "json",
|
|
9769
10068
|
...params,
|
|
9770
10069
|
}),
|
|
@@ -9858,7 +10157,7 @@ export class Api<
|
|
|
9858
10157
|
method: "POST",
|
|
9859
10158
|
body: data,
|
|
9860
10159
|
secure: true,
|
|
9861
|
-
type:
|
|
10160
|
+
type: "application/json",
|
|
9862
10161
|
format: "json",
|
|
9863
10162
|
...params,
|
|
9864
10163
|
}),
|
|
@@ -9891,7 +10190,7 @@ export class Api<
|
|
|
9891
10190
|
query: query,
|
|
9892
10191
|
body: data,
|
|
9893
10192
|
secure: true,
|
|
9894
|
-
type:
|
|
10193
|
+
type: "application/json",
|
|
9895
10194
|
format: "json",
|
|
9896
10195
|
...params,
|
|
9897
10196
|
}),
|
|
@@ -9936,7 +10235,7 @@ export class Api<
|
|
|
9936
10235
|
method: "PUT",
|
|
9937
10236
|
body: data,
|
|
9938
10237
|
secure: true,
|
|
9939
|
-
type:
|
|
10238
|
+
type: "application/json",
|
|
9940
10239
|
format: "json",
|
|
9941
10240
|
...params,
|
|
9942
10241
|
}),
|
|
@@ -9998,7 +10297,7 @@ export class Api<
|
|
|
9998
10297
|
method: "POST",
|
|
9999
10298
|
body: data,
|
|
10000
10299
|
secure: true,
|
|
10001
|
-
type:
|
|
10300
|
+
type: "application/json",
|
|
10002
10301
|
format: "json",
|
|
10003
10302
|
...params,
|
|
10004
10303
|
}),
|
|
@@ -10052,7 +10351,7 @@ export class Api<
|
|
|
10052
10351
|
query: query,
|
|
10053
10352
|
body: data,
|
|
10054
10353
|
secure: true,
|
|
10055
|
-
type:
|
|
10354
|
+
type: "application/json",
|
|
10056
10355
|
format: "json",
|
|
10057
10356
|
...params,
|
|
10058
10357
|
}),
|
|
@@ -10107,7 +10406,7 @@ export class Api<
|
|
|
10107
10406
|
*/
|
|
10108
10407
|
getCustomFieldDefinitions: (
|
|
10109
10408
|
query?: {
|
|
10110
|
-
entityType?:
|
|
10409
|
+
entityType?: GetCustomFieldDefinitionsParamsEntityTypeEnum;
|
|
10111
10410
|
},
|
|
10112
10411
|
params: RequestParams = {},
|
|
10113
10412
|
) =>
|
|
@@ -10141,7 +10440,7 @@ export class Api<
|
|
|
10141
10440
|
method: "POST",
|
|
10142
10441
|
body: data,
|
|
10143
10442
|
secure: true,
|
|
10144
|
-
type:
|
|
10443
|
+
type: "application/json",
|
|
10145
10444
|
format: "json",
|
|
10146
10445
|
...params,
|
|
10147
10446
|
}),
|
|
@@ -10190,7 +10489,7 @@ export class Api<
|
|
|
10190
10489
|
method: "PUT",
|
|
10191
10490
|
body: data,
|
|
10192
10491
|
secure: true,
|
|
10193
|
-
type:
|
|
10492
|
+
type: "application/json",
|
|
10194
10493
|
format: "json",
|
|
10195
10494
|
...params,
|
|
10196
10495
|
}),
|
|
@@ -10324,7 +10623,7 @@ export class Api<
|
|
|
10324
10623
|
method: "PUT",
|
|
10325
10624
|
body: data,
|
|
10326
10625
|
secure: true,
|
|
10327
|
-
type:
|
|
10626
|
+
type: "application/json",
|
|
10328
10627
|
format: "json",
|
|
10329
10628
|
...params,
|
|
10330
10629
|
}),
|
|
@@ -10443,7 +10742,7 @@ export class Api<
|
|
|
10443
10742
|
method: "POST",
|
|
10444
10743
|
body: data,
|
|
10445
10744
|
secure: true,
|
|
10446
|
-
type:
|
|
10745
|
+
type: "application/json",
|
|
10447
10746
|
format: "json",
|
|
10448
10747
|
...params,
|
|
10449
10748
|
}),
|
|
@@ -10520,7 +10819,7 @@ export class Api<
|
|
|
10520
10819
|
method: "PUT",
|
|
10521
10820
|
body: data,
|
|
10522
10821
|
secure: true,
|
|
10523
|
-
type:
|
|
10822
|
+
type: "application/json",
|
|
10524
10823
|
format: "json",
|
|
10525
10824
|
...params,
|
|
10526
10825
|
}),
|
|
@@ -10607,7 +10906,7 @@ export class Api<
|
|
|
10607
10906
|
method: "POST",
|
|
10608
10907
|
body: data,
|
|
10609
10908
|
secure: true,
|
|
10610
|
-
type:
|
|
10909
|
+
type: "application/json",
|
|
10611
10910
|
format: "json",
|
|
10612
10911
|
...params,
|
|
10613
10912
|
}),
|
|
@@ -10656,7 +10955,7 @@ export class Api<
|
|
|
10656
10955
|
method: "PUT",
|
|
10657
10956
|
body: data,
|
|
10658
10957
|
secure: true,
|
|
10659
|
-
type:
|
|
10958
|
+
type: "application/json",
|
|
10660
10959
|
format: "json",
|
|
10661
10960
|
...params,
|
|
10662
10961
|
}),
|
|
@@ -10731,7 +11030,7 @@ export class Api<
|
|
|
10731
11030
|
method: "POST",
|
|
10732
11031
|
body: data,
|
|
10733
11032
|
secure: true,
|
|
10734
|
-
type:
|
|
11033
|
+
type: "application/json",
|
|
10735
11034
|
format: "json",
|
|
10736
11035
|
...params,
|
|
10737
11036
|
}),
|
|
@@ -10907,7 +11206,7 @@ export class Api<
|
|
|
10907
11206
|
method: "POST",
|
|
10908
11207
|
body: data,
|
|
10909
11208
|
secure: true,
|
|
10910
|
-
type:
|
|
11209
|
+
type: "application/json",
|
|
10911
11210
|
format: "json",
|
|
10912
11211
|
...params,
|
|
10913
11212
|
}),
|
|
@@ -10970,7 +11269,7 @@ export class Api<
|
|
|
10970
11269
|
method: "POST",
|
|
10971
11270
|
body: data,
|
|
10972
11271
|
secure: true,
|
|
10973
|
-
type:
|
|
11272
|
+
type: "multipart/form-data",
|
|
10974
11273
|
format: "json",
|
|
10975
11274
|
...params,
|
|
10976
11275
|
}),
|
|
@@ -11011,7 +11310,7 @@ export class Api<
|
|
|
11011
11310
|
method: "PUT",
|
|
11012
11311
|
body: data,
|
|
11013
11312
|
secure: true,
|
|
11014
|
-
type:
|
|
11313
|
+
type: "application/json",
|
|
11015
11314
|
format: "json",
|
|
11016
11315
|
...params,
|
|
11017
11316
|
}),
|
|
@@ -11062,7 +11361,7 @@ export class Api<
|
|
|
11062
11361
|
query: query,
|
|
11063
11362
|
body: data,
|
|
11064
11363
|
secure: true,
|
|
11065
|
-
type:
|
|
11364
|
+
type: "application/json",
|
|
11066
11365
|
format: "json",
|
|
11067
11366
|
...params,
|
|
11068
11367
|
}),
|
|
@@ -11109,7 +11408,7 @@ export class Api<
|
|
|
11109
11408
|
method: "POST",
|
|
11110
11409
|
body: data,
|
|
11111
11410
|
secure: true,
|
|
11112
|
-
type:
|
|
11411
|
+
type: "application/json",
|
|
11113
11412
|
format: "json",
|
|
11114
11413
|
...params,
|
|
11115
11414
|
}),
|
|
@@ -11150,7 +11449,7 @@ export class Api<
|
|
|
11150
11449
|
method: "PUT",
|
|
11151
11450
|
body: data,
|
|
11152
11451
|
secure: true,
|
|
11153
|
-
type:
|
|
11452
|
+
type: "application/json",
|
|
11154
11453
|
format: "json",
|
|
11155
11454
|
...params,
|
|
11156
11455
|
}),
|
|
@@ -11216,7 +11515,7 @@ export class Api<
|
|
|
11216
11515
|
method: "POST",
|
|
11217
11516
|
body: data,
|
|
11218
11517
|
secure: true,
|
|
11219
|
-
type:
|
|
11518
|
+
type: "multipart/form-data",
|
|
11220
11519
|
format: "json",
|
|
11221
11520
|
...params,
|
|
11222
11521
|
}),
|
|
@@ -11324,7 +11623,7 @@ export class Api<
|
|
|
11324
11623
|
query: query,
|
|
11325
11624
|
body: data,
|
|
11326
11625
|
secure: true,
|
|
11327
|
-
type:
|
|
11626
|
+
type: "application/json",
|
|
11328
11627
|
format: "json",
|
|
11329
11628
|
...params,
|
|
11330
11629
|
}),
|
|
@@ -11368,7 +11667,7 @@ export class Api<
|
|
|
11368
11667
|
method: "PUT",
|
|
11369
11668
|
body: data,
|
|
11370
11669
|
secure: true,
|
|
11371
|
-
type:
|
|
11670
|
+
type: "application/json",
|
|
11372
11671
|
format: "json",
|
|
11373
11672
|
...params,
|
|
11374
11673
|
}),
|
|
@@ -11419,7 +11718,7 @@ export class Api<
|
|
|
11419
11718
|
query: query,
|
|
11420
11719
|
body: data,
|
|
11421
11720
|
secure: true,
|
|
11422
|
-
type:
|
|
11721
|
+
type: "application/json",
|
|
11423
11722
|
format: "json",
|
|
11424
11723
|
...params,
|
|
11425
11724
|
}),
|
|
@@ -11463,7 +11762,7 @@ export class Api<
|
|
|
11463
11762
|
method: "POST",
|
|
11464
11763
|
body: data,
|
|
11465
11764
|
secure: true,
|
|
11466
|
-
type:
|
|
11765
|
+
type: "application/json",
|
|
11467
11766
|
format: "json",
|
|
11468
11767
|
...params,
|
|
11469
11768
|
}),
|
|
@@ -11508,7 +11807,7 @@ export class Api<
|
|
|
11508
11807
|
method: "PUT",
|
|
11509
11808
|
body: data,
|
|
11510
11809
|
secure: true,
|
|
11511
|
-
type:
|
|
11810
|
+
type: "application/json",
|
|
11512
11811
|
format: "json",
|
|
11513
11812
|
...params,
|
|
11514
11813
|
}),
|
|
@@ -11596,7 +11895,7 @@ export class Api<
|
|
|
11596
11895
|
method: "PATCH",
|
|
11597
11896
|
body: data,
|
|
11598
11897
|
secure: true,
|
|
11599
|
-
type:
|
|
11898
|
+
type: "application/json",
|
|
11600
11899
|
format: "json",
|
|
11601
11900
|
...params,
|
|
11602
11901
|
}),
|
|
@@ -11617,7 +11916,7 @@ export class Api<
|
|
|
11617
11916
|
method: "POST",
|
|
11618
11917
|
body: data,
|
|
11619
11918
|
secure: true,
|
|
11620
|
-
type:
|
|
11919
|
+
type: "application/json",
|
|
11621
11920
|
format: "json",
|
|
11622
11921
|
...params,
|
|
11623
11922
|
}),
|
|
@@ -11649,7 +11948,7 @@ export class Api<
|
|
|
11649
11948
|
query: query,
|
|
11650
11949
|
body: data,
|
|
11651
11950
|
secure: true,
|
|
11652
|
-
type:
|
|
11951
|
+
type: "application/json",
|
|
11653
11952
|
format: "json",
|
|
11654
11953
|
...params,
|
|
11655
11954
|
}),
|
|
@@ -11680,7 +11979,7 @@ export class Api<
|
|
|
11680
11979
|
query: query,
|
|
11681
11980
|
body: data,
|
|
11682
11981
|
secure: true,
|
|
11683
|
-
type:
|
|
11982
|
+
type: "application/json",
|
|
11684
11983
|
format: "json",
|
|
11685
11984
|
...params,
|
|
11686
11985
|
}),
|
|
@@ -11706,7 +12005,7 @@ export class Api<
|
|
|
11706
12005
|
method: "PATCH",
|
|
11707
12006
|
body: data,
|
|
11708
12007
|
secure: true,
|
|
11709
|
-
type:
|
|
12008
|
+
type: "application/json",
|
|
11710
12009
|
format: "json",
|
|
11711
12010
|
...params,
|
|
11712
12011
|
}),
|
|
@@ -11733,7 +12032,7 @@ export class Api<
|
|
|
11733
12032
|
method: "PATCH",
|
|
11734
12033
|
body: data,
|
|
11735
12034
|
secure: true,
|
|
11736
|
-
type:
|
|
12035
|
+
type: "application/json",
|
|
11737
12036
|
format: "json",
|
|
11738
12037
|
...params,
|
|
11739
12038
|
}),
|
|
@@ -11890,7 +12189,7 @@ export class Api<
|
|
|
11890
12189
|
method: "POST",
|
|
11891
12190
|
body: data,
|
|
11892
12191
|
secure: true,
|
|
11893
|
-
type:
|
|
12192
|
+
type: "application/json",
|
|
11894
12193
|
format: "json",
|
|
11895
12194
|
...params,
|
|
11896
12195
|
}),
|
|
@@ -11950,7 +12249,7 @@ export class Api<
|
|
|
11950
12249
|
method: "POST",
|
|
11951
12250
|
body: data,
|
|
11952
12251
|
secure: true,
|
|
11953
|
-
type:
|
|
12252
|
+
type: "multipart/form-data",
|
|
11954
12253
|
format: "json",
|
|
11955
12254
|
...params,
|
|
11956
12255
|
}),
|
|
@@ -11975,7 +12274,7 @@ export class Api<
|
|
|
11975
12274
|
method: "PATCH",
|
|
11976
12275
|
body: data,
|
|
11977
12276
|
secure: true,
|
|
11978
|
-
type:
|
|
12277
|
+
type: "application/json",
|
|
11979
12278
|
format: "json",
|
|
11980
12279
|
...params,
|
|
11981
12280
|
}),
|
|
@@ -12030,7 +12329,7 @@ export class Api<
|
|
|
12030
12329
|
method: "POST",
|
|
12031
12330
|
body: data,
|
|
12032
12331
|
secure: true,
|
|
12033
|
-
type:
|
|
12332
|
+
type: "multipart/form-data",
|
|
12034
12333
|
format: "json",
|
|
12035
12334
|
...params,
|
|
12036
12335
|
}),
|
|
@@ -12055,7 +12354,7 @@ export class Api<
|
|
|
12055
12354
|
method: "PATCH",
|
|
12056
12355
|
body: data,
|
|
12057
12356
|
secure: true,
|
|
12058
|
-
type:
|
|
12357
|
+
type: "application/json",
|
|
12059
12358
|
format: "json",
|
|
12060
12359
|
...params,
|
|
12061
12360
|
}),
|
|
@@ -12129,7 +12428,7 @@ export class Api<
|
|
|
12129
12428
|
method: "POST",
|
|
12130
12429
|
body: data,
|
|
12131
12430
|
secure: true,
|
|
12132
|
-
type:
|
|
12431
|
+
type: "application/json",
|
|
12133
12432
|
format: "json",
|
|
12134
12433
|
...params,
|
|
12135
12434
|
}),
|
|
@@ -12192,7 +12491,7 @@ export class Api<
|
|
|
12192
12491
|
method: "PUT",
|
|
12193
12492
|
body: data,
|
|
12194
12493
|
secure: true,
|
|
12195
|
-
type:
|
|
12494
|
+
type: "application/json",
|
|
12196
12495
|
format: "json",
|
|
12197
12496
|
...params,
|
|
12198
12497
|
}),
|
|
@@ -12243,7 +12542,7 @@ export class Api<
|
|
|
12243
12542
|
query: query,
|
|
12244
12543
|
body: data,
|
|
12245
12544
|
secure: true,
|
|
12246
|
-
type:
|
|
12545
|
+
type: "application/json",
|
|
12247
12546
|
format: "json",
|
|
12248
12547
|
...params,
|
|
12249
12548
|
}),
|
|
@@ -12271,7 +12570,7 @@ export class Api<
|
|
|
12271
12570
|
method: "PUT",
|
|
12272
12571
|
body: data,
|
|
12273
12572
|
secure: true,
|
|
12274
|
-
type:
|
|
12573
|
+
type: "multipart/form-data",
|
|
12275
12574
|
format: "json",
|
|
12276
12575
|
...params,
|
|
12277
12576
|
}),
|
|
@@ -12354,7 +12653,7 @@ export class Api<
|
|
|
12354
12653
|
method: "POST",
|
|
12355
12654
|
body: data,
|
|
12356
12655
|
secure: true,
|
|
12357
|
-
type:
|
|
12656
|
+
type: "application/json",
|
|
12358
12657
|
format: "json",
|
|
12359
12658
|
...params,
|
|
12360
12659
|
}),
|
|
@@ -12401,7 +12700,7 @@ export class Api<
|
|
|
12401
12700
|
method: "POST",
|
|
12402
12701
|
body: data,
|
|
12403
12702
|
secure: true,
|
|
12404
|
-
type:
|
|
12703
|
+
type: "application/json",
|
|
12405
12704
|
format: "json",
|
|
12406
12705
|
...params,
|
|
12407
12706
|
}),
|
|
@@ -12449,7 +12748,7 @@ export class Api<
|
|
|
12449
12748
|
method: "POST",
|
|
12450
12749
|
body: data,
|
|
12451
12750
|
secure: true,
|
|
12452
|
-
type:
|
|
12751
|
+
type: "application/json",
|
|
12453
12752
|
...params,
|
|
12454
12753
|
}),
|
|
12455
12754
|
|
|
@@ -12514,7 +12813,7 @@ export class Api<
|
|
|
12514
12813
|
method: "PUT",
|
|
12515
12814
|
body: data,
|
|
12516
12815
|
secure: true,
|
|
12517
|
-
type:
|
|
12816
|
+
type: "application/json",
|
|
12518
12817
|
...params,
|
|
12519
12818
|
}),
|
|
12520
12819
|
|
|
@@ -12542,7 +12841,7 @@ export class Api<
|
|
|
12542
12841
|
method: "PUT",
|
|
12543
12842
|
body: data,
|
|
12544
12843
|
secure: true,
|
|
12545
|
-
type:
|
|
12844
|
+
type: "application/json",
|
|
12546
12845
|
...params,
|
|
12547
12846
|
}),
|
|
12548
12847
|
|
|
@@ -12608,7 +12907,7 @@ export class Api<
|
|
|
12608
12907
|
method: "POST",
|
|
12609
12908
|
body: data,
|
|
12610
12909
|
secure: true,
|
|
12611
|
-
type:
|
|
12910
|
+
type: "application/json",
|
|
12612
12911
|
format: "json",
|
|
12613
12912
|
...params,
|
|
12614
12913
|
}),
|
|
@@ -12653,7 +12952,7 @@ export class Api<
|
|
|
12653
12952
|
method: "POST",
|
|
12654
12953
|
body: data,
|
|
12655
12954
|
secure: true,
|
|
12656
|
-
type:
|
|
12955
|
+
type: "application/json",
|
|
12657
12956
|
format: "json",
|
|
12658
12957
|
...params,
|
|
12659
12958
|
}),
|
|
@@ -12702,7 +13001,7 @@ export class Api<
|
|
|
12702
13001
|
method: "PUT",
|
|
12703
13002
|
body: data,
|
|
12704
13003
|
secure: true,
|
|
12705
|
-
type:
|
|
13004
|
+
type: "application/json",
|
|
12706
13005
|
format: "json",
|
|
12707
13006
|
...params,
|
|
12708
13007
|
}),
|
|
@@ -12837,7 +13136,7 @@ export class Api<
|
|
|
12837
13136
|
method: "POST",
|
|
12838
13137
|
body: data,
|
|
12839
13138
|
secure: true,
|
|
12840
|
-
type:
|
|
13139
|
+
type: "application/json",
|
|
12841
13140
|
format: "json",
|
|
12842
13141
|
...params,
|
|
12843
13142
|
}),
|
|
@@ -12871,7 +13170,7 @@ export class Api<
|
|
|
12871
13170
|
query: query,
|
|
12872
13171
|
body: data,
|
|
12873
13172
|
secure: true,
|
|
12874
|
-
type:
|
|
13173
|
+
type: "application/json",
|
|
12875
13174
|
format: "json",
|
|
12876
13175
|
...params,
|
|
12877
13176
|
}),
|
|
@@ -12901,7 +13200,7 @@ export class Api<
|
|
|
12901
13200
|
query: query,
|
|
12902
13201
|
body: data,
|
|
12903
13202
|
secure: true,
|
|
12904
|
-
type:
|
|
13203
|
+
type: "application/json",
|
|
12905
13204
|
format: "json",
|
|
12906
13205
|
...params,
|
|
12907
13206
|
}),
|
|
@@ -12914,7 +13213,7 @@ export class Api<
|
|
|
12914
13213
|
* @summary Download By ID
|
|
12915
13214
|
* @request GET:/api/loans/{loanId}/documents/{documentId}/download
|
|
12916
13215
|
* @secure
|
|
12917
|
-
* @response `200` `
|
|
13216
|
+
* @response `200` `Blob` OK
|
|
12918
13217
|
* @response `404` `ProblemDetails` Not Found
|
|
12919
13218
|
*/
|
|
12920
13219
|
downloadLoanDocument: (
|
|
@@ -12922,7 +13221,7 @@ export class Api<
|
|
|
12922
13221
|
documentId: string,
|
|
12923
13222
|
params: RequestParams = {},
|
|
12924
13223
|
) =>
|
|
12925
|
-
this.request<
|
|
13224
|
+
this.request<Blob, ProblemDetails>({
|
|
12926
13225
|
path: `/api/loans/${loanId}/documents/${documentId}/download`,
|
|
12927
13226
|
method: "GET",
|
|
12928
13227
|
secure: true,
|
|
@@ -12959,7 +13258,7 @@ export class Api<
|
|
|
12959
13258
|
method: "POST",
|
|
12960
13259
|
body: data,
|
|
12961
13260
|
secure: true,
|
|
12962
|
-
type:
|
|
13261
|
+
type: "multipart/form-data",
|
|
12963
13262
|
format: "json",
|
|
12964
13263
|
...params,
|
|
12965
13264
|
}),
|
|
@@ -13009,7 +13308,7 @@ export class Api<
|
|
|
13009
13308
|
method: "POST",
|
|
13010
13309
|
body: data,
|
|
13011
13310
|
secure: true,
|
|
13012
|
-
type:
|
|
13311
|
+
type: "application/json",
|
|
13013
13312
|
format: "json",
|
|
13014
13313
|
...params,
|
|
13015
13314
|
}),
|
|
@@ -13036,7 +13335,7 @@ export class Api<
|
|
|
13036
13335
|
method: "POST",
|
|
13037
13336
|
body: data,
|
|
13038
13337
|
secure: true,
|
|
13039
|
-
type:
|
|
13338
|
+
type: "application/json",
|
|
13040
13339
|
...params,
|
|
13041
13340
|
}),
|
|
13042
13341
|
|
|
@@ -13083,7 +13382,7 @@ export class Api<
|
|
|
13083
13382
|
method: "POST",
|
|
13084
13383
|
body: data,
|
|
13085
13384
|
secure: true,
|
|
13086
|
-
type:
|
|
13385
|
+
type: "application/json",
|
|
13087
13386
|
format: "json",
|
|
13088
13387
|
...params,
|
|
13089
13388
|
}),
|
|
@@ -13128,7 +13427,7 @@ export class Api<
|
|
|
13128
13427
|
method: "POST",
|
|
13129
13428
|
body: data,
|
|
13130
13429
|
secure: true,
|
|
13131
|
-
type:
|
|
13430
|
+
type: "application/json",
|
|
13132
13431
|
format: "json",
|
|
13133
13432
|
...params,
|
|
13134
13433
|
}),
|
|
@@ -13191,7 +13490,7 @@ export class Api<
|
|
|
13191
13490
|
method: "PUT",
|
|
13192
13491
|
body: data,
|
|
13193
13492
|
secure: true,
|
|
13194
|
-
type:
|
|
13493
|
+
type: "application/json",
|
|
13195
13494
|
format: "json",
|
|
13196
13495
|
...params,
|
|
13197
13496
|
}),
|
|
@@ -13242,7 +13541,7 @@ export class Api<
|
|
|
13242
13541
|
query: query,
|
|
13243
13542
|
body: data,
|
|
13244
13543
|
secure: true,
|
|
13245
|
-
type:
|
|
13544
|
+
type: "application/json",
|
|
13246
13545
|
format: "json",
|
|
13247
13546
|
...params,
|
|
13248
13547
|
}),
|
|
@@ -13267,7 +13566,7 @@ export class Api<
|
|
|
13267
13566
|
method: "PUT",
|
|
13268
13567
|
body: data,
|
|
13269
13568
|
secure: true,
|
|
13270
|
-
type:
|
|
13569
|
+
type: "application/json",
|
|
13271
13570
|
format: "json",
|
|
13272
13571
|
...params,
|
|
13273
13572
|
}),
|
|
@@ -13342,7 +13641,7 @@ export class Api<
|
|
|
13342
13641
|
method: "POST",
|
|
13343
13642
|
body: data,
|
|
13344
13643
|
secure: true,
|
|
13345
|
-
type:
|
|
13644
|
+
type: "application/json",
|
|
13346
13645
|
format: "json",
|
|
13347
13646
|
...params,
|
|
13348
13647
|
}),
|
|
@@ -13438,7 +13737,7 @@ export class Api<
|
|
|
13438
13737
|
method: "POST",
|
|
13439
13738
|
body: data,
|
|
13440
13739
|
secure: true,
|
|
13441
|
-
type:
|
|
13740
|
+
type: "application/json",
|
|
13442
13741
|
format: "json",
|
|
13443
13742
|
...params,
|
|
13444
13743
|
}),
|
|
@@ -13472,7 +13771,7 @@ export class Api<
|
|
|
13472
13771
|
query: query,
|
|
13473
13772
|
body: data,
|
|
13474
13773
|
secure: true,
|
|
13475
|
-
type:
|
|
13774
|
+
type: "application/json",
|
|
13476
13775
|
format: "json",
|
|
13477
13776
|
...params,
|
|
13478
13777
|
}),
|
|
@@ -13523,7 +13822,7 @@ export class Api<
|
|
|
13523
13822
|
method: "POST",
|
|
13524
13823
|
body: data,
|
|
13525
13824
|
secure: true,
|
|
13526
|
-
type:
|
|
13825
|
+
type: "application/json",
|
|
13527
13826
|
...params,
|
|
13528
13827
|
}),
|
|
13529
13828
|
|
|
@@ -13549,7 +13848,7 @@ export class Api<
|
|
|
13549
13848
|
method: "POST",
|
|
13550
13849
|
body: data,
|
|
13551
13850
|
secure: true,
|
|
13552
|
-
type:
|
|
13851
|
+
type: "application/json",
|
|
13553
13852
|
...params,
|
|
13554
13853
|
}),
|
|
13555
13854
|
|
|
@@ -13612,7 +13911,7 @@ export class Api<
|
|
|
13612
13911
|
query: query,
|
|
13613
13912
|
body: data,
|
|
13614
13913
|
secure: true,
|
|
13615
|
-
type:
|
|
13914
|
+
type: "application/json",
|
|
13616
13915
|
format: "json",
|
|
13617
13916
|
...params,
|
|
13618
13917
|
}),
|
|
@@ -13657,7 +13956,7 @@ export class Api<
|
|
|
13657
13956
|
method: "POST",
|
|
13658
13957
|
body: data,
|
|
13659
13958
|
secure: true,
|
|
13660
|
-
type:
|
|
13959
|
+
type: "application/json",
|
|
13661
13960
|
format: "json",
|
|
13662
13961
|
...params,
|
|
13663
13962
|
}),
|
|
@@ -13711,7 +14010,7 @@ export class Api<
|
|
|
13711
14010
|
query: query,
|
|
13712
14011
|
body: data,
|
|
13713
14012
|
secure: true,
|
|
13714
|
-
type:
|
|
14013
|
+
type: "application/json",
|
|
13715
14014
|
format: "json",
|
|
13716
14015
|
...params,
|
|
13717
14016
|
}),
|
|
@@ -13744,7 +14043,7 @@ export class Api<
|
|
|
13744
14043
|
query: query,
|
|
13745
14044
|
body: data,
|
|
13746
14045
|
secure: true,
|
|
13747
|
-
type:
|
|
14046
|
+
type: "application/json",
|
|
13748
14047
|
format: "json",
|
|
13749
14048
|
...params,
|
|
13750
14049
|
}),
|
|
@@ -13790,7 +14089,7 @@ export class Api<
|
|
|
13790
14089
|
method: "PUT",
|
|
13791
14090
|
body: data,
|
|
13792
14091
|
secure: true,
|
|
13793
|
-
type:
|
|
14092
|
+
type: "application/json",
|
|
13794
14093
|
format: "json",
|
|
13795
14094
|
...params,
|
|
13796
14095
|
}),
|
|
@@ -13891,7 +14190,7 @@ export class Api<
|
|
|
13891
14190
|
method: "POST",
|
|
13892
14191
|
body: data,
|
|
13893
14192
|
secure: true,
|
|
13894
|
-
type:
|
|
14193
|
+
type: "application/json",
|
|
13895
14194
|
format: "json",
|
|
13896
14195
|
...params,
|
|
13897
14196
|
}),
|
|
@@ -13924,7 +14223,7 @@ export class Api<
|
|
|
13924
14223
|
query: query,
|
|
13925
14224
|
body: data,
|
|
13926
14225
|
secure: true,
|
|
13927
|
-
type:
|
|
14226
|
+
type: "application/json",
|
|
13928
14227
|
format: "json",
|
|
13929
14228
|
...params,
|
|
13930
14229
|
}),
|
|
@@ -13954,7 +14253,7 @@ export class Api<
|
|
|
13954
14253
|
method: "PATCH",
|
|
13955
14254
|
body: data,
|
|
13956
14255
|
secure: true,
|
|
13957
|
-
type:
|
|
14256
|
+
type: "application/json",
|
|
13958
14257
|
format: "json",
|
|
13959
14258
|
...params,
|
|
13960
14259
|
}),
|
|
@@ -14064,7 +14363,7 @@ export class Api<
|
|
|
14064
14363
|
method: "POST",
|
|
14065
14364
|
body: data,
|
|
14066
14365
|
secure: true,
|
|
14067
|
-
type:
|
|
14366
|
+
type: "application/json",
|
|
14068
14367
|
format: "json",
|
|
14069
14368
|
...params,
|
|
14070
14369
|
}),
|
|
@@ -14100,7 +14399,7 @@ export class Api<
|
|
|
14100
14399
|
query: query,
|
|
14101
14400
|
body: data,
|
|
14102
14401
|
secure: true,
|
|
14103
|
-
type:
|
|
14402
|
+
type: "application/json",
|
|
14104
14403
|
format: "json",
|
|
14105
14404
|
...params,
|
|
14106
14405
|
}),
|
|
@@ -14152,7 +14451,7 @@ export class Api<
|
|
|
14152
14451
|
method: "POST",
|
|
14153
14452
|
body: data,
|
|
14154
14453
|
secure: true,
|
|
14155
|
-
type:
|
|
14454
|
+
type: "application/json",
|
|
14156
14455
|
format: "json",
|
|
14157
14456
|
...params,
|
|
14158
14457
|
}),
|
|
@@ -14180,7 +14479,7 @@ export class Api<
|
|
|
14180
14479
|
method: "PUT",
|
|
14181
14480
|
body: data,
|
|
14182
14481
|
secure: true,
|
|
14183
|
-
type:
|
|
14482
|
+
type: "application/json",
|
|
14184
14483
|
format: "json",
|
|
14185
14484
|
...params,
|
|
14186
14485
|
}),
|
|
@@ -14239,7 +14538,7 @@ export class Api<
|
|
|
14239
14538
|
method: "POST",
|
|
14240
14539
|
body: data,
|
|
14241
14540
|
secure: true,
|
|
14242
|
-
type:
|
|
14541
|
+
type: "multipart/form-data",
|
|
14243
14542
|
format: "json",
|
|
14244
14543
|
...params,
|
|
14245
14544
|
}),
|
|
@@ -14312,7 +14611,7 @@ export class Api<
|
|
|
14312
14611
|
method: "POST",
|
|
14313
14612
|
body: data,
|
|
14314
14613
|
secure: true,
|
|
14315
|
-
type:
|
|
14614
|
+
type: "application/json",
|
|
14316
14615
|
...params,
|
|
14317
14616
|
}),
|
|
14318
14617
|
|
|
@@ -14344,7 +14643,7 @@ export class Api<
|
|
|
14344
14643
|
query: query,
|
|
14345
14644
|
body: data,
|
|
14346
14645
|
secure: true,
|
|
14347
|
-
type:
|
|
14646
|
+
type: "application/json",
|
|
14348
14647
|
format: "json",
|
|
14349
14648
|
...params,
|
|
14350
14649
|
}),
|
|
@@ -14369,7 +14668,7 @@ export class Api<
|
|
|
14369
14668
|
method: "POST",
|
|
14370
14669
|
body: data,
|
|
14371
14670
|
secure: true,
|
|
14372
|
-
type:
|
|
14671
|
+
type: "application/json",
|
|
14373
14672
|
format: "json",
|
|
14374
14673
|
...params,
|
|
14375
14674
|
}),
|
|
@@ -14456,7 +14755,7 @@ export class Api<
|
|
|
14456
14755
|
method: "POST",
|
|
14457
14756
|
body: data,
|
|
14458
14757
|
secure: true,
|
|
14459
|
-
type:
|
|
14758
|
+
type: "application/json",
|
|
14460
14759
|
format: "json",
|
|
14461
14760
|
...params,
|
|
14462
14761
|
}),
|
|
@@ -14482,7 +14781,7 @@ export class Api<
|
|
|
14482
14781
|
method: "POST",
|
|
14483
14782
|
body: data,
|
|
14484
14783
|
secure: true,
|
|
14485
|
-
type:
|
|
14784
|
+
type: "application/json",
|
|
14486
14785
|
format: "json",
|
|
14487
14786
|
...params,
|
|
14488
14787
|
}),
|
|
@@ -14509,7 +14808,7 @@ export class Api<
|
|
|
14509
14808
|
method: "PUT",
|
|
14510
14809
|
body: data,
|
|
14511
14810
|
secure: true,
|
|
14512
|
-
type:
|
|
14811
|
+
type: "application/json",
|
|
14513
14812
|
format: "json",
|
|
14514
14813
|
...params,
|
|
14515
14814
|
}),
|
|
@@ -14626,7 +14925,7 @@ export class Api<
|
|
|
14626
14925
|
method: "POST",
|
|
14627
14926
|
body: data,
|
|
14628
14927
|
secure: true,
|
|
14629
|
-
type:
|
|
14928
|
+
type: "application/json",
|
|
14630
14929
|
format: "json",
|
|
14631
14930
|
...params,
|
|
14632
14931
|
}),
|
|
@@ -14704,7 +15003,7 @@ export class Api<
|
|
|
14704
15003
|
query: query,
|
|
14705
15004
|
body: data,
|
|
14706
15005
|
secure: true,
|
|
14707
|
-
type:
|
|
15006
|
+
type: "application/json",
|
|
14708
15007
|
format: "json",
|
|
14709
15008
|
...params,
|
|
14710
15009
|
}),
|
|
@@ -14748,7 +15047,7 @@ export class Api<
|
|
|
14748
15047
|
method: "POST",
|
|
14749
15048
|
body: data,
|
|
14750
15049
|
secure: true,
|
|
14751
|
-
type:
|
|
15050
|
+
type: "application/json",
|
|
14752
15051
|
format: "json",
|
|
14753
15052
|
...params,
|
|
14754
15053
|
}),
|
|
@@ -14795,7 +15094,7 @@ export class Api<
|
|
|
14795
15094
|
method: "PUT",
|
|
14796
15095
|
body: data,
|
|
14797
15096
|
secure: true,
|
|
14798
|
-
type:
|
|
15097
|
+
type: "application/json",
|
|
14799
15098
|
format: "json",
|
|
14800
15099
|
...params,
|
|
14801
15100
|
}),
|
|
@@ -14841,7 +15140,7 @@ export class Api<
|
|
|
14841
15140
|
method: "POST",
|
|
14842
15141
|
body: data,
|
|
14843
15142
|
secure: true,
|
|
14844
|
-
type:
|
|
15143
|
+
type: "application/json",
|
|
14845
15144
|
format: "json",
|
|
14846
15145
|
...params,
|
|
14847
15146
|
}),
|
|
@@ -14866,7 +15165,7 @@ export class Api<
|
|
|
14866
15165
|
method: "POST",
|
|
14867
15166
|
body: data,
|
|
14868
15167
|
secure: true,
|
|
14869
|
-
type:
|
|
15168
|
+
type: "application/json",
|
|
14870
15169
|
format: "json",
|
|
14871
15170
|
...params,
|
|
14872
15171
|
}),
|
|
@@ -14891,7 +15190,7 @@ export class Api<
|
|
|
14891
15190
|
method: "POST",
|
|
14892
15191
|
body: data,
|
|
14893
15192
|
secure: true,
|
|
14894
|
-
type:
|
|
15193
|
+
type: "application/json",
|
|
14895
15194
|
format: "json",
|
|
14896
15195
|
...params,
|
|
14897
15196
|
}),
|
|
@@ -14916,7 +15215,7 @@ export class Api<
|
|
|
14916
15215
|
method: "POST",
|
|
14917
15216
|
body: data,
|
|
14918
15217
|
secure: true,
|
|
14919
|
-
type:
|
|
15218
|
+
type: "application/json",
|
|
14920
15219
|
format: "json",
|
|
14921
15220
|
...params,
|
|
14922
15221
|
}),
|
|
@@ -14941,7 +15240,7 @@ export class Api<
|
|
|
14941
15240
|
method: "POST",
|
|
14942
15241
|
body: data,
|
|
14943
15242
|
secure: true,
|
|
14944
|
-
type:
|
|
15243
|
+
type: "application/json",
|
|
14945
15244
|
format: "json",
|
|
14946
15245
|
...params,
|
|
14947
15246
|
}),
|
|
@@ -14967,7 +15266,7 @@ export class Api<
|
|
|
14967
15266
|
method: "POST",
|
|
14968
15267
|
body: data,
|
|
14969
15268
|
secure: true,
|
|
14970
|
-
type:
|
|
15269
|
+
type: "application/json",
|
|
14971
15270
|
...params,
|
|
14972
15271
|
}),
|
|
14973
15272
|
|
|
@@ -14992,7 +15291,7 @@ export class Api<
|
|
|
14992
15291
|
method: "POST",
|
|
14993
15292
|
body: data,
|
|
14994
15293
|
secure: true,
|
|
14995
|
-
type:
|
|
15294
|
+
type: "application/json",
|
|
14996
15295
|
...params,
|
|
14997
15296
|
}),
|
|
14998
15297
|
|
|
@@ -15041,7 +15340,7 @@ export class Api<
|
|
|
15041
15340
|
method: "POST",
|
|
15042
15341
|
body: data,
|
|
15043
15342
|
secure: true,
|
|
15044
|
-
type:
|
|
15343
|
+
type: "application/json",
|
|
15045
15344
|
format: "json",
|
|
15046
15345
|
...params,
|
|
15047
15346
|
}),
|
|
@@ -15074,7 +15373,7 @@ export class Api<
|
|
|
15074
15373
|
query: query,
|
|
15075
15374
|
body: data,
|
|
15076
15375
|
secure: true,
|
|
15077
|
-
type:
|
|
15376
|
+
type: "application/json",
|
|
15078
15377
|
format: "json",
|
|
15079
15378
|
...params,
|
|
15080
15379
|
}),
|
|
@@ -15119,7 +15418,7 @@ export class Api<
|
|
|
15119
15418
|
method: "PUT",
|
|
15120
15419
|
body: data,
|
|
15121
15420
|
secure: true,
|
|
15122
|
-
type:
|
|
15421
|
+
type: "application/json",
|
|
15123
15422
|
format: "json",
|
|
15124
15423
|
...params,
|
|
15125
15424
|
}),
|
|
@@ -15203,7 +15502,7 @@ export class Api<
|
|
|
15203
15502
|
method: "POST",
|
|
15204
15503
|
body: data,
|
|
15205
15504
|
secure: true,
|
|
15206
|
-
type:
|
|
15505
|
+
type: "application/json",
|
|
15207
15506
|
format: "json",
|
|
15208
15507
|
...params,
|
|
15209
15508
|
}),
|
|
@@ -15252,7 +15551,7 @@ export class Api<
|
|
|
15252
15551
|
method: "PUT",
|
|
15253
15552
|
body: data,
|
|
15254
15553
|
secure: true,
|
|
15255
|
-
type:
|
|
15554
|
+
type: "application/json",
|
|
15256
15555
|
format: "json",
|
|
15257
15556
|
...params,
|
|
15258
15557
|
}),
|
|
@@ -15294,16 +15593,7 @@ export class Api<
|
|
|
15294
15593
|
query?: {
|
|
15295
15594
|
showAll?: boolean;
|
|
15296
15595
|
/** @default "Realtor" */
|
|
15297
|
-
role?:
|
|
15298
|
-
| "Borrower"
|
|
15299
|
-
| "LoanOfficer"
|
|
15300
|
-
| "Admin"
|
|
15301
|
-
| "SuperAdmin"
|
|
15302
|
-
| "Realtor"
|
|
15303
|
-
| "SettlementAgent"
|
|
15304
|
-
| "LoanProcessor"
|
|
15305
|
-
| "LoanOfficerAssistant"
|
|
15306
|
-
| "SystemAdmin";
|
|
15596
|
+
role?: GetPartnersParamsRoleEnum;
|
|
15307
15597
|
/** @format int32 */
|
|
15308
15598
|
pageSize?: number;
|
|
15309
15599
|
/** @format int32 */
|
|
@@ -15350,7 +15640,7 @@ export class Api<
|
|
|
15350
15640
|
query: query,
|
|
15351
15641
|
body: data,
|
|
15352
15642
|
secure: true,
|
|
15353
|
-
type:
|
|
15643
|
+
type: "application/json",
|
|
15354
15644
|
format: "json",
|
|
15355
15645
|
...params,
|
|
15356
15646
|
}),
|
|
@@ -15395,7 +15685,7 @@ export class Api<
|
|
|
15395
15685
|
method: "POST",
|
|
15396
15686
|
body: data,
|
|
15397
15687
|
secure: true,
|
|
15398
|
-
type:
|
|
15688
|
+
type: "application/json",
|
|
15399
15689
|
format: "json",
|
|
15400
15690
|
...params,
|
|
15401
15691
|
}),
|
|
@@ -15449,7 +15739,7 @@ export class Api<
|
|
|
15449
15739
|
query: query,
|
|
15450
15740
|
body: data,
|
|
15451
15741
|
secure: true,
|
|
15452
|
-
type:
|
|
15742
|
+
type: "application/json",
|
|
15453
15743
|
format: "json",
|
|
15454
15744
|
...params,
|
|
15455
15745
|
}),
|
|
@@ -15494,7 +15784,7 @@ export class Api<
|
|
|
15494
15784
|
method: "POST",
|
|
15495
15785
|
body: data,
|
|
15496
15786
|
secure: true,
|
|
15497
|
-
type:
|
|
15787
|
+
type: "application/json",
|
|
15498
15788
|
format: "json",
|
|
15499
15789
|
...params,
|
|
15500
15790
|
}),
|
|
@@ -15546,7 +15836,7 @@ export class Api<
|
|
|
15546
15836
|
method: "POST",
|
|
15547
15837
|
body: data,
|
|
15548
15838
|
secure: true,
|
|
15549
|
-
type:
|
|
15839
|
+
type: "application/json",
|
|
15550
15840
|
format: "json",
|
|
15551
15841
|
...params,
|
|
15552
15842
|
}),
|
|
@@ -15603,7 +15893,7 @@ export class Api<
|
|
|
15603
15893
|
query: query,
|
|
15604
15894
|
body: data,
|
|
15605
15895
|
secure: true,
|
|
15606
|
-
type:
|
|
15896
|
+
type: "application/json",
|
|
15607
15897
|
format: "json",
|
|
15608
15898
|
...params,
|
|
15609
15899
|
}),
|
|
@@ -15639,7 +15929,7 @@ export class Api<
|
|
|
15639
15929
|
* @response `404` `ProblemDetails` Not Found
|
|
15640
15930
|
*/
|
|
15641
15931
|
getSamlMetadata: (
|
|
15642
|
-
sSoIntegration:
|
|
15932
|
+
sSoIntegration: GetSamlMetadataParamsEnum,
|
|
15643
15933
|
ssoIntegration: string,
|
|
15644
15934
|
params: RequestParams = {},
|
|
15645
15935
|
) =>
|
|
@@ -15661,7 +15951,7 @@ export class Api<
|
|
|
15661
15951
|
* @response `200` `File` OK
|
|
15662
15952
|
*/
|
|
15663
15953
|
createOrReplaceSamlMetadata: (
|
|
15664
|
-
sSoIntegration:
|
|
15954
|
+
sSoIntegration: CreateOrReplaceSamlMetadataParamsEnum,
|
|
15665
15955
|
ssoIntegration: string,
|
|
15666
15956
|
params: RequestParams = {},
|
|
15667
15957
|
) =>
|
|
@@ -15786,7 +16076,7 @@ export class Api<
|
|
|
15786
16076
|
method: "POST",
|
|
15787
16077
|
body: data,
|
|
15788
16078
|
secure: true,
|
|
15789
|
-
type:
|
|
16079
|
+
type: "application/json",
|
|
15790
16080
|
format: "json",
|
|
15791
16081
|
...params,
|
|
15792
16082
|
}),
|
|
@@ -15834,7 +16124,7 @@ export class Api<
|
|
|
15834
16124
|
method: "POST",
|
|
15835
16125
|
body: data,
|
|
15836
16126
|
secure: true,
|
|
15837
|
-
type:
|
|
16127
|
+
type: "application/json",
|
|
15838
16128
|
format: "json",
|
|
15839
16129
|
...params,
|
|
15840
16130
|
}),
|
|
@@ -15886,7 +16176,7 @@ export class Api<
|
|
|
15886
16176
|
method: "POST",
|
|
15887
16177
|
body: data,
|
|
15888
16178
|
secure: true,
|
|
15889
|
-
type:
|
|
16179
|
+
type: "application/json",
|
|
15890
16180
|
format: "json",
|
|
15891
16181
|
...params,
|
|
15892
16182
|
}),
|
|
@@ -15928,7 +16218,7 @@ export class Api<
|
|
|
15928
16218
|
method: "PUT",
|
|
15929
16219
|
body: data,
|
|
15930
16220
|
secure: true,
|
|
15931
|
-
type:
|
|
16221
|
+
type: "application/json",
|
|
15932
16222
|
format: "json",
|
|
15933
16223
|
...params,
|
|
15934
16224
|
}),
|
|
@@ -15980,7 +16270,7 @@ export class Api<
|
|
|
15980
16270
|
query: query,
|
|
15981
16271
|
body: data,
|
|
15982
16272
|
secure: true,
|
|
15983
|
-
type:
|
|
16273
|
+
type: "application/json",
|
|
15984
16274
|
format: "json",
|
|
15985
16275
|
...params,
|
|
15986
16276
|
}),
|
|
@@ -16003,7 +16293,7 @@ export class Api<
|
|
|
16003
16293
|
method: "POST",
|
|
16004
16294
|
body: data,
|
|
16005
16295
|
secure: true,
|
|
16006
|
-
type:
|
|
16296
|
+
type: "application/json",
|
|
16007
16297
|
...params,
|
|
16008
16298
|
}),
|
|
16009
16299
|
|
|
@@ -16036,7 +16326,7 @@ export class Api<
|
|
|
16036
16326
|
query: query,
|
|
16037
16327
|
body: data,
|
|
16038
16328
|
secure: true,
|
|
16039
|
-
type:
|
|
16329
|
+
type: "application/json",
|
|
16040
16330
|
format: "json",
|
|
16041
16331
|
...params,
|
|
16042
16332
|
}),
|
|
@@ -16080,7 +16370,7 @@ export class Api<
|
|
|
16080
16370
|
method: "POST",
|
|
16081
16371
|
body: data,
|
|
16082
16372
|
secure: true,
|
|
16083
|
-
type:
|
|
16373
|
+
type: "application/json",
|
|
16084
16374
|
format: "json",
|
|
16085
16375
|
...params,
|
|
16086
16376
|
}),
|
|
@@ -16104,7 +16394,7 @@ export class Api<
|
|
|
16104
16394
|
method: "PUT",
|
|
16105
16395
|
body: data,
|
|
16106
16396
|
secure: true,
|
|
16107
|
-
type:
|
|
16397
|
+
type: "application/json",
|
|
16108
16398
|
format: "json",
|
|
16109
16399
|
...params,
|
|
16110
16400
|
}),
|
|
@@ -16147,7 +16437,7 @@ export class Api<
|
|
|
16147
16437
|
method: "POST",
|
|
16148
16438
|
body: data,
|
|
16149
16439
|
secure: true,
|
|
16150
|
-
type:
|
|
16440
|
+
type: "application/json",
|
|
16151
16441
|
format: "json",
|
|
16152
16442
|
...params,
|
|
16153
16443
|
}),
|
|
@@ -16199,7 +16489,7 @@ export class Api<
|
|
|
16199
16489
|
query: query,
|
|
16200
16490
|
body: data,
|
|
16201
16491
|
secure: true,
|
|
16202
|
-
type:
|
|
16492
|
+
type: "application/json",
|
|
16203
16493
|
format: "json",
|
|
16204
16494
|
...params,
|
|
16205
16495
|
}),
|
|
@@ -16373,7 +16663,7 @@ export class Api<
|
|
|
16373
16663
|
method: "POST",
|
|
16374
16664
|
body: data,
|
|
16375
16665
|
secure: true,
|
|
16376
|
-
type:
|
|
16666
|
+
type: "application/json",
|
|
16377
16667
|
format: "json",
|
|
16378
16668
|
...params,
|
|
16379
16669
|
}),
|
|
@@ -16472,7 +16762,7 @@ export class Api<
|
|
|
16472
16762
|
method: "POST",
|
|
16473
16763
|
body: data,
|
|
16474
16764
|
secure: true,
|
|
16475
|
-
type:
|
|
16765
|
+
type: "application/json",
|
|
16476
16766
|
format: "json",
|
|
16477
16767
|
...params,
|
|
16478
16768
|
}),
|
|
@@ -16538,7 +16828,7 @@ export class Api<
|
|
|
16538
16828
|
method: "POST",
|
|
16539
16829
|
body: data,
|
|
16540
16830
|
secure: true,
|
|
16541
|
-
type:
|
|
16831
|
+
type: "application/json",
|
|
16542
16832
|
format: "json",
|
|
16543
16833
|
...params,
|
|
16544
16834
|
}),
|
|
@@ -16609,7 +16899,7 @@ export class Api<
|
|
|
16609
16899
|
query: query,
|
|
16610
16900
|
body: data,
|
|
16611
16901
|
secure: true,
|
|
16612
|
-
type:
|
|
16902
|
+
type: "application/json",
|
|
16613
16903
|
format: "json",
|
|
16614
16904
|
...params,
|
|
16615
16905
|
}),
|
|
@@ -16706,7 +16996,7 @@ export class Api<
|
|
|
16706
16996
|
method: "PUT",
|
|
16707
16997
|
body: data,
|
|
16708
16998
|
secure: true,
|
|
16709
|
-
type:
|
|
16999
|
+
type: "application/json",
|
|
16710
17000
|
format: "json",
|
|
16711
17001
|
...params,
|
|
16712
17002
|
}),
|
|
@@ -16748,7 +17038,7 @@ export class Api<
|
|
|
16748
17038
|
method: "POST",
|
|
16749
17039
|
body: data,
|
|
16750
17040
|
secure: true,
|
|
16751
|
-
type:
|
|
17041
|
+
type: "application/json",
|
|
16752
17042
|
format: "json",
|
|
16753
17043
|
...params,
|
|
16754
17044
|
}),
|
|
@@ -16774,7 +17064,7 @@ export class Api<
|
|
|
16774
17064
|
method: "POST",
|
|
16775
17065
|
body: data,
|
|
16776
17066
|
secure: true,
|
|
16777
|
-
type:
|
|
17067
|
+
type: "application/json",
|
|
16778
17068
|
...params,
|
|
16779
17069
|
}),
|
|
16780
17070
|
|
|
@@ -16799,7 +17089,7 @@ export class Api<
|
|
|
16799
17089
|
method: "POST",
|
|
16800
17090
|
body: data,
|
|
16801
17091
|
secure: true,
|
|
16802
|
-
type:
|
|
17092
|
+
type: "application/json",
|
|
16803
17093
|
...params,
|
|
16804
17094
|
}),
|
|
16805
17095
|
|
|
@@ -16885,7 +17175,7 @@ export class Api<
|
|
|
16885
17175
|
method: "POST",
|
|
16886
17176
|
body: data,
|
|
16887
17177
|
secure: true,
|
|
16888
|
-
type:
|
|
17178
|
+
type: "application/json",
|
|
16889
17179
|
...params,
|
|
16890
17180
|
}),
|
|
16891
17181
|
|
|
@@ -16925,7 +17215,7 @@ export class Api<
|
|
|
16925
17215
|
method: "POST",
|
|
16926
17216
|
body: data,
|
|
16927
17217
|
secure: true,
|
|
16928
|
-
type:
|
|
17218
|
+
type: "application/json",
|
|
16929
17219
|
...params,
|
|
16930
17220
|
}),
|
|
16931
17221
|
|
|
@@ -17008,7 +17298,7 @@ export class Api<
|
|
|
17008
17298
|
method: "POST",
|
|
17009
17299
|
body: data,
|
|
17010
17300
|
secure: true,
|
|
17011
|
-
type:
|
|
17301
|
+
type: "application/json",
|
|
17012
17302
|
...params,
|
|
17013
17303
|
}),
|
|
17014
17304
|
|
|
@@ -17100,7 +17390,7 @@ export class Api<
|
|
|
17100
17390
|
method: "POST",
|
|
17101
17391
|
body: data,
|
|
17102
17392
|
secure: true,
|
|
17103
|
-
type:
|
|
17393
|
+
type: "application/json",
|
|
17104
17394
|
format: "json",
|
|
17105
17395
|
...params,
|
|
17106
17396
|
}),
|
|
@@ -17133,7 +17423,7 @@ export class Api<
|
|
|
17133
17423
|
query: query,
|
|
17134
17424
|
body: data,
|
|
17135
17425
|
secure: true,
|
|
17136
|
-
type:
|
|
17426
|
+
type: "application/json",
|
|
17137
17427
|
format: "json",
|
|
17138
17428
|
...params,
|
|
17139
17429
|
}),
|
|
@@ -17154,7 +17444,7 @@ export class Api<
|
|
|
17154
17444
|
method: "POST",
|
|
17155
17445
|
body: data,
|
|
17156
17446
|
secure: true,
|
|
17157
|
-
type:
|
|
17447
|
+
type: "application/json",
|
|
17158
17448
|
format: "json",
|
|
17159
17449
|
...params,
|
|
17160
17450
|
}),
|
|
@@ -17176,7 +17466,7 @@ export class Api<
|
|
|
17176
17466
|
method: "POST",
|
|
17177
17467
|
body: data,
|
|
17178
17468
|
secure: true,
|
|
17179
|
-
type:
|
|
17469
|
+
type: "application/json",
|
|
17180
17470
|
format: "json",
|
|
17181
17471
|
...params,
|
|
17182
17472
|
}),
|
|
@@ -17202,7 +17492,7 @@ export class Api<
|
|
|
17202
17492
|
method: "PUT",
|
|
17203
17493
|
body: data,
|
|
17204
17494
|
secure: true,
|
|
17205
|
-
type:
|
|
17495
|
+
type: "application/json",
|
|
17206
17496
|
format: "json",
|
|
17207
17497
|
...params,
|
|
17208
17498
|
}),
|
|
@@ -17268,7 +17558,7 @@ export class Api<
|
|
|
17268
17558
|
method: "POST",
|
|
17269
17559
|
body: data,
|
|
17270
17560
|
secure: true,
|
|
17271
|
-
type:
|
|
17561
|
+
type: "application/json",
|
|
17272
17562
|
...params,
|
|
17273
17563
|
}),
|
|
17274
17564
|
|
|
@@ -17289,7 +17579,7 @@ export class Api<
|
|
|
17289
17579
|
method: "POST",
|
|
17290
17580
|
body: data,
|
|
17291
17581
|
secure: true,
|
|
17292
|
-
type:
|
|
17582
|
+
type: "application/json",
|
|
17293
17583
|
...params,
|
|
17294
17584
|
}),
|
|
17295
17585
|
|
|
@@ -17314,7 +17604,7 @@ export class Api<
|
|
|
17314
17604
|
method: "POST",
|
|
17315
17605
|
body: data,
|
|
17316
17606
|
secure: true,
|
|
17317
|
-
type:
|
|
17607
|
+
type: "application/json",
|
|
17318
17608
|
...params,
|
|
17319
17609
|
}),
|
|
17320
17610
|
|
|
@@ -17338,7 +17628,7 @@ export class Api<
|
|
|
17338
17628
|
method: "POST",
|
|
17339
17629
|
body: data,
|
|
17340
17630
|
secure: true,
|
|
17341
|
-
type:
|
|
17631
|
+
type: "application/json",
|
|
17342
17632
|
...params,
|
|
17343
17633
|
}),
|
|
17344
17634
|
|
|
@@ -17381,7 +17671,7 @@ export class Api<
|
|
|
17381
17671
|
method: "PUT",
|
|
17382
17672
|
body: data,
|
|
17383
17673
|
secure: true,
|
|
17384
|
-
type:
|
|
17674
|
+
type: "application/json",
|
|
17385
17675
|
...params,
|
|
17386
17676
|
}),
|
|
17387
17677
|
|
|
@@ -17421,7 +17711,7 @@ export class Api<
|
|
|
17421
17711
|
method: "PUT",
|
|
17422
17712
|
body: data,
|
|
17423
17713
|
secure: true,
|
|
17424
|
-
type:
|
|
17714
|
+
type: "application/json",
|
|
17425
17715
|
format: "json",
|
|
17426
17716
|
...params,
|
|
17427
17717
|
}),
|
|
@@ -17445,7 +17735,7 @@ export class Api<
|
|
|
17445
17735
|
method: "PUT",
|
|
17446
17736
|
body: data,
|
|
17447
17737
|
secure: true,
|
|
17448
|
-
type:
|
|
17738
|
+
type: "application/json",
|
|
17449
17739
|
format: "json",
|
|
17450
17740
|
...params,
|
|
17451
17741
|
}),
|
|
@@ -17522,7 +17812,7 @@ export class Api<
|
|
|
17522
17812
|
method: "POST",
|
|
17523
17813
|
body: data,
|
|
17524
17814
|
secure: true,
|
|
17525
|
-
type:
|
|
17815
|
+
type: "application/json",
|
|
17526
17816
|
...params,
|
|
17527
17817
|
}),
|
|
17528
17818
|
|
|
@@ -17542,7 +17832,7 @@ export class Api<
|
|
|
17542
17832
|
method: "POST",
|
|
17543
17833
|
body: data,
|
|
17544
17834
|
secure: true,
|
|
17545
|
-
type:
|
|
17835
|
+
type: "application/json",
|
|
17546
17836
|
format: "json",
|
|
17547
17837
|
...params,
|
|
17548
17838
|
}),
|