in src/common/backend/FWoABackend.ts [65:76]
async delete(resourceType: string, id: string): Promise<ApiResponse> {
try {
const response = await this.client.delete(`/${resourceType}/${id}`);
return {
statusCode: response.status,
headers: response.headers,
body: response.data,
};
} catch (e: any) {
return this.handleError(e);
}
}