@bull-board/api
Advanced tools
Comparing version 4.10.0 to 4.10.1
@@ -9,3 +9,5 @@ import { FormatterField, JobCleanStatus, JobCounts, JobStatus, QueueAdapterOptions, QueueJob } from '../../typings/app'; | ||
private formatters; | ||
protected constructor(options?: Partial<QueueAdapterOptions>); | ||
protected constructor(options?: Partial<QueueAdapterOptions & { | ||
allowCompletedRetries: boolean; | ||
}>); | ||
getDescription(): string; | ||
@@ -12,0 +14,0 @@ setFormatter<T extends FormatterField>(field: T, formatter: (data: any) => T extends 'name' ? string : any): void; |
@@ -7,4 +7,3 @@ "use strict"; | ||
constructor(queue, options = {}) { | ||
options.allowCompletedRetries = false; // bull doesn't support this | ||
super(options); | ||
super({ ...options, allowCompletedRetries: false }); | ||
this.queue = queue; | ||
@@ -11,0 +10,0 @@ } |
@@ -12,3 +12,2 @@ import { RedisInfo } from 'redis-info'; | ||
allowRetries: boolean; | ||
allowCompletedRetries: boolean; | ||
prefix: string; | ||
@@ -15,0 +14,0 @@ description: string; |
{ | ||
"name": "@bull-board/api", | ||
"version": "4.10.0", | ||
"version": "4.10.1", | ||
"description": "Core server APIs of bull-board", | ||
@@ -34,4 +34,4 @@ "keywords": [ | ||
"devDependencies": { | ||
"@types/bull": "^3.15.8", | ||
"@types/node": "^17.0.25", | ||
"bull": "^4.10.2", | ||
"bullmq": "^1.80.6", | ||
@@ -38,0 +38,0 @@ "ioredis-mock": "^7.2.0", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
53402