cardus 0.0.68 → 0.0.70

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/dist/index.js CHANGED
@@ -214,7 +214,7 @@ class IntegrationManager {
214
214
  contenido: detail.bulto.nombre_producto,
215
215
  valor: detail.bulto.valor || getRandomContentValue(),
216
216
  dni: user.dni,
217
- taric,
217
+ taric: JSON.stringify(this.dataToInsert.details),
218
218
  eori_importacion: user.eori_import,
219
219
  eori_exportacion: user.eori_export,
220
220
  peso_bruto: detail.bulto.peso,
package/index.ts CHANGED
@@ -307,7 +307,7 @@ export class IntegrationManager {
307
307
  contenido: detail.bulto.nombre_producto,
308
308
  valor: detail.bulto.valor || getRandomContentValue(),
309
309
  dni: user.dni,
310
- taric,
310
+ taric: JSON.stringify(this.dataToInsert.details),
311
311
  eori_importacion: user.eori_import,
312
312
  eori_exportacion: user.eori_export,
313
313
  peso_bruto: detail.bulto.peso,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cardus",
3
- "version": "0.0.68",
3
+ "version": "0.0.70",
4
4
  "description": "an integration manager",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",