fix(pagination): add missing next_page to response interfaces and operator comments (#3236)

This commit is contained in:
Waleed
2026-02-17 14:13:45 -08:00
committed by GitHub
parent 08690b2906
commit 3ce54147e6
3 changed files with 3 additions and 0 deletions

View File

@@ -80,6 +80,7 @@ export const textSearchTool: ToolConfig<SupabaseTextSearchParams, SupabaseTextSe
let url = `https://${params.projectId}.supabase.co/rest/v1/${params.table}?select=*`
// Map search types to PostgREST operators
// plfts = plainto_tsquery (natural language), phfts = phraseto_tsquery, wfts = websearch_to_tsquery
const operatorMap: Record<string, string> = {
plain: 'plfts',
phrase: 'phfts',

View File

@@ -23,6 +23,7 @@ export interface ZendeskAutocompleteOrganizationsResponse {
paging?: {
after_cursor: string | null
has_more: boolean
next_page?: string | null
}
metadata: {
total_returned: number

View File

@@ -24,6 +24,7 @@ export interface ZendeskSearchUsersResponse {
paging?: {
after_cursor: string | null
has_more: boolean
next_page?: string | null
}
metadata: {
total_returned: number