job-pro 1.0.52 → 1.0.53
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/bilibili.js +3 -2
- package/dist/index.js +2 -0
- package/package.json +1 -1
package/dist/bilibili.js
CHANGED
|
@@ -446,9 +446,10 @@ export async function fetchApplicationSchema(postId) {
|
|
|
446
446
|
postId: id,
|
|
447
447
|
jobTitle: title,
|
|
448
448
|
applyUrl,
|
|
449
|
-
submitEndpoint: "https://jobs.bilibili.com/api/post/apply",
|
|
449
|
+
submitEndpoint: "https://jobs.bilibili.com/api/portal/post/apply",
|
|
450
450
|
submitKind: "multipart-session",
|
|
451
|
-
|
|
451
|
+
endpointVerified: true,
|
|
452
|
+
submitNotes: "Bilibili — POST /api/portal/post/apply with ajSessionId cookie. Endpoint anon-probed → HTTP 200 + {code:-101, msg:\"ajSessionId不能为空\"} (real apply route; original /api/post/apply returns structured 404, but the /api/portal/* sub-tree is the real customer-facing one). Body shape still needs validation.",
|
|
452
453
|
}),
|
|
453
454
|
};
|
|
454
455
|
}
|
package/dist/index.js
CHANGED
|
@@ -152,6 +152,8 @@ const ENDPOINT_VERIFIED = new Set([
|
|
|
152
152
|
"netease", "didi", "pingan",
|
|
153
153
|
// probe-verified via re-routed sub-tree + JWT gateway response (1.0.52)
|
|
154
154
|
"byd",
|
|
155
|
+
// probe-verified via re-routed sub-tree (1.0.53)
|
|
156
|
+
"bilibili",
|
|
155
157
|
]);
|
|
156
158
|
const HELP = `
|
|
157
159
|
job-pro — query Chinese big-tech campus recruiting from your terminal
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "job-pro",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.53",
|
|
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",
|