FhirNavigator 1.0.0
dotnet add package FhirNavigator --version 1.0.0
NuGet\Install-Package FhirNavigator -Version 1.0.0
<PackageReference Include="FhirNavigator" Version="1.0.0" />
<PackageVersion Include="FhirNavigator" Version="1.0.0" />
<PackageReference Include="FhirNavigator" />
paket add FhirNavigator --version 1.0.0
#r "nuget: FhirNavigator, 1.0.0"
#:package FhirNavigator@1.0.0
#addin nuget:?package=FhirNavigator&version=1.0.0
#tool nuget:?package=FhirNavigator&version=1.0.0
FHIR Navigator
FHIR Navigator is framework for real world use of the FHIR API. It is a supporting abstraction layer around the basic FHIR interactions simplifying the most common use cases and challenges developers face when using these APIs in practice.
This package is an Non-Official support library for the amazing Official Firely .NET SDK for HL7 FHIR. This package take a hard dependency on the Hl7.Fhir.R4 NuGet package.
What does FHIR Navigator provide:
- Automated OAuth2 Authentication token renewal support (ClientId, ClientSecret, Scopes, TokenEndPoint)
- Basic Authentication support (Username/Password)
- Proxy Support
- Configure multiple named FHIR repositories, switch between each by name for FHIR API interactions
- Automated pagination support
- Resources returned via Reads or Searches are cache, allowing for simple access post query
- Automated resource reference resolution covering, Contained, Cached, and Repository
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net9.0
- Hl7.Fhir.R4 (>= 5.12.1)
- Microsoft.Extensions.Http (>= 9.0.8)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
1.0.0 contains breaking changes for consumers upgrading from 0.0.9.
BREAKING - three public types moved namespace:
Result / Result<T> -> FhirNavigator.Infrastructure (was Sonic.Fhir.Tools.Placer.Application.Infrastructure)
IFhirUriFactory -> FhirNavigator.FhirUri (was Sonic.Fhir.Tools.Placer.Application.FhirSupport)
OAuthToken -> FhirNavigator.Client.OAuthToken (was Sonic.Orders.Common.Api.OAuthToken)
Update or remove any 'using Sonic.*' directives.
BREAKING - FhirRepositorySettings.UseBearerToken is a new required member. Code that
constructs FhirRepositorySettings via an object initialiser must now set it
(e.g. UseBearerToken = false). Settings bound from appsettings.json are unaffected.
NEW - Bearer token authentication via the UseBearerToken and BearerToken settings.
NEW - The package now declares the MIT license and includes the README.
NEW - A symbol package (.snupkg) with SourceLink is published, so consumers can step
into FhirNavigator source while debugging.