export interface PublishableKey { channel: string; created_at: string; updated_at: string; expires_at?: string; scopes: string[]; token: string; workspace?: string; } export type QueryOptions = Partial<{ fields: string | string[]; offset: number; limit: number; page: number; order: string | string[]; search: string; }>;