sysone-api-mapper 1.0.104 → 1.0.106
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
|
@@ -106,8 +106,8 @@ const getPolicies_CNP = async (response) => {
|
|
|
106
106
|
code: p.number,
|
|
107
107
|
alias: "N/A",
|
|
108
108
|
product: {
|
|
109
|
-
code: p.
|
|
110
|
-
name: p.
|
|
109
|
+
code: p.product?.code?.toString() || null,
|
|
110
|
+
name: p.product?.name || null,
|
|
111
111
|
subsection: {
|
|
112
112
|
name: "N/A",
|
|
113
113
|
code: "N/A",
|
|
@@ -283,7 +283,7 @@ const getPolicyCollection = async (data) => {
|
|
|
283
283
|
paymentMethodData: {
|
|
284
284
|
simpleMethodData: {
|
|
285
285
|
number: data.paymentMethod.number,
|
|
286
|
-
|
|
286
|
+
method: data.paymentMethod.type,
|
|
287
287
|
}
|
|
288
288
|
},
|
|
289
289
|
|