//native
type Neondb = {
apiKey: string
}
/**
* Restore a branch
* Restores a branch to an earlier state in its own or another branch's history
*/
export async function main(
auth: Neondb,
project_id: string,
branch_id: string,
body: {
source_branch_id: string
source_lsn?: string
source_timestamp?: string
preserve_under_name?: string
}
) {
const url = new URL(
`https://console.neon.tech/api/v2/projects/${project_id}/branches/${branch_id}/restore`
)
const response = await fetch(url, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
Authorization: 'Bearer ' + auth.apiKey
},
body: JSON.stringify(body)
})
if (!response.ok) {
const text = await response.text()
throw new Error(`${response.status} ${text}`)
}
return await response.json()
}
Submitted by hugo697 428 days ago