Skip to content

Commit ca74f29

Browse files
committed
fix(parallel): make url/title nullable in types to match transformResponse
1 parent 2df13b6 commit ca74f29

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

apps/sim/tools/parallel/types.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ export interface ParallelSearchParams {
1212
}
1313

1414
export interface ParallelSearchResult {
15-
url: string
16-
title: string
15+
url: string | null
16+
title: string | null
1717
publish_date?: string | null
1818
excerpts: string[]
1919
}
@@ -34,7 +34,7 @@ export interface ParallelExtractParams {
3434
}
3535

3636
export interface ParallelExtractResult {
37-
url: string
37+
url: string | null
3838
title?: string | null
3939
publish_date?: string | null
4040
excerpts?: string[]

0 commit comments

Comments
 (0)