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
package/types/index.ts
CHANGED