cardus 0.0.75 → 0.0.76

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.
@@ -112,7 +112,8 @@ const cookTempShipment = (_a) => __awaiter(void 0, [_a], void 0, function* ({ or
112
112
  referencia_cliente: order.referenciaCliente || null
113
113
  });
114
114
  const setDatosAdicionales = (order) => ({
115
- datos_adicionales: order.etiquetaExtraInfo || null
115
+ datos_adicionales: order.etiquetaExtraInfo || null,
116
+ observaciones: order.observaciones || ''
116
117
  });
117
118
  const setters = [
118
119
  setDatosVendedor,
@@ -164,7 +164,8 @@ export const cookTempShipment = async ({
164
164
  });
165
165
 
166
166
  const setDatosAdicionales = (order: ModifiedOrder) => ({
167
- datos_adicionales: order.etiquetaExtraInfo || null
167
+ datos_adicionales: order.etiquetaExtraInfo || null,
168
+ observaciones: order.observaciones || ''
168
169
  });
169
170
 
170
171
  const setters = [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cardus",
3
- "version": "0.0.75",
3
+ "version": "0.0.76",
4
4
  "description": "an integration manager",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
package/types/index.ts CHANGED
@@ -125,6 +125,7 @@ export type ModifiedOrder = {
125
125
  etiquetaExtraInfo?: string;
126
126
  numeroIdentificacionLLegada?: string | null;
127
127
  observacionesLLegada?: string;
128
+ observaciones?: string;
128
129
  };
129
130
 
130
131
  export interface ModifiedOrderExtended extends ModifiedOrder {