Skip to content

Commit ef3642a

Browse files
feat: Cast replay page start/end times as integer
1 parent dfaea80 commit ef3642a

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 23
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/browserbase/browserbase-2118fd938d408dda6ed82d06c48b0785fad91fd54b5397acc3421a49a386c791.yml
3-
openapi_spec_hash: 8e48a39a55a11b128028b47747aea775
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/browserbase/browserbase-466614a040e7f31307530bd6ba443e714b6303eaa141904e7d32e6641d5ec55f.yml
3+
openapi_spec_hash: 2d06680e7c17847e4fbcac35124d2456
44
config_hash: 40fbac80e24faaa0dc19e93368bcd821

src/browserbase/types/sessions/replay_retrieve_response.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@
1010

1111

1212
class Page(BaseModel):
13-
end_time_ms: float = FieldInfo(alias="endTimeMs")
13+
end_time_ms: int = FieldInfo(alias="endTimeMs")
1414

1515
page_id: str = FieldInfo(alias="pageId")
1616

17-
start_time_ms: float = FieldInfo(alias="startTimeMs")
17+
start_time_ms: int = FieldInfo(alias="startTimeMs")
1818

1919
url: str
2020

0 commit comments

Comments
 (0)