@royalinvest/dto 0.71.9 → 0.71.11
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.
|
@@ -169,6 +169,7 @@ export interface ICreditCheckResult {
|
|
|
169
169
|
flags: string[];
|
|
170
170
|
created_at: Date;
|
|
171
171
|
reason_codes?: TReason[];
|
|
172
|
+
credit_check_output?: ICreditCheckOutput;
|
|
172
173
|
}
|
|
173
174
|
export interface ICreditCheckReportFile {
|
|
174
175
|
id: string;
|
|
@@ -235,7 +236,7 @@ export interface ICreditCheckForDashboard {
|
|
|
235
236
|
inquiries: number;
|
|
236
237
|
trades: number;
|
|
237
238
|
flags?: string[];
|
|
238
|
-
creditCheckOutput
|
|
239
|
+
creditCheckOutput?: ICreditCheckOutput;
|
|
239
240
|
report_json_url?: string;
|
|
240
241
|
raw_xml_url?: string;
|
|
241
242
|
reason_codes?: TReason[];
|
package/package.json
CHANGED