enhanced-printer 1.0.6 → 1.0.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.
@@ -38,7 +38,7 @@ function decodeJobStatus(status) {
38
38
  }
39
39
  const numericStatus = Number(status);
40
40
  if (isNaN(numericStatus) || numericStatus === 0) {
41
- return ['None'];
41
+ return ['INQUEUE'];
42
42
  }
43
43
  const flags = [];
44
44
  for (const [bit, name] of Object.entries(JOB_STATUS_FLAGS)) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "enhanced-printer",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "description": "Advanced PDF printing library with job tracking, custom page sizes, and tray selection for Node.js and Electron",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",