@bull-board/nestjs 5.9.0 → 5.9.2
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/README.md +1 -0
- package/dist/bull-board.types.d.ts +2 -2
- package/package.json +6 -6
- package/src/bull-board.types.ts +2 -2
package/README.md
CHANGED
|
@@ -13,9 +13,9 @@ export type BullBoardModuleOptions = {
|
|
|
13
13
|
export type BullBoardQueueOptions = {
|
|
14
14
|
name: string;
|
|
15
15
|
adapter: {
|
|
16
|
-
new (queue: any, options?: QueueAdapterOptions): BaseAdapter;
|
|
16
|
+
new (queue: any, options?: Partial<QueueAdapterOptions>): BaseAdapter;
|
|
17
17
|
};
|
|
18
|
-
options?: QueueAdapterOptions
|
|
18
|
+
options?: Partial<QueueAdapterOptions>;
|
|
19
19
|
};
|
|
20
20
|
export type BullBoardServerAdapter = IServerAdapter & {
|
|
21
21
|
setBasePath(path: string): any;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bull-board/nestjs",
|
|
3
|
-
"version": "5.9.
|
|
3
|
+
"version": "5.9.2",
|
|
4
4
|
"description": "A NestJS module for Bull-Board dashboard.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"bull",
|
|
@@ -19,9 +19,9 @@
|
|
|
19
19
|
"clean": "rm -rf dist"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
|
-
"@bull-board/api": "^5.9.
|
|
23
|
-
"@bull-board/express": "^5.9.
|
|
24
|
-
"@bull-board/fastify": "^5.9.
|
|
22
|
+
"@bull-board/api": "^5.9.2",
|
|
23
|
+
"@bull-board/express": "^5.9.2",
|
|
24
|
+
"@bull-board/fastify": "^5.9.2",
|
|
25
25
|
"@nestjs/bullmq": "^10.0.0",
|
|
26
26
|
"@nestjs/common": "^10.0.1",
|
|
27
27
|
"@nestjs/core": "^10.0.1",
|
|
@@ -36,8 +36,8 @@
|
|
|
36
36
|
"@nestjs/bull-shared": "^10.0.0"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
39
|
-
"@bull-board/api": "^5.9.
|
|
40
|
-
"@bull-board/express": "^5.9.
|
|
39
|
+
"@bull-board/api": "^5.9.2",
|
|
40
|
+
"@bull-board/express": "^5.9.2",
|
|
41
41
|
"@nestjs/common": "^9.0.0 || ^10.0.0",
|
|
42
42
|
"@nestjs/core": "^9.0.0 || ^10.0.0",
|
|
43
43
|
"reflect-metadata": "^0.1.13",
|
package/src/bull-board.types.ts
CHANGED
|
@@ -13,8 +13,8 @@ export type BullBoardModuleOptions = {
|
|
|
13
13
|
|
|
14
14
|
export type BullBoardQueueOptions = {
|
|
15
15
|
name: string;
|
|
16
|
-
adapter: { new(queue: any, options?: QueueAdapterOptions): BaseAdapter },
|
|
17
|
-
options?: QueueAdapterOptions
|
|
16
|
+
adapter: { new(queue: any, options?: Partial<QueueAdapterOptions>): BaseAdapter },
|
|
17
|
+
options?: Partial<QueueAdapterOptions>,
|
|
18
18
|
};
|
|
19
19
|
|
|
20
20
|
//create our own types with the needed functions, so we don't need to include express/fastify libraries here.
|