@zintrust/queue-monitor 0.4.63 → 0.4.67

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.4.63",
4
- "buildDate": "2026-04-05T13:12:54.428Z",
3
+ "version": "0.4.67",
4
+ "buildDate": "2026-04-06T10:10:02.087Z",
5
5
  "buildEnvironment": {
6
6
  "node": "v22.22.1",
7
7
  "platform": "darwin",
8
8
  "arch": "arm64"
9
9
  },
10
10
  "git": {
11
- "commit": "533afc24",
11
+ "commit": "f5a9d786",
12
12
  "branch": "release"
13
13
  },
14
14
  "package": {
@@ -41,8 +41,8 @@
41
41
  "sha256": "60f993a42f4a9dd5000b01dae3b0f105a8f4348da8433a735b5cc1929a8f64ce"
42
42
  },
43
43
  "build-manifest.json": {
44
- "size": 3866,
45
- "sha256": "0419f514ce1ea9da7a111680fc03af009afce9a11c61bb909f53e42a09b61690"
44
+ "size": 3865,
45
+ "sha256": "958a2cfca8d3b2319db03165adb88c03acc468112e7c893eada9671d969ead95"
46
46
  },
47
47
  "config/queueMonitor.d.ts": {
48
48
  "size": 407,
@@ -73,8 +73,8 @@
73
73
  "sha256": "1b487b6e9cedbcb00cde7e920fb128724cb21aa154160e0bd02b02e2a0bd7334"
74
74
  },
75
75
  "dashboard-ui.js": {
76
- "size": 53771,
77
- "sha256": "530bdfba8deed3b881ab2b7ea6190b9a521bf4bdcc5a08a386a71b4c031ccb56"
76
+ "size": 54004,
77
+ "sha256": "235f5ff99220d835738fe0bf09966c4dd7198040dfa915644e6005500e125ab9"
78
78
  },
79
79
  "driver.d.ts": {
80
80
  "size": 707,
@@ -90,7 +90,7 @@
90
90
  },
91
91
  "index.js": {
92
92
  "size": 12811,
93
- "sha256": "eed486a0813866e41d75bac10fdbaba27091d6a07b32561c6176663e9a7dc510"
93
+ "sha256": "ce642e3d1aef1ebb5b339c2ed3c58fb60aee6e63a301e8fbbd333d248378b66d"
94
94
  },
95
95
  "metrics.d.ts": {
96
96
  "size": 868,
@@ -527,7 +527,10 @@ const getRenderJobsStateFunction = () => `
527
527
  `;
528
528
  const getRenderJobsIdentityHelpersFunction = () => `
529
529
  function getJobId(job) {
530
- return String(job.id);
530
+ const queue = job.queue || currentQueue || '';
531
+ const id = job.id == null ? '' : String(job.id);
532
+ const timestamp = Number.isFinite(job.timestamp) ? String(job.timestamp) : '';
533
+ return queue + '::' + id + '::' + timestamp;
531
534
  }
532
535
 
533
536
  function getAdjacentJobDetailRow(row) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zintrust/queue-monitor",
3
- "version": "0.4.63",
3
+ "version": "0.4.67",
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.4.63"
23
+ "@zintrust/core": "^0.4.67"
24
24
  },
25
25
  "publishConfig": {
26
26
  "access": "public"