job-pro 1.0.37 → 1.0.39
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/alibaba.js +2 -1
- package/dist/apply.js +1 -0
- package/dist/moka.js +5 -2
- package/dist/pdd.js +2 -1
- package/dist/sf.js +1 -1
- package/package.json +1 -1
package/dist/alibaba.js
CHANGED
|
@@ -502,7 +502,8 @@ export async function fetchApplicationSchema(postId) {
|
|
|
502
502
|
applyUrl,
|
|
503
503
|
submitEndpoint: "https://campus-talent.alibaba.com/campus/applyPosition.json",
|
|
504
504
|
submitKind: "multipart-session",
|
|
505
|
-
|
|
505
|
+
endpointVerified: true,
|
|
506
|
+
submitNotes: "Alibaba — POST /campus/applyPosition.json with session cookie. Alipay OAuth gates the session. Endpoint anon-probed → HTTP 403 (auth gate, not 404 — confirms real route). Body shape still needs validation against a real candidate session.",
|
|
506
507
|
}),
|
|
507
508
|
};
|
|
508
509
|
}
|
package/dist/apply.js
CHANGED
|
@@ -409,6 +409,7 @@ export function buildBespokeApplySchema(cfg) {
|
|
|
409
409
|
submit_method: cfg.submitEndpoint ? "POST" : undefined,
|
|
410
410
|
submit_kind: cfg.submitKind ?? "multipart-session",
|
|
411
411
|
submit_notes: cfg.submitNotes,
|
|
412
|
+
endpoint_verified: cfg.endpointVerified,
|
|
412
413
|
questions: [...standard, ...(cfg.extraQuestions ?? [])],
|
|
413
414
|
};
|
|
414
415
|
}
|
package/dist/moka.js
CHANGED
|
@@ -444,12 +444,15 @@ export function createAdapter(cfg) {
|
|
|
444
444
|
submit_endpoint: "https://app.mokahr.com/api/outer/ats-apply/website/apply",
|
|
445
445
|
submit_method: "POST",
|
|
446
446
|
submit_kind: "moka-aes",
|
|
447
|
+
endpoint_verified: true,
|
|
447
448
|
submit_notes: "Moka apply flow: GET /api/get_job_apply_form (questions) → " +
|
|
448
449
|
"POST /applicant-limit-check (rate-limit) → POST /getValidateConfig + " +
|
|
449
450
|
"/sendApplyValidateSmsCode (if SMS required) → POST /website/apply with " +
|
|
450
451
|
"AES-128-CBC envelope {data, necromancer} (same encryption as the read-side " +
|
|
451
|
-
"list endpoint).
|
|
452
|
-
"
|
|
452
|
+
"list endpoint). Endpoint URL anon-probed (returns the AES envelope rather " +
|
|
453
|
+
"than HTML fallthrough — confirms it's the real route, not a guess). " +
|
|
454
|
+
"Requires candidate session — capture via extension/, drop session.json " +
|
|
455
|
+
"under ~/.jobpro/.",
|
|
453
456
|
questions,
|
|
454
457
|
},
|
|
455
458
|
};
|
package/dist/pdd.js
CHANGED
|
@@ -607,7 +607,8 @@ export async function fetchApplicationSchema(postId) {
|
|
|
607
607
|
applyUrl,
|
|
608
608
|
submitEndpoint: "https://careers.pinduoduo.com/api/recruit/v1/position/apply",
|
|
609
609
|
submitKind: "multipart-session",
|
|
610
|
-
|
|
610
|
+
endpointVerified: true,
|
|
611
|
+
submitNotes: "PDD — POST /api/recruit/v1/position/apply with session cookie. Endpoint anon-probed → returns {error_code: 40003} (real business error, not 404) — route confirmed; body shape still needs validation.",
|
|
611
612
|
}),
|
|
612
613
|
};
|
|
613
614
|
}
|
package/dist/sf.js
CHANGED
|
@@ -303,7 +303,7 @@ export async function fetchApplicationSchema(postId) {
|
|
|
303
303
|
applyUrl,
|
|
304
304
|
submitEndpoint: "https://campus.sf-express.com/api/web/position/apply",
|
|
305
305
|
submitKind: "multipart-session",
|
|
306
|
-
submitNotes: "SF Express — POST /api/web/position/apply with cr-service header + GeeTest captcha + session cookie. Endpoint
|
|
306
|
+
submitNotes: "SF Express — POST /api/web/position/apply with cr-service header + GeeTest captcha + session cookie. Endpoint anon-probed → 404; the apply route lives somewhere else (likely behind login). The detail endpoint at /api/web/position/findById/<id> is real (see fetchPositionDetail), but the apply path needs real-browser recon.",
|
|
307
307
|
}),
|
|
308
308
|
};
|
|
309
309
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "job-pro",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.39",
|
|
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",
|