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 +1 -1
- package/index.ts +1 -1
- package/package.json +1 -1
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:
|
|
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:
|
|
131
|
+
arrayParams: filteredOrders,
|
|
132
132
|
executable: async (order: OriginalOrder) => {
|
|
133
133
|
const parsedOrder = await modificarOrdenOriginal({
|
|
134
134
|
originalOrder: order
|