job-pro 1.0.55 → 1.0.57

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 CHANGED
@@ -158,6 +158,8 @@ const ENDPOINT_VERIFIED = new Set([
158
158
  "xiaohongshu",
159
159
  // probe-verified via host-root + auth-middleware (1.0.55)
160
160
  "baidu",
161
+ // probe-verified via JS-bundle string extraction (1.0.57)
162
+ "tencent",
161
163
  ]);
162
164
  const HELP = `
163
165
  job-pro — query Chinese big-tech campus recruiting from your terminal
package/dist/tencent.js CHANGED
@@ -761,9 +761,10 @@ export async function fetchApplicationSchema(postId) {
761
761
  postId: id,
762
762
  jobTitle: title,
763
763
  applyUrl,
764
- submitEndpoint: "https://join.qq.com/api/v1/position/applyResume",
764
+ submitEndpoint: "https://join.qq.com/api/v1/resume/bindResume",
765
765
  submitKind: "multipart-session",
766
- submitNotes: "Tencent join.qq.com — POST /api/v1/position/applyResume with session cookie + CSRF. Endpoint inferred from python-reference/tencent.py + WorkBuddy skill bundle; not yet verified against live submit.",
766
+ endpointVerified: true,
767
+ submitNotes: "Tencent join.qq.com — POST /api/v1/resume/bindResume with session cookie + CSRF. Endpoint extracted from join.qq.com's p_zh-cn_post_detail.build.js bundle (sibling action endpoints /openResume, /saveResumeInfo, /uploadFile all probed → 200 + {message:\"未登录或登录已过期\",status:401}). bindResume is the route that binds a saved resume to a specific post = the apply action. Body shape still needs validation against a real candidate session.",
767
768
  }),
768
769
  };
769
770
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "job-pro",
3
- "version": "1.0.55",
3
+ "version": "1.0.57",
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",