Skip to content

Commit d39e63c

Browse files
committed
fix(bigquery): set pageToken visibility to user-or-llm for pagination
1 parent cd323d8 commit d39e63c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

apps/sim/tools/google_bigquery/list_datasets.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export const listDatasetsTool: ToolConfig<
4040
pageToken: {
4141
type: 'string',
4242
required: false,
43-
visibility: 'hidden',
43+
visibility: 'user-or-llm',
4444
description: 'Token for pagination',
4545
},
4646
},

apps/sim/tools/google_bigquery/list_tables.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export const listTablesTool: ToolConfig<
4646
pageToken: {
4747
type: 'string',
4848
required: false,
49-
visibility: 'hidden',
49+
visibility: 'user-or-llm',
5050
description: 'Token for pagination',
5151
},
5252
},

0 commit comments

Comments
 (0)