//native
type Confluence = {
email: string
apiToken: string
domain: string
}
/**
* Remove modules
* Remove all or a list of modules registered by the calling app.
**[Permissions](#permissions) required:** Only Connect apps can make this request.
*/
export async function main(auth: Confluence, moduleKey: string | undefined) {
const url = new URL(`https://${auth.domain}/atlassian-connect/1/app/module/dynamic`)
for (const [k, v] of [['moduleKey', moduleKey]]) {
if (v !== undefined && v !== '' && k !== undefined) {
url.searchParams.append(k, v)
}
}
const response = await fetch(url, {
method: 'DELETE',
headers: {
Authorization: 'Basic ' + btoa(`${auth.email}:${auth.apiToken}`)
},
body: undefined
})
if (!response.ok) {
const text = await response.text()
throw new Error(`${response.status} ${text}`)
}
return await response.text()
}
Submitted by hugo697 235 days ago