Edits history of script submission #15325 for ' Remove modules (confluence)'

  • bun
    One script reply has been approved by the moderators
    Ap­pro­ved
    //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