Skip to content

Commit aa68985

Browse files
committed
Release 0.0.0-alpha7
1 parent 2ae8051 commit aa68985

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

poetry.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "vapi_server_sdk"
3-
version = "0.0.0-alpha6"
3+
version = "0.0.0-alpha7"
44
description = ""
55
readme = "README.md"
66
authors = []

reference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3560,7 +3560,7 @@ for page in response.iter_pages():
35603560
<dl>
35613561
<dd>
35623562

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

35653565
</dd>
35663566
</dl>

src/vapi/core/client_wrapper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def get_headers(self) -> typing.Dict[str, str]:
2222
headers: typing.Dict[str, str] = {
2323
"X-Fern-Language": "Python",
2424
"X-Fern-SDK-Name": "vapi_server_sdk",
25-
"X-Fern-SDK-Version": "0.0.0-alpha6",
25+
"X-Fern-SDK-Version": "0.0.0-alpha7",
2626
}
2727
headers["Authorization"] = f"Bearer {self._get_token()}"
2828
return headers

src/vapi/logs/client.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def get(
3131
customer_id: typing.Optional[str] = None,
3232
squad_id: typing.Optional[str] = None,
3333
call_id: typing.Optional[str] = None,
34-
page: typing.Optional[float] = None,
34+
page: typing.Optional[int] = None,
3535
sort_order: typing.Optional[LogsGetRequestSortOrder] = None,
3636
limit: typing.Optional[float] = None,
3737
created_at_gt: typing.Optional[dt.datetime] = None,
@@ -68,7 +68,7 @@ def get(
6868
call_id : typing.Optional[str]
6969
This is the ID of the call.
7070
71-
page : typing.Optional[float]
71+
page : typing.Optional[int]
7272
This is the page number to return. Defaults to 1.
7373
7474
sort_order : typing.Optional[LogsGetRequestSortOrder]
@@ -202,7 +202,7 @@ async def get(
202202
customer_id: typing.Optional[str] = None,
203203
squad_id: typing.Optional[str] = None,
204204
call_id: typing.Optional[str] = None,
205-
page: typing.Optional[float] = None,
205+
page: typing.Optional[int] = None,
206206
sort_order: typing.Optional[LogsGetRequestSortOrder] = None,
207207
limit: typing.Optional[float] = None,
208208
created_at_gt: typing.Optional[dt.datetime] = None,
@@ -239,7 +239,7 @@ async def get(
239239
call_id : typing.Optional[str]
240240
This is the ID of the call.
241241
242-
page : typing.Optional[float]
242+
page : typing.Optional[int]
243243
This is the page number to return. Defaults to 1.
244244
245245
sort_order : typing.Optional[LogsGetRequestSortOrder]

0 commit comments

Comments
 (0)