@royalinvest/dto 0.71.6 → 0.71.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -18,7 +18,6 @@ export type TReason = {
|
|
|
18
18
|
export type TScreeningServiceType = "credit_check" | "screening_questionnaire";
|
|
19
19
|
export interface ICreateDraftCreditCheckRequest {
|
|
20
20
|
request_type: TCreditCheckInitiated;
|
|
21
|
-
bureau: TBureau;
|
|
22
21
|
screening_questionnaire_id?: string;
|
|
23
22
|
service_type: TScreeningServiceType;
|
|
24
23
|
}
|
|
@@ -108,7 +107,6 @@ export interface ISubjectAddress extends IAddress {
|
|
|
108
107
|
export interface ICreditCheckSubjectRequest {
|
|
109
108
|
id: string;
|
|
110
109
|
credit_check_request_id: string;
|
|
111
|
-
bureau: TBureau;
|
|
112
110
|
first_name: string;
|
|
113
111
|
last_name: string;
|
|
114
112
|
middle_name?: string;
|
|
@@ -142,7 +140,6 @@ export interface ICreditCheckConsentResponse {
|
|
|
142
140
|
export interface ICreditCheckSubjectResponse {
|
|
143
141
|
id: string;
|
|
144
142
|
credit_check_request_id: string;
|
|
145
|
-
bureau: TBureau;
|
|
146
143
|
first_name: string;
|
|
147
144
|
last_name: string;
|
|
148
145
|
middle_name?: string;
|
|
@@ -160,6 +157,7 @@ export interface ICreditCheckSubjectResponse {
|
|
|
160
157
|
export interface ICreditCheckResult {
|
|
161
158
|
id: string;
|
|
162
159
|
subject_id: string;
|
|
160
|
+
bureau: TBureau;
|
|
163
161
|
status: TCreditCheckStatus;
|
|
164
162
|
score: number;
|
|
165
163
|
tier?: TCreditScoreTier;
|
|
@@ -227,6 +225,7 @@ export interface ICreditCheckFailed {
|
|
|
227
225
|
export interface ICreditCheckForDashboard {
|
|
228
226
|
credit_check_subject_id: string;
|
|
229
227
|
bureau_reference_id: string;
|
|
228
|
+
bureau: TBureau;
|
|
230
229
|
status: TCreditCheckStatus;
|
|
231
230
|
score: number;
|
|
232
231
|
tier?: TCreditScoreTier;
|
package/package.json
CHANGED