Skip to content

Commit

Permalink
Release 8.0.2-beta
Browse files Browse the repository at this point in the history
  • Loading branch information
fern-api[bot] committed Feb 16, 2024
1 parent ebaafe8 commit 998a2b2
Show file tree
Hide file tree
Showing 1,042 changed files with 60,009 additions and 470 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "metriport"
version = "8.0.1-beta"
version = "8.0.2-beta"
description = ""
readme = "README.md"
authors = []
Expand Down
6 changes: 2 additions & 4 deletions src/metriport/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
# This file was auto-generated by Fern from our API Definition.

from .resources import Address, UsState, commons, fhir, medical
from .environment import MetriportEnvironment
from . import commons
from . import fhir
from . import medical

__all__ = ["Address", "MetriportEnvironment", "fhir", "medical", "commons"]
__all__ = ["Address", "MetriportEnvironment", "UsState", "commons", "fhir", "medical"]
2 changes: 1 addition & 1 deletion src/metriport/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

from .core.client_wrapper import AsyncClientWrapper, SyncClientWrapper
from .environment import MetriportEnvironment
from .medical.client import AsyncMedicalClient, MedicalClient
from .resources.medical.client import AsyncMedicalClient, MedicalClient


class Metriport:
Expand Down
2 changes: 1 addition & 1 deletion src/metriport/core/client_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def get_headers(self) -> typing.Dict[str, str]:
headers: typing.Dict[str, str] = {
"X-Fern-Language": "Python",
"X-Fern-SDK-Name": "metriport",
"X-Fern-SDK-Version": "8.0.1-beta",
"X-Fern-SDK-Version": "8.0.2-beta",
}
headers["X-API-Key"] = self.api_key
return headers
Expand Down
183 changes: 0 additions & 183 deletions src/metriport/fhir/__init__.py

This file was deleted.

Loading

0 comments on commit 998a2b2

Please sign in to comment.