Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .fern/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
"enabled": true
}
},
"originGitCommit": "788cec0a9a7651caf2b106634631d487dfa16704",
"originGitCommit": "64f369254225bd6c2d4c58d87f59165d7e8e8dc9",
"originGitCommitIsDirty": true,
"invokedBy": "ci",
"requestedVersion": "AUTO",
"ciProvider": "unknown",
"sdkVersion": "16.1.0"
"sdkVersion": "16.2.0"
}
10 changes: 8 additions & 2 deletions .fern/replay.lock

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

4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## [16.2.0] - 2026-06-15
### Added
- **`Provider`** — `"aidbox"` is now a supported FHIR provider value in the `Provider` union type.

## [16.1.0] - 2026-06-15
### Added
- **`ConditionOccurrenceRow.visit_occurrence_id`**, **`DrugExposureRow.visit_occurrence_id`**, **`MeasurementRow.visit_occurrence_id`**, **`ObservationRow.visit_occurrence_id`**, and **`ProcedureOccurrenceRow.visit_occurrence_id`** — new optional field linking each clinical OMOP row back to its `visit_occurrence` row.
Expand Down
5 changes: 3 additions & 2 deletions code-examples.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"metadata": {
"language": "python",
"packageName": "phenoml",
"sdkVersion": "16.1.0",
"specCommit": "788cec0a9a7651caf2b106634631d487dfa16704",
"sdkVersion": "16.2.0",
"specCommit": "64f369254225bd6c2d4c58d87f59165d7e8e8dc9",
"generatorName": "fernapi/fern-python-sdk"
},
"renderRules": {
Expand Down Expand Up @@ -2196,6 +2196,7 @@
"kind": "enum",
"required": true,
"enumValues": [
"aidbox",
"athenahealth",
"canvas",
"cerner",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ dynamic = ["version"]

[tool.poetry]
name = "phenoml"
version = "16.1.0"
version = "16.2.0"
description = ""
readme = "README.md"
authors = []
Expand Down
4 changes: 2 additions & 2 deletions src/phenoml/core/client_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ def get_headers(self) -> typing.Dict[str, str]:
import platform

headers: typing.Dict[str, str] = {
"User-Agent": "phenoml/16.1.0",
"User-Agent": "phenoml/16.2.0",
"X-Fern-Language": "Python",
"X-Fern-Runtime": f"python/{platform.python_version()}",
"X-Fern-Platform": f"{platform.system().lower()}/{platform.release()}",
"X-Fern-SDK-Name": "phenoml",
"X-Fern-SDK-Version": "16.1.0",
"X-Fern-SDK-Version": "16.2.0",
**(self.get_custom_headers() or {}),
}
token = self._get_token()
Expand Down
1 change: 1 addition & 0 deletions src/phenoml/fhir_provider/types/provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

Provider = typing.Union[
typing.Literal[
"aidbox",
"athenahealth",
"canvas",
"cerner",
Expand Down
3 changes: 2 additions & 1 deletion src/phenoml/openapi/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"openapi": "3.0.3",
"info": {
"title": "Phenoml API",
"version": "788cec0a9a7651caf2b106634631d487dfa16704"
"version": "64f369254225bd6c2d4c58d87f59165d7e8e8dc9"
},
"x-services": [
{
Expand Down Expand Up @@ -9323,6 +9323,7 @@
"type": "string",
"description": "Type of FHIR server provider.\n\nThe \"sandbox\" provider type is managed internally and cannot be created via API.\nIt is used on shared instances.\n",
"enum": [
"aidbox",
"athenahealth",
"canvas",
"cerner",
Expand Down
Loading