sysone-api-mapper 1.0.62 → 1.0.63
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/package.json
CHANGED
|
@@ -170,11 +170,10 @@ export const getQuotationDetail = async (res) => {
|
|
|
170
170
|
},
|
|
171
171
|
birthdate: risk?.data?.birthdate || null,
|
|
172
172
|
savings: risk?.data?.savings || null,
|
|
173
|
-
identification: risk?.data?.identification
|
|
174
|
-
firstName: risk?.data?.firstName
|
|
175
|
-
lastName: risk?.data?.lastName
|
|
176
|
-
|
|
177
|
-
spouse: risk?.data?.spouse || null,
|
|
173
|
+
identification: risk?.data?.identification ?? null,
|
|
174
|
+
firstName: risk?.data?.firstName ?? null,
|
|
175
|
+
lastName: risk?.data?.lastName ?? null,
|
|
176
|
+
spouse: risk?.data?.spouse ?? null,
|
|
178
177
|
values: risk?.data?.values || null
|
|
179
178
|
},
|
|
180
179
|
groupedEconomicValues: []
|