cardus 0.0.6 → 0.0.8

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
@@ -114,7 +114,7 @@ class IntegrationManager {
114
114
  });
115
115
  }),
116
116
  regularExecutionTime: 100, // ms
117
- initialBatchQuantity: 1 // de uno en uno
117
+ initialBatchQuantity: 5 // de cinco en cinco
118
118
  }).upload();
119
119
  const successfullShipments = insertOrdersResult
120
120
  .filter(Boolean)
package/index.ts CHANGED
@@ -90,7 +90,7 @@ export class IntegrationManager {
90
90
  });
91
91
  },
92
92
  regularExecutionTime: 100, // ms
93
- initialBatchQuantity: 1 // de uno en uno
93
+ initialBatchQuantity: 5 // de cinco en cinco
94
94
  }).upload();
95
95
 
96
96
  const successfullShipments = insertOrdersResult
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cardus",
3
- "version": "0.0.6",
3
+ "version": "0.0.8",
4
4
  "description": "an integration manager",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -21,11 +21,11 @@
21
21
  "eslint": "^8.57.0",
22
22
  "globals": "^15.0.0",
23
23
  "jest": "^29.7.0",
24
+ "prettier": "^3.2.5",
24
25
  "typescript": "^5.4.5",
25
26
  "typescript-eslint": "^7.7.1"
26
27
  },
27
28
  "dependencies": {
28
- "moment": "^2.30.1",
29
- "prettier": "^3.2.5"
29
+ "moment": "^2.30.1"
30
30
  }
31
31
  }