cardus 0.0.94 → 0.0.95

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
@@ -334,6 +334,9 @@ class IntegrationManager {
334
334
  if (lineas.length === 1) {
335
335
  grouped = 0;
336
336
  }
337
+ else {
338
+ grouped = 1;
339
+ }
337
340
  if (grouped) {
338
341
  this.insertTempShipmentGroupLine({ idEnvioTemporal, group });
339
342
  }
package/index.ts CHANGED
@@ -559,6 +559,8 @@ export class IntegrationManager {
559
559
 
560
560
  if (lineas.length === 1) {
561
561
  grouped = 0;
562
+ } else {
563
+ grouped = 1;
562
564
  }
563
565
 
564
566
  if (grouped) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cardus",
3
- "version": "0.0.94",
3
+ "version": "0.0.95",
4
4
  "description": "an integration manager",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",