sysone-api-mapper 1.0.64 → 1.0.66

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sysone-api-mapper",
3
- "version": "1.0.64",
3
+ "version": "1.0.66",
4
4
  "description": "Paquete mapper para portal de productores",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -163,7 +163,7 @@ export const getQuotationDetail = async (res) => {
163
163
  city: {
164
164
  code: risk?.data?.city?.code || null,
165
165
  name: risk?.data?.city?.name || null,
166
- province: null
166
+ province: risk?.data?.city?.province || null
167
167
  },
168
168
  gender: {
169
169
  code: risk?.data?.gender?.code || null,
@@ -175,7 +175,11 @@ export const getQuotationDetail = async (res) => {
175
175
  firstName: risk?.data?.firstName ?? null,
176
176
  lastName: risk?.data?.lastName ?? null,
177
177
  spouse: risk?.data?.spouse ?? null,
178
- values: risk?.data?.values || null
178
+ values: risk?.data?.values || null,
179
+ activity: risk?.data?.activity || null,
180
+ bloodPressure: risk?.data?.bloodPressure || null,
181
+ height: risk?.data?.height || null,
182
+ weight: risk?.data?.weight || null,
179
183
  },
180
184
  groupedEconomicValues: []
181
185
  })) || []