cardus 0.0.3 → 0.0.4

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.
@@ -85,7 +85,7 @@ export const cookTempShipment = async ({
85
85
  contacto_llegada: order.primerApellidoLLegada
86
86
  ? order.nombreLLegada + " " + order.primerApellidoLLegada
87
87
  : order.nombreLLegada,
88
- direccion: order.direccionLLegada2
88
+ direccion_llegada: order.direccionLLegada2
89
89
  ? order.direccionLLegada1 + " " + order.direccionLLegada2
90
90
  : order.direccionLLegada1,
91
91
  cod_pos_llegada: order.codigoPostalLLegada,
package/package.json CHANGED
@@ -1,11 +1,12 @@
1
1
  {
2
2
  "name": "cardus",
3
- "version": "0.0.3",
3
+ "version": "0.0.4",
4
4
  "description": "an integration manager",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
7
7
  "scripts": {
8
8
  "build": "rm -rf dist && tsc --build",
9
+ "prepublish": "npm run build",
9
10
  "test": "npm run test"
10
11
  },
11
12
  "author": "sergio ibanez",