mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-10 20:37:29 -08:00
5ca2148c7e
* ⚡ Adjust `format` script * 🔥 Remove exemption for `editor-ui` * 🎨 Prettify * 👕 Fix lint
29 lines
906 B
TypeScript
29 lines
906 B
TypeScript
import { IRestApiContext } from '@/Interface';
|
|
import { PublicInstalledPackage } from 'n8n-workflow';
|
|
import { get, post, makeRestApiRequest } from '@/utils';
|
|
|
|
export async function getInstalledCommunityNodes(
|
|
context: IRestApiContext,
|
|
): Promise<PublicInstalledPackage[]> {
|
|
const response = await get(context.baseUrl, '/nodes');
|
|
return response.data || [];
|
|
}
|
|
|
|
export async function installNewPackage(
|
|
context: IRestApiContext,
|
|
name: string,
|
|
): Promise<PublicInstalledPackage> {
|
|
return await post(context.baseUrl, '/nodes', { name });
|
|
}
|
|
|
|
export async function uninstallPackage(context: IRestApiContext, name: string): Promise<void> {
|
|
return await makeRestApiRequest(context, 'DELETE', '/nodes', { name });
|
|
}
|
|
|
|
export async function updatePackage(
|
|
context: IRestApiContext,
|
|
name: string,
|
|
): Promise<PublicInstalledPackage> {
|
|
return await makeRestApiRequest(context, 'PATCH', '/nodes', { name });
|
|
}
|