cardus 0.0.54 → 0.0.55

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
@@ -137,6 +137,7 @@ class IntegrationManager {
137
137
  order: parsedOrder,
138
138
  idEnvioTemporal
139
139
  });
140
+ return Object.assign(parsedOrder, { idEnvioTemporal });
140
141
  }),
141
142
  regularExecutionTime: 8000, // ms
142
143
  initialBatchQuantity: 5 // de cinco en cinco
package/index.ts CHANGED
@@ -163,6 +163,8 @@ export class IntegrationManager {
163
163
  order: parsedOrder,
164
164
  idEnvioTemporal
165
165
  });
166
+
167
+ return Object.assign(parsedOrder, { idEnvioTemporal });
166
168
  },
167
169
  regularExecutionTime: 8000, // ms
168
170
  initialBatchQuantity: 5 // de cinco en cinco
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cardus",
3
- "version": "0.0.54",
3
+ "version": "0.0.55",
4
4
  "description": "an integration manager",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",