@midwayjs/bull 3.9.7 → 3.10.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/interface.d.ts +1 -1
- package/index.d.ts +1 -0
- package/package.json +5 -5
package/dist/interface.d.ts
CHANGED
|
@@ -16,7 +16,7 @@ export interface IQueueManager<Queue extends IQueue<Job>, Job> {
|
|
|
16
16
|
}
|
|
17
17
|
export interface Application extends IMidwayApplication<Context> {
|
|
18
18
|
}
|
|
19
|
-
export
|
|
19
|
+
export type NextFunction = BaseNextFunction;
|
|
20
20
|
export interface Context extends IMidwayContext {
|
|
21
21
|
jobId: JobId;
|
|
22
22
|
job: Job;
|
package/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@midwayjs/bull",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.10.1",
|
|
4
4
|
"description": "midway component for bull",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"typings": "index.d.ts",
|
|
@@ -24,14 +24,14 @@
|
|
|
24
24
|
],
|
|
25
25
|
"license": "MIT",
|
|
26
26
|
"devDependencies": {
|
|
27
|
-
"@midwayjs/core": "^3.
|
|
28
|
-
"@midwayjs/mock": "^3.
|
|
27
|
+
"@midwayjs/core": "^3.10.1",
|
|
28
|
+
"@midwayjs/mock": "^3.10.1"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"bull": "4.10.
|
|
31
|
+
"bull": "4.10.2"
|
|
32
32
|
},
|
|
33
33
|
"engines": {
|
|
34
34
|
"node": ">=12"
|
|
35
35
|
},
|
|
36
|
-
"gitHead": "
|
|
36
|
+
"gitHead": "6bc9f7a97e4188399d2406f5a38bad5aeb983e07"
|
|
37
37
|
}
|