@okf/ootils 1.4.0 → 1.4.1

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/node.js CHANGED
@@ -926,6 +926,29 @@ var init_GLOBAL_BULLMQ_CONFIG = __esm({
926
926
  // ...60 seconds (higher throughput for chunking)
927
927
  }
928
928
  }
929
+ },
930
+ DIRECT_DATA_IMPORT_QUEUE: {
931
+ id: "direct-data-import-queue",
932
+ queueConfig: {
933
+ defaultJobOptions: {
934
+ backoff: {
935
+ type: "exponential",
936
+ delay: 2e3
937
+ },
938
+ attempts: 3,
939
+ removeOnComplete: 100,
940
+ removeOnFail: 50
941
+ }
942
+ },
943
+ workerConfig: {
944
+ concurrency: 1,
945
+ limiter: {
946
+ max: 5,
947
+ // Max 50 jobs per...
948
+ duration: 6e4
949
+ // ...60 seconds (higher throughput for chunking)
950
+ }
951
+ }
929
952
  }
930
953
  };
931
954
  }
package/dist/node.mjs CHANGED
@@ -931,6 +931,29 @@ var init_GLOBAL_BULLMQ_CONFIG = __esm({
931
931
  // ...60 seconds (higher throughput for chunking)
932
932
  }
933
933
  }
934
+ },
935
+ DIRECT_DATA_IMPORT_QUEUE: {
936
+ id: "direct-data-import-queue",
937
+ queueConfig: {
938
+ defaultJobOptions: {
939
+ backoff: {
940
+ type: "exponential",
941
+ delay: 2e3
942
+ },
943
+ attempts: 3,
944
+ removeOnComplete: 100,
945
+ removeOnFail: 50
946
+ }
947
+ },
948
+ workerConfig: {
949
+ concurrency: 1,
950
+ limiter: {
951
+ max: 5,
952
+ // Max 50 jobs per...
953
+ duration: 6e4
954
+ // ...60 seconds (higher throughput for chunking)
955
+ }
956
+ }
934
957
  }
935
958
  };
936
959
  }
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.4.0",
6
+ "version": "1.4.1",
7
7
  "description": "Utility functions for both browser and Node.js",
8
8
  "main": "dist/index.js",
9
9
  "module": "dist/index.mjs",