footnote-data 0.2.0 → 0.3.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 +2 -0
- package/footnote.mjs +7 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -89,6 +89,7 @@ footnote h1b employer "Databricks"
|
|
|
89
89
|
|
|
90
90
|
# Top sponsors by certified filing volume (free tier: top 25)
|
|
91
91
|
footnote h1b top-sponsors --limit 10
|
|
92
|
+
footnote h1b active-sponsors --limit 10 # certified-to-employ-today, by covered positions
|
|
92
93
|
|
|
93
94
|
# Petition OUTCOMES (USCIS) + current attestation INTENT (LCA), in one view
|
|
94
95
|
footnote sponsorship "Meta Platforms"
|
|
@@ -280,6 +281,7 @@ that apply to that call.
|
|
|
280
281
|
| `warn states` | `GET /api/data/v1/warn/states` |
|
|
281
282
|
| `h1b employer` | `GET /api/data/v1/h1b/employer` |
|
|
282
283
|
| `h1b top-sponsors` | `GET /api/data/v1/h1b/top-sponsors` |
|
|
284
|
+
| `h1b active-sponsors` | `GET /api/data/v1/h1b/active-sponsors` |
|
|
283
285
|
| `sponsorship` | `GET /api/data/v1/sponsorship/employer` |
|
|
284
286
|
| `enforcement` | `GET /api/data/v1/enforcement/employer` |
|
|
285
287
|
| `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.3.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",
|