@rocketlink/crm-model 1.0.246 → 1.0.247

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.
@@ -16,4 +16,4 @@ exports.CURRENCIES = {
16
16
  GBP: "GBP",
17
17
  };
18
18
  exports.MB_1 = 1 * 1024 * 1024;
19
- exports.MAX_MB_STREAM_SIZE = exports.MB_1 * 5;
19
+ exports.MAX_MB_STREAM_SIZE = 5 * exports.MB_1; // 20k, 2.5MB; 50k rows around 6.5MB; 80k, 10MB;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rocketlink/crm-model",
3
- "version": "1.0.246",
3
+ "version": "1.0.247",
4
4
  "description": "Shared DTOs and Models for CRM Rocketlink",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -22,4 +22,4 @@ export type CURRENCIES = (typeof CURRENCIES)[keyof typeof CURRENCIES];
22
22
 
23
23
  export const MB_1 = 1 * 1024 * 1024;
24
24
 
25
- export const MAX_MB_STREAM_SIZE = MB_1 * 5;
25
+ export const MAX_MB_STREAM_SIZE = 5 * MB_1; // 20k, 2.5MB; 50k rows around 6.5MB; 80k, 10MB;