Skip to content

Commit

Permalink
Release 0.0.0-alpha7
Browse files Browse the repository at this point in the history
  • Loading branch information
fern-api[bot] committed Oct 23, 2024
1 parent 2ae8051 commit aa68985
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions poetry.lock

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

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 = "vapi_server_sdk"
version = "0.0.0-alpha6"
version = "0.0.0-alpha7"
description = ""
readme = "README.md"
authors = []
Expand Down
2 changes: 1 addition & 1 deletion reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -3560,7 +3560,7 @@ for page in response.iter_pages():
<dl>
<dd>

**page:** `typing.Optional[float]` — This is the page number to return. Defaults to 1.
**page:** `typing.Optional[int]` — This is the page number to return. Defaults to 1.

</dd>
</dl>
Expand Down
2 changes: 1 addition & 1 deletion src/vapi/core/client_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def get_headers(self) -> typing.Dict[str, str]:
headers: typing.Dict[str, str] = {
"X-Fern-Language": "Python",
"X-Fern-SDK-Name": "vapi_server_sdk",
"X-Fern-SDK-Version": "0.0.0-alpha6",
"X-Fern-SDK-Version": "0.0.0-alpha7",
}
headers["Authorization"] = f"Bearer {self._get_token()}"
return headers
Expand Down
8 changes: 4 additions & 4 deletions src/vapi/logs/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def get(
customer_id: typing.Optional[str] = None,
squad_id: typing.Optional[str] = None,
call_id: typing.Optional[str] = None,
page: typing.Optional[float] = None,
page: typing.Optional[int] = None,
sort_order: typing.Optional[LogsGetRequestSortOrder] = None,
limit: typing.Optional[float] = None,
created_at_gt: typing.Optional[dt.datetime] = None,
Expand Down Expand Up @@ -68,7 +68,7 @@ def get(
call_id : typing.Optional[str]
This is the ID of the call.
page : typing.Optional[float]
page : typing.Optional[int]
This is the page number to return. Defaults to 1.
sort_order : typing.Optional[LogsGetRequestSortOrder]
Expand Down Expand Up @@ -202,7 +202,7 @@ async def get(
customer_id: typing.Optional[str] = None,
squad_id: typing.Optional[str] = None,
call_id: typing.Optional[str] = None,
page: typing.Optional[float] = None,
page: typing.Optional[int] = None,
sort_order: typing.Optional[LogsGetRequestSortOrder] = None,
limit: typing.Optional[float] = None,
created_at_gt: typing.Optional[dt.datetime] = None,
Expand Down Expand Up @@ -239,7 +239,7 @@ async def get(
call_id : typing.Optional[str]
This is the ID of the call.
page : typing.Optional[float]
page : typing.Optional[int]
This is the page number to return. Defaults to 1.
sort_order : typing.Optional[LogsGetRequestSortOrder]
Expand Down

0 comments on commit aa68985

Please sign in to comment.