export interface UpsertCustomTableDataResponse { success: boolean; data: T; timestamp: string; } export interface UpsertCustomTableDataParams { tableName: string; data: T; } export type UpsertCustomTableData = (params?: UpsertCustomTableDataParams) => Promise>;