//native
type Vercel = {
token: string;
};
/**
* Retrieve the environment variables of a project by id or name
* Retrieve the environment variables for a given project by passing either the project `id` or `name` in the URL.
*/
export async function main(
auth: Vercel,
idOrName: string,
gitBranch: string | undefined,
decrypt: "true" | "false" | undefined,
source: string | undefined,
customEnvironmentId: string | undefined,
customEnvironmentSlug: string | undefined,
teamId: string | undefined,
slug: string | undefined,
) {
const url = new URL(`https://api.vercel.com/v10/projects/${idOrName}/env`);
for (const [k, v] of [
["gitBranch", gitBranch],
["decrypt", decrypt],
["source", source],
["customEnvironmentId", customEnvironmentId],
["customEnvironmentSlug", customEnvironmentSlug],
["teamId", teamId],
["slug", slug],
]) {
if (v !== undefined && v !== "" && k !== undefined) {
url.searchParams.append(k, v);
}
}
const response = await fetch(url, {
method: "GET",
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