File tree 2 files changed +6
-6
lines changed
src/browserbase/types/sessions
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
1
configured_endpoints : 18
2
- openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/browserbase%2Fbrowserbase-6a5cbe2f816042d594335d77f9600cd47cdb9c21d9d60971a2eca87983061c72 .yml
2
+ openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/browserbase%2Fbrowserbase-396a2b9092f645c5a9e46a1f3be8c2e45ca9ae079e1d39761eb0a73f56e24b15 .yml
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ class Request(BaseModel):
14
14
15
15
raw_body : str = FieldInfo (alias = "rawBody" )
16
16
17
- timestamp : int
17
+ timestamp : Optional [ int ] = None
18
18
"""milliseconds that have elapsed since the UNIX epoch"""
19
19
20
20
@@ -23,7 +23,7 @@ class Response(BaseModel):
23
23
24
24
result : Dict [str , object ]
25
25
26
- timestamp : int
26
+ timestamp : Optional [ int ] = None
27
27
"""milliseconds that have elapsed since the UNIX epoch"""
28
28
29
29
@@ -34,13 +34,13 @@ class SessionLog(BaseModel):
34
34
35
35
session_id : str = FieldInfo (alias = "sessionId" )
36
36
37
- timestamp : int
38
- """milliseconds that have elapsed since the UNIX epoch"""
39
-
40
37
frame_id : Optional [str ] = FieldInfo (alias = "frameId" , default = None )
41
38
42
39
loader_id : Optional [str ] = FieldInfo (alias = "loaderId" , default = None )
43
40
44
41
request : Optional [Request ] = None
45
42
46
43
response : Optional [Response ] = None
44
+
45
+ timestamp : Optional [int ] = None
46
+ """milliseconds that have elapsed since the UNIX epoch"""
You can’t perform that action at this time.
0 commit comments