You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: package.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "jd-intel",
3
-
"version": "0.5.0",
3
+
"version": "0.6.0",
4
4
"description": "Fetch and normalize job descriptions across every major ATS (Greenhouse, Lever, Ashby, Workday, and more) — for your AI assistant, no copy-paste.",
Copy file name to clipboardExpand all lines: src/index.js
+24-5Lines changed: 24 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -16,6 +16,7 @@ import { applyFilters } from './filters.js';
16
16
* @param {Object} options
17
17
* @param {string} options.company - Company slug or name
18
18
* @param {string} [options.ats] - Specific ATS platform. If omitted, auto-detects.
19
+
* @param {object} [options.config] - Adapter-specific config (e.g. Workday {tenant, env, site}). Bypasses the registry; the only way to reach a Workday company not in the registry.
19
20
* @param {string} [options.titleFilter] - Regex matched against title only. Use for role identity ("product manager", "staff engineer").
20
21
* @param {string} [options.filter] - Regex matched across title, department, description. Use for topic/scope.
21
22
* @param {number} [options.postedWithinDays] - Only return jobs posted within N days.
@@ -27,6 +28,7 @@ import { applyFilters } from './filters.js';
27
28
exportasyncfunctionfetchJobs({
28
29
company,
29
30
ats,
31
+
config,
30
32
titleFilter,
31
33
filter,
32
34
postedWithinDays,
@@ -49,16 +51,33 @@ export async function fetchJobs({
0 commit comments