Skip to content

Commit

Permalink
Merge pull request #500 from lifeomic/files-url
Browse files Browse the repository at this point in the history
feat: add FHIR files endpoint
  • Loading branch information
swain committed Dec 14, 2023
2 parents 1e792be + 33f4dad commit e944f8e
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/types/rest-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -119,4 +119,17 @@ export type RestAPIEndpoints = FhirAPIEndpoints & {
Request: { projectId: string };
Response: AppConfig;
};

'GET /v1/fhir/files/projects/:projectId/files/:fileId': {
Request: {
include?: 'downloadUrl';
};
Response: {
/**
* Consider this value non-optional if you specified `include=downloadUrl`
* in the request.
*/
downloadUrl?: string;
};
};
};

0 comments on commit e944f8e

Please sign in to comment.