@zintrust/queue-monitor 0.9.3 → 1.2.0

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.
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@zintrust/queue-monitor",
3
- "version": "0.9.3",
4
- "buildDate": "2026-04-22T15:47:22.488Z",
3
+ "version": "1.2.0",
4
+ "buildDate": "2026-04-24T08:47:19.683Z",
5
5
  "buildEnvironment": {
6
6
  "node": "v20.20.2",
7
7
  "platform": "linux",
8
8
  "arch": "x64"
9
9
  },
10
10
  "git": {
11
- "commit": "552dfdf4",
11
+ "commit": "a179ffe4",
12
12
  "branch": "master"
13
13
  },
14
14
  "package": {
@@ -41,12 +41,12 @@
41
41
  "sha256": "fc408db720d5883821b169eabce66944295068cd6f2338f1884493c299f0a0f1"
42
42
  },
43
43
  "connection.d.ts": {
44
- "size": 107,
45
- "sha256": "653b300a25df08a2380bdc74ea38342190771386cb1847dc92802e6eef88a88f"
44
+ "size": 285,
45
+ "sha256": "02b8d856e6b905f10ac01fabe7c44560530878c0ec73924889e1d159018d317a"
46
46
  },
47
47
  "connection.js": {
48
- "size": 56,
49
- "sha256": "1d4e9b5f2a03e0a3885d578276eb5c6a05c50ce4a2d84b241e68fe6ace76e7dd"
48
+ "size": 171,
49
+ "sha256": "a4d2967491dc471a75c163f81b5c7199f9e3b34c7c958b65d5bc6bb11798fc6f"
50
50
  },
51
51
  "dashboard-ui.d.ts": {
52
52
  "size": 219,
@@ -70,7 +70,7 @@
70
70
  },
71
71
  "index.js": {
72
72
  "size": 13905,
73
- "sha256": "632a951372b0b3670f00f10148fdd913816a6b8a7212665a12c51267fe711688"
73
+ "sha256": "096371df5e8f3885b486b04adb038cba59517ed14c771a1a19481e558f09fd1a"
74
74
  },
75
75
  "metrics.d.ts": {
76
76
  "size": 910,
@@ -1,2 +1,3 @@
1
- export { createRedisConnection } from '@zintrust/core';
1
+ import { createRedisConnection as createCoreRedisConnection } from '@zintrust/core';
2
2
  export type { RedisConfig } from '@zintrust/core';
3
+ export declare const createRedisConnection: (...args: Parameters<typeof createCoreRedisConnection>) => ReturnType<typeof createCoreRedisConnection>;
@@ -1 +1,2 @@
1
- export { createRedisConnection } from '@zintrust/core';
1
+ import { createRedisConnection as createCoreRedisConnection } from '@zintrust/core';
2
+ export const createRedisConnection = (...args) => createCoreRedisConnection(...args);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zintrust/queue-monitor",
3
- "version": "0.9.3",
3
+ "version": "1.2.0",
4
4
  "description": "Queue monitoring package for ZinTrust with BullMQ and Redis.",
5
5
  "private": false,
6
6
  "type": "module",
@@ -20,7 +20,7 @@
20
20
  "node": ">=20.0.0"
21
21
  },
22
22
  "peerDependencies": {
23
- "@zintrust/core": "^0.9.2"
23
+ "@zintrust/core": "^0.9.6"
24
24
  },
25
25
  "publishConfig": {
26
26
  "access": "public"
@@ -37,7 +37,7 @@
37
37
  "prepublishOnly": "npm run build"
38
38
  },
39
39
  "dependencies": {
40
- "bullmq": "^5.73.0",
40
+ "bullmq": "^5.76.1",
41
41
  "ioredis": "^5.10.1"
42
42
  }
43
43
  }