footnote-data 0.2.0 → 0.4.0
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/README.md +7 -3
- package/footnote.mjs +7 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,8 +8,10 @@ and severance terms parsed from SEC filings. Counts are measured, matches are
|
|
|
8
8
|
exact-or-absent, and absence of evidence is always distinguished from evidence
|
|
9
9
|
of absence.
|
|
10
10
|
|
|
11
|
-
Free keys get trust/posture answers (WARN, H-1B, debarment)
|
|
12
|
-
|
|
11
|
+
Free keys get trust/posture answers (WARN, H-1B, debarment) — 50 calls/day over the
|
|
12
|
+
last 30 days. **Developer** ($29/mo) keeps the same datasets at 1,000 calls/day with a
|
|
13
|
+
year of WARN depth. The volume/series datasets — H-2, PERM, OPT — are **Data Pro**
|
|
14
|
+
($79/mo or $790/yr, 10,000 calls/day, 24-month window); a free or Developer key hitting
|
|
13
15
|
them gets a `403 upgrade_required` that names the dataset and the way up, never
|
|
14
16
|
a silent 404. `footnote datasets` lists every holding with its `access` tier.
|
|
15
17
|
|
|
@@ -58,7 +60,7 @@ for live data.
|
|
|
58
60
|
### WARN layoff notices
|
|
59
61
|
|
|
60
62
|
```bash
|
|
61
|
-
# Recent notices, newest first (free
|
|
63
|
+
# Recent notices, newest first (free: last 30 days · Developer: last 365 · Pro: 24 months)
|
|
62
64
|
footnote warn recent --state CA --days 14 --limit 25
|
|
63
65
|
|
|
64
66
|
# Search by employer across states with a date window and pagination
|
|
@@ -89,6 +91,7 @@ footnote h1b employer "Databricks"
|
|
|
89
91
|
|
|
90
92
|
# Top sponsors by certified filing volume (free tier: top 25)
|
|
91
93
|
footnote h1b top-sponsors --limit 10
|
|
94
|
+
footnote h1b active-sponsors --limit 10 # certified-to-employ-today, by covered positions
|
|
92
95
|
|
|
93
96
|
# Petition OUTCOMES (USCIS) + current attestation INTENT (LCA), in one view
|
|
94
97
|
footnote sponsorship "Meta Platforms"
|
|
@@ -280,6 +283,7 @@ that apply to that call.
|
|
|
280
283
|
| `warn states` | `GET /api/data/v1/warn/states` |
|
|
281
284
|
| `h1b employer` | `GET /api/data/v1/h1b/employer` |
|
|
282
285
|
| `h1b top-sponsors` | `GET /api/data/v1/h1b/top-sponsors` |
|
|
286
|
+
| `h1b active-sponsors` | `GET /api/data/v1/h1b/active-sponsors` |
|
|
283
287
|
| `sponsorship` | `GET /api/data/v1/sponsorship/employer` |
|
|
284
288
|
| `enforcement` | `GET /api/data/v1/enforcement/employer` |
|
|
285
289
|
| `litigation` | `GET /api/data/v1/litigation/employer` |
|
package/footnote.mjs
CHANGED
|
@@ -82,6 +82,13 @@ export const COMMANDS = [
|
|
|
82
82
|
summary: "Top H-1B sponsors by certified filing volume",
|
|
83
83
|
flags: { limit: "posInt" },
|
|
84
84
|
},
|
|
85
|
+
{
|
|
86
|
+
name: "h1b active-sponsors",
|
|
87
|
+
path: "/api/data/v1/h1b/active-sponsors",
|
|
88
|
+
route: "app/api/data/v1/h1b/active-sponsors/route.ts",
|
|
89
|
+
summary: "Employers with certified LCA windows covering today, by covered positions",
|
|
90
|
+
flags: { limit: "posInt" },
|
|
91
|
+
},
|
|
85
92
|
{
|
|
86
93
|
name: "sponsorship",
|
|
87
94
|
path: "/api/data/v1/sponsorship/employer",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "footnote-data",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "The official Footnote CLI \u2014 career intelligence from the public record: WARN layoffs, H-1B & green-card sponsorship, H-2 seasonal labor, PERM, OPT, DOL debarment, certified wages, and federal enforcement, straight from usefootnote.com's Data API.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"layoffs",
|