import { useQuery } from '@tanstack/react-query' import { databaseKeys } from './keys' import { get, handleError } from '@/data/fetchers' import type { ResponseError, UseCustomQueryOptions } from '@/types' export type DownloadableBackupVariables = { projectRef?: string } export async function getDownloadableBackup( { projectRef }: DownloadableBackupVariables, signal?: AbortSignal ) { if (!projectRef) throw new Error('Project ref is required') const { data, error } = await get(`/platform/database/{ref}/backups/downloadable-backups`, { params: { path: { ref: projectRef } }, signal, }) if (error) handleError(error) return data } export type DownloadableBackupData = Awaited> export type DownloadableBackupError = ResponseError export const useDownloadableBackupQuery = ( { projectRef }: DownloadableBackupVariables, { enabled = true, ...options }: UseCustomQueryOptions = {} ) => useQuery({ queryKey: databaseKeys.backups(projectRef), queryFn: ({ signal }) => getDownloadableBackup({ projectRef }, signal), enabled: enabled && typeof projectRef !== 'undefined', ...options, })