cardus 0.0.40 → 0.0.41

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
@@ -131,7 +131,7 @@ class IntegrationManager {
131
131
  });
132
132
  const isPriorityByDefault = yield checkIsPriorityByDefault();
133
133
  const insertOrdersResult = yield new this.executionManager({
134
- arrayParams: allOrders,
134
+ arrayParams: filteredOrders,
135
135
  executable: (order) => __awaiter(this, void 0, void 0, function* () {
136
136
  const parsedOrder = yield modificarOrdenOriginal({
137
137
  originalOrder: order
package/index.ts CHANGED
@@ -128,7 +128,7 @@ export class IntegrationManager {
128
128
  const isPriorityByDefault = await checkIsPriorityByDefault();
129
129
 
130
130
  const insertOrdersResult = await new this.executionManager({
131
- arrayParams: allOrders,
131
+ arrayParams: filteredOrders,
132
132
  executable: async (order: OriginalOrder) => {
133
133
  const parsedOrder = await modificarOrdenOriginal({
134
134
  originalOrder: order
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cardus",
3
- "version": "0.0.40",
3
+ "version": "0.0.41",
4
4
  "description": "an integration manager",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",