@royalinvest/dto 0.71.5 → 0.71.7
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;
|
|
@@ -227,6 +224,7 @@ export interface ICreditCheckFailed {
|
|
|
227
224
|
export interface ICreditCheckForDashboard {
|
|
228
225
|
credit_check_subject_id: string;
|
|
229
226
|
bureau_reference_id: string;
|
|
227
|
+
bureau: TBureau;
|
|
230
228
|
status: TCreditCheckStatus;
|
|
231
229
|
score: number;
|
|
232
230
|
tier?: TCreditScoreTier;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export type QuestionOptionType = "text" | "multiple_choice" | "dual_choice" | "date" | "file";
|
|
1
|
+
export type QuestionOptionType = "text" | "multiple_choice" | "dual_choice" | "date" | "file" | "income";
|
package/package.json
CHANGED