@vyro-x/api-transformers
Advanced tools
Comparing version 0.1.1 to 0.1.2
@@ -23,2 +23,5 @@ "use strict"; | ||
'employment_type', | ||
'previous_employer_name', | ||
'previous_employment_duration', | ||
'previous_employment_type', | ||
'finance_partner', | ||
@@ -32,4 +35,6 @@ 'home_rent_or_mortgage_repayment', | ||
'is_income_likely_to_change_within_12_months', | ||
'is_income_likely_to_change_within_12_months_details', | ||
'last_step', | ||
'liabilities', | ||
'expenses', | ||
'living_situation', | ||
@@ -36,0 +41,0 @@ 'mortgage_value', |
@@ -337,6 +337,10 @@ /** | ||
annual_net_income?: number; | ||
assets?: { | ||
assets?: ({ | ||
code?: string; | ||
value?: number; | ||
}; | ||
})[]; | ||
expenses?: ({ | ||
type?: string; | ||
monthly_amount?: number; | ||
})[]; | ||
awarded_credit_amount?: number; | ||
@@ -354,5 +358,9 @@ /** @description The awarded balloon payment, represented as a decimal point. E.g. 0.05 = 5% of drive away price. */ | ||
employer_name?: string; | ||
/** @description The employment duration in years. */ | ||
/** @description The employment duration in months. */ | ||
employment_duration?: number; | ||
employment_type?: string; | ||
previous_employer_name?: string; | ||
/** @description The previous employment duration in months. */ | ||
previous_employment_duration?: number; | ||
previous_employment_type?: string; | ||
finance_partner?: string; | ||
@@ -368,8 +376,9 @@ /** @description The monthly repayment amount for the applicant's rent or mortgage. */ | ||
is_income_likely_to_change_within_12_months?: boolean; | ||
is_income_likely_to_change_within_12_months_details?: string; | ||
last_step?: string; | ||
liabilities?: { | ||
liabilities?: ({ | ||
code?: string; | ||
limit?: number; | ||
monthly_repayment?: number; | ||
}; | ||
})[]; | ||
living_situation?: string; | ||
@@ -376,0 +385,0 @@ mortgage_value?: number; |
{ | ||
"name": "@vyro-x/api-transformers", | ||
"description": "Transform internal objects to external ones consistently", | ||
"version": "0.1.1", | ||
"version": "0.1.2", | ||
"private": false, | ||
@@ -6,0 +6,0 @@ "main": "lib/index.js", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1456796
32199