worker-que 1.0.1 → 1.1.2
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/DASHBOARD.md +82 -14
- package/README.md +10 -4
- package/dist/dashboard/index.d.ts +24 -7
- package/dist/dashboard/index.d.ts.map +1 -1
- package/dist/dashboard/index.js +121 -10
- package/dist/dashboard/index.js.map +1 -1
- package/dist/dashboard/service.d.ts +12 -1
- package/dist/dashboard/service.d.ts.map +1 -1
- package/dist/dashboard/service.js +7 -3
- package/dist/dashboard/service.js.map +1 -1
- package/dist/dashboard/views.d.ts +3 -2
- package/dist/dashboard/views.d.ts.map +1 -1
- package/dist/dashboard/views.js +819 -141
- package/dist/dashboard/views.js.map +1 -1
- package/package.json +8 -2
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"views.js","sourceRoot":"","sources":["../../src/dashboard/views.ts"],"names":[],"mappings":";;AAEA,
|
|
1
|
+
{"version":3,"file":"views.js","sourceRoot":"","sources":["../../src/dashboard/views.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "worker-que",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.2",
|
|
4
4
|
"description": "A TypeScript job queue library for PostgreSQL with real-time web dashboard, SSL support, and cross-language compatibility",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -67,6 +67,7 @@
|
|
|
67
67
|
"license": "MIT",
|
|
68
68
|
"devDependencies": {
|
|
69
69
|
"@types/express": "^4.17.21",
|
|
70
|
+
"@types/express-session": "^1.18.2",
|
|
70
71
|
"@types/jest": "^29.5.5",
|
|
71
72
|
"@types/node": "^20.6.2",
|
|
72
73
|
"@types/pg": "^8.10.2",
|
|
@@ -75,6 +76,7 @@
|
|
|
75
76
|
"dotenv": "^17.2.1",
|
|
76
77
|
"eslint": "^8.57.1",
|
|
77
78
|
"express": "^4.18.2",
|
|
79
|
+
"express-session": "^1.19.0",
|
|
78
80
|
"jest": "^29.7.0",
|
|
79
81
|
"ts-jest": "^29.1.1"
|
|
80
82
|
},
|
|
@@ -83,11 +85,15 @@
|
|
|
83
85
|
"typescript": "^5.2.2"
|
|
84
86
|
},
|
|
85
87
|
"peerDependencies": {
|
|
86
|
-
"express": "^4.18.0"
|
|
88
|
+
"express": "^4.18.0",
|
|
89
|
+
"express-session": "^1.17.0"
|
|
87
90
|
},
|
|
88
91
|
"peerDependenciesMeta": {
|
|
89
92
|
"express": {
|
|
90
93
|
"optional": true
|
|
94
|
+
},
|
|
95
|
+
"express-session": {
|
|
96
|
+
"optional": true
|
|
91
97
|
}
|
|
92
98
|
},
|
|
93
99
|
"engines": {
|