job-pro 1.0.38 → 1.0.40

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,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/liauto.js CHANGED
@@ -386,7 +386,8 @@ export async function fetchApplicationSchema(postId) {
386
386
  applyUrl,
387
387
  submitEndpoint: "https://www.lixiang.com/api/career/apply",
388
388
  submitKind: "multipart-session",
389
- submitNotes: "Li Auto — POST /api/career/apply with session cookie. Endpoint inferred; needs validation.",
389
+ endpointVerified: true,
390
+ submitNotes: "Li Auto — POST /api/career/apply with session cookie. Endpoint anon-probed → {code: 2, msg: \"请在配置文件配置可访问域名\"} (real backend, domain ACL needs Origin/Referer headers). Body shape still needs validation.",
390
391
  }),
391
392
  };
392
393
  }
package/dist/meituan.js CHANGED
@@ -626,7 +626,8 @@ export async function fetchApplicationSchema(postId) {
626
626
  applyUrl,
627
627
  submitEndpoint: "https://zhaopin.meituan.com/api/job-apply",
628
628
  submitKind: "multipart-session",
629
- submitNotes: "Meituan — POST /api/job-apply with session cookie. Endpoint inferred; needs validation.",
629
+ endpointVerified: true,
630
+ submitNotes: "Meituan — POST /api/job-apply with session cookie. Endpoint anon-probed → {data: {errorCode: 401, message: \"未登陆\"}} (real auth gate). Body shape still needs validation.",
630
631
  }),
631
632
  };
632
633
  }
package/dist/mihoyo.js CHANGED
@@ -301,7 +301,8 @@ export async function fetchApplicationSchema(postId) {
301
301
  applyUrl,
302
302
  submitEndpoint: "https://ats.openout.mihoyo.com/ats-portal/v1/application/create",
303
303
  submitKind: "multipart-session",
304
- submitNotes: "miHoYo — POST /ats-portal/v1/application/create with session cookie. Endpoint inferred from ats.openout.mihoyo.com SPA; needs validation.",
304
+ endpointVerified: true,
305
+ submitNotes: "miHoYo — POST /ats-portal/v1/application/create with session cookie. Endpoint anon-probed → {code: -3, message: \"用户未登录或登录失效\"} (real auth gate). Body shape still needs validation.",
305
306
  }),
306
307
  };
307
308
  }
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.38",
3
+ "version": "1.0.40",
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",