Skip to content
Merged

Dev #44

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
fef0cb2
use all medication codes not just the first in the list
plarocque4 May 2, 2025
30c8496
refactor discovery endpoint into smaller helper functions
smalho01 May 8, 2025
0b3d89a
quick bug fix
smalho01 May 8, 2025
5adedcd
Merge pull request #32 from mcode/refactor-discovery
plarocque4 May 12, 2025
c5ee418
Merge branch 'dev' into 820-all-med-codes
plarocque4 May 12, 2025
3329ccc
update vite to 5.4.19
plarocque4 May 16, 2025
b2f4fbc
Merge pull request #33 from mcode/vite-update
plarocque4 May 16, 2025
4a4c578
vite updates
smalho01 May 20, 2025
9e12345
single quote
smalho01 May 20, 2025
398a334
Merge pull request #34 from mcode/vite-config-updates
plarocque4 May 20, 2025
477359b
Merge pull request #31 from mcode/820-all-med-codes
plarocque4 May 27, 2025
88ee3dd
check all spl drugs for a rems endpoint
smalho01 Jun 10, 2025
fe41267
package ndc code updates
smalho01 Jun 10, 2025
b42af4d
Bump axios in the npm_and_yarn group across 1 directory
dependabot[bot] Jun 12, 2025
e667976
Bump elliptic in the npm_and_yarn group across 1 directory
dependabot[bot] Jun 12, 2025
85bf70c
Bump image-size in the npm_and_yarn group across 1 directory
dependabot[bot] Jun 12, 2025
8c92e6a
Bump @babel/runtime in the npm_and_yarn group across 1 directory
dependabot[bot] Jun 12, 2025
eeba233
two urls in spl and api support
smalho01 Jun 12, 2025
da10ccd
logging
smalho01 Jun 12, 2025
6d72f29
fixed spl look up bug
smalho01 Jun 13, 2025
dedb05b
logging clean up
smalho01 Jun 13, 2025
f45fab0
logging clean up
smalho01 Jun 13, 2025
f51faaa
remove all instances of auth number
smalho01 Jun 13, 2025
0cbf0d7
Merge pull request #43 from mcode/auth-case-number
plarocque4 Jun 13, 2025
2097451
Merge pull request #37 from mcode/dependabot/npm_and_yarn/npm_and_yar…
plarocque4 Jun 13, 2025
c05a986
Merge pull request #39 from mcode/dependabot/npm_and_yarn/npm_and_yar…
plarocque4 Jun 13, 2025
5432bd0
Merge pull request #40 from mcode/dependabot/npm_and_yarn/npm_and_yar…
plarocque4 Jun 13, 2025
a9e1279
Merge pull request #41 from mcode/dependabot/npm_and_yarn/npm_and_yar…
plarocque4 Jun 13, 2025
855651d
Merge branch 'dev' into two-spl-urls
smalho01 Jun 16, 2025
7eabef2
update submodule
smalho01 Jun 16, 2025
4a6352a
update product to package ndc code
smalho01 Jun 16, 2025
02f88ba
replace product ndc with package ndc name
smalho01 Jun 16, 2025
462c351
update spacing after emoji
smalho01 Jun 16, 2025
cfcec7e
update vite config
smalho01 Jun 16, 2025
b07924c
Merge branch 'dev' into two-spl-urls
smalho01 Jun 16, 2025
229066b
Merge pull request #42 from mcode/two-spl-urls
plarocque4 Jun 16, 2025
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ The FHIR Server built into the REMS Intermediary contains a REMS ETASU check at
* Input requires a parameter containing the following:
* `patient` - Patient FHIR Resource, must include `medication` with `patient`
* `medication` - Medication or MedicationRequest FHIR Resource, must include `patient` with `medication`
* `authNumber` - String containing the REMS Authorization Number, may be sent without `patient` or `medication`
* `caseNumber` - String containing the REMS Case Number, may be sent without `patient` or `medication`
* Returns a GuidanceResponse within a Parameter with the status
* Contains Nested GuidanceResponse resources for each ETASU requirement with their status

Expand Down
8 changes: 4 additions & 4 deletions frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@
"globals": "^15.9.0",
"typescript": "^5.5.3",
"typescript-eslint": "^8.0.1",
"vite": "^5.4.1"
"vite": "^5.4.19"
}
}
2 changes: 0 additions & 2 deletions frontend/src/views/Connections.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ const Connections = () => {
<TableCell align="right">Patient DOB</TableCell>
<TableCell align="right">Status</TableCell>
<TableCell align="right">Dispense Status</TableCell>
<TableCell align="left">Authorization Number</TableCell>
<TableCell align="right">Delete</TableCell>
</TableRow>
</TableHead>
Expand All @@ -100,7 +99,6 @@ const Connections = () => {
<TableCell align="right">{row.patientDOB}</TableCell>
<TableCell align="right">{row.status}</TableCell>
<TableCell align="right">{row.dispenseStatus}</TableCell>
<TableCell align="right">{row.auth_number}</TableCell>
<TableCell align="right">
{/* <IconButton
aria-label="delete"
Expand Down
6 changes: 5 additions & 1 deletion frontend/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,16 @@ export default defineConfig({
// depending on your application, base can also be "/"
base: '',
plugins: [react()],
preview: {
allowedHosts: ['.mitre.org', '.us-east-1.elb.amazonaws.com'],
},
define: {
'process.env': process.env
},
server: {
port: parseInt(process.env.FRONTEND_PORT!),
open: false,
host: true
host: true,
allowedHosts: ['.mitre.org', '.us-east-1.elb.amazonaws.com']
}
});
34 changes: 15 additions & 19 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"@types/fhir": "^0.0.35",
"@types/glob": "^8.1.0",
"adm-zip": "^0.5.16",
"axios": "^1.2.1",
"axios": "^1.9.0",
"body-parser": "^1.19.0",
"conventional-changelog-cli": "^2.0.34",
"cookie-parser": "^1.4.6",
Expand Down
Loading
Loading