job-pro 1.0.36 → 1.0.38

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 CHANGED
@@ -502,7 +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
- submitNotes: "Alibaba — POST /campus/applyPosition.json with session cookie. Alipay OAuth gates the session. Endpoint inferred; needs validation.",
505
+ 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
506
  }),
507
507
  };
508
508
  }
package/dist/moka.js CHANGED
@@ -448,8 +448,10 @@ export function createAdapter(cfg) {
448
448
  "POST /applicant-limit-check (rate-limit) → POST /getValidateConfig + " +
449
449
  "/sendApplyValidateSmsCode (if SMS required) → POST /website/apply with " +
450
450
  "AES-128-CBC envelope {data, necromancer} (same encryption as the read-side " +
451
- "list endpoint). Requires candidate session capture via extension/, drop " +
452
- "session.json under ~/.jobpro/. Multi-step submitter wires in next iteration.",
451
+ "list endpoint). Endpoint URL anon-probed (returns the AES envelope rather " +
452
+ "than HTML fallthrough confirms it's the real route, not a guess). " +
453
+ "Requires candidate session — capture via extension/, drop session.json " +
454
+ "under ~/.jobpro/.",
453
455
  questions,
454
456
  },
455
457
  };
package/dist/pdd.js CHANGED
@@ -607,7 +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
- submitNotes: "PDD — POST /api/recruit/v1/position/apply with session cookie. Endpoint inferred; needs validation.",
610
+ 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
611
  }),
612
612
  };
613
613
  }
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 inferred; needs validation.",
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.36",
3
+ "version": "1.0.38",
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",