Skip to content

Commit 4a57017

Browse files
authored
update endedAt to be optional (#11)
1 parent 872c60d commit 4a57017

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

‎browserbase/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ class Session(BaseModel):
6161
id: str
6262
createdAt: str
6363
startedAt: str
64-
endedAt: Optional[str]
64+
endedAt: Optional[str] = None
6565
projectId: str
6666
status: Optional[SessionStatus] = None
6767
taskId: Optional[str] = None

‎pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "browserbase"
3-
version = "0.3.4"
3+
version = "0.3.5"
44
authors = [
55
{ name="Browserbase", email="support@browserbase.com" },
66
]

0 commit comments

Comments
 (0)