job-pro 1.0.31 → 1.0.33
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/index.js +16 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1433,9 +1433,22 @@ Or copy the path to clipboard (macOS):
|
|
|
1433
1433
|
}
|
|
1434
1434
|
console.log("");
|
|
1435
1435
|
}
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1436
|
+
if (applyReadyOnly) {
|
|
1437
|
+
const hiddenBuckets = allHits.filter((r) => r.apply_status === "missing-session" || r.apply_status === "external");
|
|
1438
|
+
if (hiddenBuckets.length > 0) {
|
|
1439
|
+
const missing = hiddenBuckets
|
|
1440
|
+
.filter((r) => r.apply_status === "missing-session")
|
|
1441
|
+
.map((r) => `${r.company}(${r.count})`);
|
|
1442
|
+
const external = hiddenBuckets
|
|
1443
|
+
.filter((r) => r.apply_status === "external")
|
|
1444
|
+
.map((r) => `${r.company}(${r.count})`);
|
|
1445
|
+
console.log(`Hidden by --apply-ready:`);
|
|
1446
|
+
if (missing.length)
|
|
1447
|
+
console.log(` 🟡 missing-session (run \`job-pro extension\`): ${missing.join(" ")}`);
|
|
1448
|
+
if (external.length)
|
|
1449
|
+
console.log(` ⛔ external (IM-mediated): ${external.join(" ")}`);
|
|
1450
|
+
console.log("");
|
|
1451
|
+
}
|
|
1439
1452
|
}
|
|
1440
1453
|
if (failed.length > 0) {
|
|
1441
1454
|
console.log(`Failed (${failed.length}):`);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "job-pro",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.33",
|
|
4
4
|
"description": "Query Chinese big-tech campus recruiting from your terminal. 50 companies, all 50 live. 46 via each company's own API; the 4 with no public canonical feed (Hikvision, CICC, Cainiao, WeBank) surfaced via Liepin as a clearly-labeled third-party fallback. No signup, no token, no server.",
|
|
5
5
|
"homepage": "https://job.ha7ch.com",
|
|
6
6
|
"repository": "https://github.com/HA7CH/job-pro",
|