@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.
- package/dist/build-manifest.json +8 -8
- package/dist/dashboard-ui.js +4 -1
- package/package.json +2 -2
package/dist/build-manifest.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zintrust/queue-monitor",
|
|
3
|
-
"version": "0.4.
|
|
4
|
-
"buildDate": "2026-04-
|
|
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": "
|
|
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":
|
|
45
|
-
"sha256": "
|
|
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":
|
|
77
|
-
"sha256": "
|
|
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": "
|
|
93
|
+
"sha256": "ce642e3d1aef1ebb5b339c2ed3c58fb60aee6e63a301e8fbbd333d248378b66d"
|
|
94
94
|
},
|
|
95
95
|
"metrics.d.ts": {
|
|
96
96
|
"size": 868,
|
package/dist/dashboard-ui.js
CHANGED
|
@@ -527,7 +527,10 @@ const getRenderJobsStateFunction = () => `
|
|
|
527
527
|
`;
|
|
528
528
|
const getRenderJobsIdentityHelpersFunction = () => `
|
|
529
529
|
function getJobId(job) {
|
|
530
|
-
|
|
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.
|
|
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.
|
|
23
|
+
"@zintrust/core": "^0.4.67"
|
|
24
24
|
},
|
|
25
25
|
"publishConfig": {
|
|
26
26
|
"access": "public"
|