bullmq 1.85.2 → 1.85.3

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.
@@ -102,7 +102,7 @@ export declare class Queue<DataType = any, ResultType = any, NameType extends st
102
102
  name: NameType;
103
103
  data: DataType;
104
104
  opts?: BulkJobOptions;
105
- }[]): Promise<Job<DataType, DataType, NameType>[]>;
105
+ }[]): Promise<Job<DataType, ResultType, NameType>[]>;
106
106
  /**
107
107
  * Pauses the processing of this queue globally.
108
108
  *
@@ -102,7 +102,7 @@ export declare class Queue<DataType = any, ResultType = any, NameType extends st
102
102
  name: NameType;
103
103
  data: DataType;
104
104
  opts?: BulkJobOptions;
105
- }[]): Promise<Job<DataType, DataType, NameType>[]>;
105
+ }[]): Promise<Job<DataType, ResultType, NameType>[]>;
106
106
  /**
107
107
  * Pauses the processing of this queue globally.
108
108
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bullmq",
3
- "version": "1.85.2",
3
+ "version": "1.85.3",
4
4
  "description": "Queue for messages and jobs based on Redis",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",