mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
* 👕 Move `consistent-type-imports` to top level * 👕 Apply lintfixes * 👕 Apply more lintfixes * 👕 More lintfixes * 👕 More lintfixes
29 lines
916 B
TypeScript
29 lines
916 B
TypeScript
import type { IRestApiContext } from '@/Interface';
|
|
import type { 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 });
|
|
}
|