job-pro 1.0.76 → 1.0.77
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 +5 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1316,7 +1316,10 @@ async function main() {
|
|
|
1316
1316
|
// the process never exits. Skip it explicitly; users who want to
|
|
1317
1317
|
// recon lilith can scope --companies=lilith and accept the hang.
|
|
1318
1318
|
if (company === "lilith") {
|
|
1319
|
-
|
|
1319
|
+
// lilith is in ENDPOINT_VERIFIED but we skip the probe (would
|
|
1320
|
+
// hang puppeteer). Surface the already_verified status so the
|
|
1321
|
+
// icon shows ⚠ ("schema verified, probe skipped") not "?".
|
|
1322
|
+
return { company, classification: "probe-error", detail: "skipped — CDP adapter (puppeteer); pass --companies=lilith explicitly to probe", already_verified: true };
|
|
1320
1323
|
}
|
|
1321
1324
|
const adapter = ADAPTERS[company];
|
|
1322
1325
|
if (!adapter)
|
|
@@ -1368,7 +1371,7 @@ async function main() {
|
|
|
1368
1371
|
};
|
|
1369
1372
|
}
|
|
1370
1373
|
catch (err) {
|
|
1371
|
-
return { company, submit_kind: schema.submit_kind, submit_endpoint: url, classification: "probe-error", detail: err instanceof Error ? err.message : String(err) };
|
|
1374
|
+
return { company, submit_kind: schema.submit_kind, submit_endpoint: url, classification: "probe-error", detail: err instanceof Error ? err.message : String(err), already_verified: schema.endpoint_verified === true };
|
|
1372
1375
|
}
|
|
1373
1376
|
}));
|
|
1374
1377
|
if (compact) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "job-pro",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.77",
|
|
4
4
|
"description": "Query Chinese big-tech campus recruiting + auto-apply from your terminal. 50 companies, all 50 live (46 via official APIs, 4 via Liepin third-party fallback). 45/50 with end-to-end verified apply endpoints; 5 structurally-external (Liepin IM × 4 + Unitree WeChat). No signup, no token, no server.",
|
|
5
5
|
"homepage": "https://job.ha7ch.com",
|
|
6
6
|
"repository": "https://github.com/HA7CH/job-pro",
|