cardus 0.0.60 → 0.0.61

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.
@@ -30,7 +30,7 @@ const cookTempShipment = (_a) => __awaiter(void 0, [_a], void 0, function* ({ or
30
30
  pais_salida: sellerAddress.nombre_pais,
31
31
  tlf_salida: sellerAddress.telefono,
32
32
  observaciones_salida: sellerAddress.observaciones,
33
- contacto_salida: sellerAddress.nombre,
33
+ contacto_salida: (sellerAddress.nombre || '|').slice(0, 40),
34
34
  mail_salida: sellerAddress.mail
35
35
  });
36
36
  const setUbicacionComprador = (order) => __awaiter(void 0, void 0, void 0, function* () {
@@ -58,8 +58,8 @@ const cookTempShipment = (_a) => __awaiter(void 0, [_a], void 0, function* ({ or
58
58
  ? order.nombreLLegada + ' ' + order.primerApellidoLLegada
59
59
  : order.nombreLLegada,
60
60
  contacto_llegada: order.primerApellidoLLegada
61
- ? order.nombreLLegada + ' ' + order.primerApellidoLLegada
62
- : order.nombreLLegada,
61
+ ? (order.nombreLLegada + ' ' + order.primerApellidoLLegada || '|').slice(0, 40)
62
+ : (order.nombreLLegada || '|').slice(0, 40),
63
63
  direccion_llegada: order.direccionLLegada2
64
64
  ? order.direccionLLegada1 + ' ' + order.direccionLLegada2
65
65
  : order.direccionLLegada1,
@@ -50,7 +50,7 @@ export const cookTempShipment = async ({
50
50
  pais_salida: sellerAddress.nombre_pais,
51
51
  tlf_salida: sellerAddress.telefono,
52
52
  observaciones_salida: sellerAddress.observaciones,
53
- contacto_salida: sellerAddress.nombre,
53
+ contacto_salida: (sellerAddress.nombre || '|').slice(0, 40),
54
54
  mail_salida: sellerAddress.mail
55
55
  });
56
56
 
@@ -97,8 +97,11 @@ export const cookTempShipment = async ({
97
97
  : order.nombreLLegada,
98
98
 
99
99
  contacto_llegada: order.primerApellidoLLegada
100
- ? order.nombreLLegada + ' ' + order.primerApellidoLLegada
101
- : order.nombreLLegada,
100
+ ? (order.nombreLLegada + ' ' + order.primerApellidoLLegada || '|').slice(
101
+ 0,
102
+ 40
103
+ )
104
+ : (order.nombreLLegada || '|').slice(0, 40),
102
105
 
103
106
  direccion_llegada: order.direccionLLegada2
104
107
  ? order.direccionLLegada1 + ' ' + order.direccionLLegada2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cardus",
3
- "version": "0.0.60",
3
+ "version": "0.0.61",
4
4
  "description": "an integration manager",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",