Edits history of script submission #12711 for ' Update a branch (neondb)'

  • bun
    One script reply has been approved by the moderators
    Ap­pro­ved
    //native
    type Neondb = {
    	apiKey: string
    }
    /**
     * Update a branch
     * Updates the specified branch.
    You can obtain a `project_id` by listing the projects for your Neon account.
    You can obtain the `branch_id` by listing the project's branches.
    For more information, see [Manage branches](https://neon.tech/docs/manage/branches/).
    
     */
    export async function main(
    	auth: Neondb,
    	project_id: string,
    	branch_id: string,
    	body: { branch: { name?: string; protected?: false | true } }
    ) {
    	const url = new URL(
    		`https://console.neon.tech/api/v2/projects/${project_id}/branches/${branch_id}`
    	)
    
    	const response = await fetch(url, {
    		method: 'PATCH',
    		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