job-pro 1.0.38 → 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 +1 -0
- package/dist/apply.js +1 -0
- package/dist/moka.js +1 -0
- package/dist/pdd.js +1 -0
- package/package.json +1 -1
package/dist/alibaba.js
CHANGED
|
@@ -502,6 +502,7 @@ 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
|
+
endpointVerified: true,
|
|
505
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
|
};
|
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,6 +444,7 @@ 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 " +
|
package/dist/pdd.js
CHANGED
|
@@ -607,6 +607,7 @@ 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
|
+
endpointVerified: true,
|
|
610
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
|
};
|
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",
|