Skip to content

Commit 043ef07

Browse files
committed
Release 0.0.48
1 parent 242f543 commit 043ef07

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "axiomatic"
33

44
[tool.poetry]
55
name = "axiomatic"
6-
version = "0.0.47"
6+
version = "0.0.48"
77
description = ""
88
readme = "README.md"
99
authors = []

reference.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Reference
2-
<details><summary><code>client.<a href="src/axiomatic/client.py">trigger_error_sentry_debug_get</a>()</code></summary>
2+
<details><summary><code>client.<a href="src/axiomatic/base_client.py">trigger_error_sentry_debug_get</a>()</code></summary>
33
<dl>
44
<dd>
55

@@ -45,7 +45,7 @@ client.trigger_error_sentry_debug_get()
4545
</dl>
4646
</details>
4747

48-
<details><summary><code>client.<a href="src/axiomatic/client.py">health_check_health_check_get</a>()</code></summary>
48+
<details><summary><code>client.<a href="src/axiomatic/base_client.py">health_check_health_check_get</a>()</code></summary>
4949
<dl>
5050
<dd>
5151

src/axiomatic/client.py renamed to src/axiomatic/base_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
from .pic.client import AsyncPicClient
2929

3030

31-
class Axiomatic:
31+
class BaseClient:
3232
"""
3333
Use this class to access the different functions within the SDK. You can instantiate any number of clients with different configuration that will propagate to these functions.
3434
@@ -184,7 +184,7 @@ def health_check_health_check_get(
184184
raise ApiError(status_code=_response.status_code, body=_response_json)
185185

186186

187-
class AsyncAxiomatic:
187+
class AsyncBaseClient:
188188
"""
189189
Use this class to access the different functions within the SDK. You can instantiate any number of clients with different configuration that will propagate to these functions.
190190

src/axiomatic/core/client_wrapper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def get_headers(self) -> typing.Dict[str, str]:
1616
headers: typing.Dict[str, str] = {
1717
"X-Fern-Language": "Python",
1818
"X-Fern-SDK-Name": "axiomatic",
19-
"X-Fern-SDK-Version": "0.0.47",
19+
"X-Fern-SDK-Version": "0.0.48",
2020
}
2121
headers["X-API-Key"] = self.api_key
2222
return headers

0 commit comments

Comments
 (0)