Release 17.0.0: add batch Lang2FHIR APIs - #224
Merged
Merged
Conversation
Generated by Fern CLI Version: unknown Generators: - fernapi/fern-python-sdk: 5.18.1
🌿 Generated with Fern
Patches applied (1): - patch-6516695e: Release 15.0.2: restore bundled openapi.json packaging (#169)
🌿 Generated with Fern
…e8991d4a27822bde [skip ci]
…e8991d4a27822bde [skip ci]
gavinsharp
approved these changes
Sep 9, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
16.11.0 → 17.0.0
Major release adding batch FHIR extraction and immutable profile-version clients. Core profile response fields are now guaranteed by the API and exposed as required Python types.
Breaking Changes
ProfileSummary—id,source,resource_type,url,version,fhir_version,implementation_guide,created_at, andupdated_atare now required; removeNoneguards for these fields.ProfileListResponse.profiles— changed fromOptional[List[ProfileSummary]]toList[ProfileSummary]; removeNoneguards for this field.ProfileGetResponse.structure_definition— changed fromOptional[FhirResource]toFhirResource; removeNoneguards for this field.Added
client.lang2fhir_batch— new sync and async client for batch FHIR extraction, supportingcreate(...),upload_item(...),finalize(...),cancel(...),get(...),get_results(...),get_result(...), andlist(...)across the job lifecycle.BatchJob,BatchItemStatus,BatchCounts,BatchError,JobDetailResponse,JobListResponse,ResultsPageResponse, andUploadItemResponse— new Pydantic models supporting the batch extraction API.client.profiles.versions— new sync and async client for immutable StructureDefinition versions, withlist(...),create(...),get(...), anddelete(...)methods.ProfileSummary.status,ProfileSummary.date, andProfileSummary.canonical— new optional fields exposing each profile's publication status, authored date, and canonical URL; profile update and batch methods can now raiseConflictErrorfor HTTP 409 responses.Migration notes
Use the profile response fields directly instead of treating them as optional; no endpoint call signatures were removed or renamed.