type Bitbucket = {
username: string;
password: string;
};
/**
* List variables for a user
* Find user level variables.
This endpoint has been deprecated, and you should use the new workspaces endpoint. For more information, see [the announcement](https://developer.atlassian.com/cloud/bitbucket/bitbucket-api-teams-deprecation/).
*/
export async function main(auth: Bitbucket, selected_user: string) {
const url = new URL(
`https://api.bitbucket.org/2.0/users/${selected_user}/pipelines_config/variables`
);
const response = await fetch(url, {
method: "GET",
headers: {
Authorization: "Basic " + btoa(`${auth.username}:${auth.password}`),
},
body: undefined,
});
if (!response.ok) {
const text = await response.text();
throw new Error(`${response.status} ${text}`);
}
return await response.json();
}
Submitted by hugo697 407 days ago