@bull-board/api
Advanced tools
Comparing version 5.20.4 to 5.20.5
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.entryPoint = void 0; | ||
exports.entryPoint = entryPoint; | ||
function entryPoint(params) { | ||
@@ -21,3 +21,2 @@ var _a, _b; | ||
} | ||
exports.entryPoint = entryPoint; | ||
//# sourceMappingURL=entryPoint.js.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.errorHandler = void 0; | ||
exports.errorHandler = errorHandler; | ||
function errorHandler(error) { | ||
@@ -14,3 +14,2 @@ return { | ||
} | ||
exports.errorHandler = errorHandler; | ||
//# sourceMappingURL=error.js.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.queuesHandler = exports.formatJob = void 0; | ||
exports.formatJob = void 0; | ||
exports.queuesHandler = queuesHandler; | ||
const formatJob = (job, queue) => { | ||
@@ -75,3 +76,2 @@ const jobProps = job.toJSON(); | ||
} | ||
exports.queuesHandler = queuesHandler; | ||
//# sourceMappingURL=queues.js.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.redisStatsHandler = void 0; | ||
exports.redisStatsHandler = redisStatsHandler; | ||
const redis_info_1 = require("redis-info"); | ||
@@ -33,3 +33,2 @@ async function getStats(queue) { | ||
} | ||
exports.redisStatsHandler = redisStatsHandler; | ||
//# sourceMappingURL=redisStats.js.map |
@@ -8,6 +8,6 @@ import { BoardOptions, IServerAdapter } from '../typings/app'; | ||
}): { | ||
setQueues: (newBullQueues: readonly BaseAdapter[]) => void; | ||
replaceQueues: (newBullQueues: readonly BaseAdapter[]) => void; | ||
setQueues: (newBullQueues: ReadonlyArray<BaseAdapter>) => void; | ||
replaceQueues: (newBullQueues: ReadonlyArray<BaseAdapter>) => void; | ||
addQueue: (queue: BaseAdapter) => void; | ||
removeQueue: (queueOrName: string | BaseAdapter) => void; | ||
}; |
@@ -6,3 +6,3 @@ "use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.createBullBoard = void 0; | ||
exports.createBullBoard = createBullBoard; | ||
const path_1 = __importDefault(require("path")); | ||
@@ -32,3 +32,2 @@ const error_1 = require("./handlers/error"); | ||
} | ||
exports.createBullBoard = createBullBoard; | ||
//# sourceMappingURL=index.js.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.jobProvider = void 0; | ||
exports.jobProvider = jobProvider; | ||
function jobProvider(next) { | ||
@@ -19,3 +19,2 @@ return async (req, queue) => { | ||
} | ||
exports.jobProvider = jobProvider; | ||
//# sourceMappingURL=job.js.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.queueProvider = void 0; | ||
exports.queueProvider = queueProvider; | ||
function queueProvider(next, { skipReadOnlyModeCheck = false, } = {}) { | ||
@@ -20,3 +20,2 @@ return async (req) => { | ||
} | ||
exports.queueProvider = queueProvider; | ||
//# sourceMappingURL=queue.js.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.getQueuesApi = void 0; | ||
exports.getQueuesApi = getQueuesApi; | ||
function getQueuesApi(queues) { | ||
@@ -32,3 +32,2 @@ const bullBoardQueues = new Map(); | ||
} | ||
exports.getQueuesApi = getQueuesApi; | ||
//# sourceMappingURL=queuesApi.js.map |
{ | ||
"name": "@bull-board/api", | ||
"version": "5.20.4", | ||
"version": "5.20.5", | ||
"description": "A Dashboard server API built on top of bull or bullmq.", | ||
@@ -42,3 +42,3 @@ "keywords": [ | ||
"peerDependencies": { | ||
"@bull-board/ui": "5.20.4" | ||
"@bull-board/ui": "5.20.5" | ||
}, | ||
@@ -45,0 +45,0 @@ "publishConfig": { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
63727
1053