Skip to content
This repository has been archived by the owner on Apr 13, 2023. It is now read-only.

fix: add missing fhirServiceBaseUrl to AuthorizationBundleRequest #78

Merged
merged 1 commit into from
Aug 19, 2021
Merged
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 src/authorization.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,11 @@ export interface AuthorizationBundleRequest {
userIdentity: KeyValueMap;
requestContext?: RequestContext;
requests: BatchReadWriteRequest[];
/**
* The FHIR server base URL. It may contain a path in addition to the hostname. See: https://www.hl7.org/fhir/http.html#root
* @example https://fhir-server/path
*/
fhirServiceBaseUrl?: string;
}

export interface AllowedResourceTypesForOperationRequest {
Expand Down