type Bitbucket = {
username: string;
password: string;
};
/**
* Delete all linker values
* Delete all linker values for the
specified linker of the authenticated application.
*/
export async function main(auth: Bitbucket, linker_key: string) {
const url = new URL(
`https://api.bitbucket.org/2.0/addon/linkers/${linker_key}/values`
);
const response = await fetch(url, {
method: "DELETE",
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.text();
}
Submitted by hugo697 375 days ago
type Bitbucket = {
username: string;
password: string;
};
/**
* Delete all linker values
* Delete all linker values for the
specified linker of the authenticated application.
*/
export async function main(auth: Bitbucket, linker_key: string) {
const url = new URL(
`https://api.bitbucket.org/2.0/addon/linkers/${linker_key}/values`
);
const response = await fetch(url, {
method: "DELETE",
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.text();
}
Submitted by hugo697 880 days ago
type Bitbucket = {
username: string;
password: string;
};
/**
* Delete all linker values
* Delete all [linker](/cloud/bitbucket/modules/linker/) values for the
specified linker of the authenticated application.
*/
export async function main(auth: Bitbucket, linker_key: string) {
const url = new URL(
`https://api.bitbucket.org/2.0/addon/linkers/${linker_key}/values`
);
const response = await fetch(url, {
method: "DELETE",
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.text();
}
Submitted by hugo697 935 days ago