//native
type Vercel = {
token: string;
};
/**
* Cancel a deployment
* This endpoint allows you to cancel a deployment which is currently building, by supplying its `id` in the URL.
*/
export async function main(
auth: Vercel,
id: string,
teamId: string | undefined,
slug: string | undefined,
) {
const url = new URL(`https://api.vercel.com/v12/deployments/${id}/cancel`);
for (const [k, v] of [
["teamId", teamId],
["slug", slug],
]) {
if (v !== undefined && v !== "" && k !== undefined) {
url.searchParams.append(k, v);
}
}
const response = await fetch(url, {
method: "PATCH",
headers: {
Authorization: "Bearer " + auth.token,
},
body: undefined,
});
if (!response.ok) {
const text = await response.text();
throw new Error(`${response.status} ${text}`);
}
return await response.json();
}
Submitted by hugo697 428 days ago