Skip to content

Commit 5e0b616

Browse files
committed
fix(google-vault): pageToken should be user-or-llm visibility, not hidden
Greptile review: hidden is reserved for framework-injected tokens; pageToken in list_saved_queries.ts should be user-or-llm so an agent/user can pass it, matching the pattern used elsewhere for tool-supplied pagination cursors.
1 parent 459d8d1 commit 5e0b616

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/sim/tools/google_vault/list_saved_queries.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export const listSavedQueriesTool: ToolConfig<GoogleVaultListSavedQueriesParams>
3535
pageToken: {
3636
type: 'string',
3737
required: false,
38-
visibility: 'hidden',
38+
visibility: 'user-or-llm',
3939
description: 'Token for pagination',
4040
},
4141
savedQueryId: {

0 commit comments

Comments
 (0)