@midwayjs/bull-board 3.20.6 → 3.20.7
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/index.d.ts +3 -0
- package/dist/index.js +7 -1
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -3,4 +3,7 @@ export * from './board.middleware';
|
|
|
3
3
|
export * from './board.manager';
|
|
4
4
|
export * from './interface';
|
|
5
5
|
export * as BullBoard from '@bull-board/api';
|
|
6
|
+
export { MidwayAdapter } from './adapter';
|
|
7
|
+
export { BullAdapter } from '@bull-board/api/bullAdapter';
|
|
8
|
+
export { BullMQAdapter } from '@bull-board/api/bullMQAdapter';
|
|
6
9
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.js
CHANGED
|
@@ -14,11 +14,17 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
exports.BullBoard = exports.Configuration = void 0;
|
|
17
|
+
exports.BullMQAdapter = exports.BullAdapter = exports.MidwayAdapter = exports.BullBoard = exports.Configuration = void 0;
|
|
18
18
|
var configuration_1 = require("./configuration");
|
|
19
19
|
Object.defineProperty(exports, "Configuration", { enumerable: true, get: function () { return configuration_1.BullBoardConfiguration; } });
|
|
20
20
|
__exportStar(require("./board.middleware"), exports);
|
|
21
21
|
__exportStar(require("./board.manager"), exports);
|
|
22
22
|
__exportStar(require("./interface"), exports);
|
|
23
23
|
exports.BullBoard = require("@bull-board/api");
|
|
24
|
+
var adapter_1 = require("./adapter");
|
|
25
|
+
Object.defineProperty(exports, "MidwayAdapter", { enumerable: true, get: function () { return adapter_1.MidwayAdapter; } });
|
|
26
|
+
var bullAdapter_1 = require("@bull-board/api/bullAdapter");
|
|
27
|
+
Object.defineProperty(exports, "BullAdapter", { enumerable: true, get: function () { return bullAdapter_1.BullAdapter; } });
|
|
28
|
+
var bullMQAdapter_1 = require("@bull-board/api/bullMQAdapter");
|
|
29
|
+
Object.defineProperty(exports, "BullMQAdapter", { enumerable: true, get: function () { return bullMQAdapter_1.BullMQAdapter; } });
|
|
24
30
|
//# sourceMappingURL=index.js.map
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@midwayjs/bull-board",
|
|
3
|
-
"version": "3.20.
|
|
4
|
-
"description": "midway component for bull",
|
|
3
|
+
"version": "3.20.7",
|
|
4
|
+
"description": "midway component for bull-board",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"typings": "index.d.ts",
|
|
7
7
|
"scripts": {
|
|
@@ -40,5 +40,5 @@
|
|
|
40
40
|
"engines": {
|
|
41
41
|
"node": ">=12"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "247afa16282b7f391f2dfa3cd922b52c25f5a332"
|
|
44
44
|
}
|