Skip to content

Commit 57f01ee

Browse files
feat(api): api update (#128)
1 parent 6ef46ba commit 57f01ee

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.stats.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
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

src/resources/sessions/logs.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,18 +19,18 @@ export interface SessionLog {
1919

2020
sessionId: string;
2121

22-
/**
23-
* milliseconds that have elapsed since the UNIX epoch
24-
*/
25-
timestamp: number;
26-
2722
frameId?: string;
2823

2924
loaderId?: string;
3025

3126
request?: SessionLog.Request;
3227

3328
response?: SessionLog.Response;
29+
30+
/**
31+
* milliseconds that have elapsed since the UNIX epoch
32+
*/
33+
timestamp?: number;
3434
}
3535

3636
export namespace SessionLog {
@@ -42,7 +42,7 @@ export namespace SessionLog {
4242
/**
4343
* milliseconds that have elapsed since the UNIX epoch
4444
*/
45-
timestamp: number;
45+
timestamp?: number;
4646
}
4747

4848
export interface Response {
@@ -53,7 +53,7 @@ export namespace SessionLog {
5353
/**
5454
* milliseconds that have elapsed since the UNIX epoch
5555
*/
56-
timestamp: number;
56+
timestamp?: number;
5757
}
5858
}
5959

0 commit comments

Comments
 (0)