type Bitbucket = {
username: string;
password: string;
};
/**
* Update a variable for a team
* Update a team level variable.
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,
username: string,
variable_uuid: string,
body: { type: string; [k: string]: unknown } & {
uuid?: string;
key?: string;
value?: string;
secured?: boolean;
[k: string]: unknown;
}
) {
const url = new URL(
`https://api.bitbucket.org/2.0/teams/${username}/pipelines_config/variables/${variable_uuid}`
);
const response = await fetch(url, {
method: "PUT",
headers: {
"Content-Type": "application/json",
Authorization: "Basic " + btoa(`${auth.username}:${auth.password}`),
},
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 375 days ago
type Bitbucket = {
username: string;
password: string;
};
/**
* Update a variable for a team
* Update a team level variable.
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,
username: string,
variable_uuid: string,
body: { type: string; [k: string]: unknown } & {
uuid?: string;
key?: string;
value?: string;
secured?: boolean;
[k: string]: unknown;
}
) {
const url = new URL(
`https://api.bitbucket.org/2.0/teams/${username}/pipelines_config/variables/${variable_uuid}`
);
const response = await fetch(url, {
method: "PUT",
headers: {
"Content-Type": "application/json",
Authorization: "Basic " + btoa(`${auth.username}:${auth.password}`),
},
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 929 days ago
type Bitbucket = {
username: string;
password: string;
};
/**
* Update a variable for a team
* Update a team level variable.
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,
variable_uuid: string,
body: { type: string; [k: string]: unknown } & {
uuid?: string;
key?: string;
value?: string;
secured?: boolean;
[k: string]: unknown;
}
) {
const url = new URL(
`https://api.bitbucket.org/2.0/teams/${auth.auth.username}/pipelines_config/variables/${variable_uuid}`
);
const response = await fetch(url, {
method: "PUT",
headers: {
"Content-Type": "application/json",
Authorization: "Basic " + btoa(`${auth.username}:${auth.password}`),
},
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 935 days ago