Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update programs for 2024-04-22 #2375

Merged
merged 1 commit into from
Apr 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions scripts/import-programs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,11 @@ fs.createReadStream(file)
}
}

if (!data.id) {
console.error('No ID set for program, make sure to set an ID in the spreadsheet', data)
process.exit(1)
}

states[code]!.programs.push({
id: data.id,
fullName: data.Program,
Expand Down
14 changes: 7 additions & 7 deletions services/app-web/src/common-code/data/statePrograms.json
Original file line number Diff line number Diff line change
Expand Up @@ -751,11 +751,6 @@
"fullName": "Health and Recovery Plans",
"name": "HARP"
},
{
"id": "f3dc5e6e-e936-453f-b077-b66c99f88f04",
"fullName": "Medicaid Advantage",
"name": "MA"
},
{
"id": "1d9dbd18-9c31-41b8-a287-727e51949908",
"fullName": "Medicaid Managed Care",
Expand All @@ -768,8 +763,8 @@
},
{
"id": "6c94f55a-79a7-4e65-97cf-a3f6fdf40455",
"fullName": "Managed Long Term Care",
"name": "MLTC"
"fullName": "Partial Capitation",
"name": "Partial Capitation"
},
{
"id": "01e1c24b-14aa-40bb-9365-a17271468bd2",
Expand Down Expand Up @@ -850,6 +845,11 @@
{
"name": "Pennsylvania",
"programs": [
{
"id": "2dcfebda-7910-4c3d-a19f-174ee4c75cc0",
"fullName": "Adult Community Autism Program",
"name": "ACAP"
},
{
"id": "ef45f326-8b3a-44a9-aac6-8fa73400680a",
"fullName": "HealthChoices Physical Health",
Expand Down
Loading