@bull-board/api
Advanced tools
Comparing version 3.9.4 to 3.10.0
@@ -83,2 +83,3 @@ "use strict"; | ||
readOnlyMode: queue.readOnlyMode, | ||
allowRetries: queue.allowRetries, | ||
isPaused, | ||
@@ -85,0 +86,0 @@ }; |
import { FormatterField, JobCleanStatus, JobCounts, JobStatus, QueueAdapterOptions, QueueJob } from '../../typings/app'; | ||
export declare abstract class BaseAdapter { | ||
readonly readOnlyMode: boolean; | ||
readonly allowRetries: boolean; | ||
readonly prefix: string; | ||
@@ -5,0 +6,0 @@ private formatters; |
@@ -8,2 +8,3 @@ "use strict"; | ||
this.readOnlyMode = options.readOnlyMode === true; | ||
this.allowRetries = this.readOnlyMode ? false : options.allowRetries !== false; | ||
this.prefix = options.prefix || ''; | ||
@@ -10,0 +11,0 @@ } |
@@ -9,2 +9,3 @@ import { BaseAdapter } from '../src/queueAdapters/base'; | ||
readOnlyMode: boolean; | ||
allowRetries: boolean; | ||
prefix: string; | ||
@@ -67,2 +68,3 @@ } | ||
readOnlyMode: boolean; | ||
allowRetries: boolean; | ||
isPaused: boolean; | ||
@@ -69,0 +71,0 @@ } |
{ | ||
"name": "@bull-board/api", | ||
"version": "3.9.4", | ||
"version": "3.10.0", | ||
"description": "Core server APIs of bull-board", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
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
46215
737