mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
feat(editor): Distinguish official verified nodes from community built nodes (#15630)
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
import type { INodeTypeDescription } from 'n8n-workflow';
|
||||
|
||||
export interface CommunityNodeAttributes {
|
||||
export type CommunityNodeType = {
|
||||
authorGithubUrl: string;
|
||||
authorName: string;
|
||||
checksum: string;
|
||||
@@ -13,11 +13,8 @@ export interface CommunityNodeAttributes {
|
||||
createdAt: string;
|
||||
updatedAt: string;
|
||||
npmVersion: string;
|
||||
}
|
||||
|
||||
export interface CommunityNodeData {
|
||||
id: number;
|
||||
attributes: CommunityNodeAttributes & {
|
||||
nodeDescription: INodeTypeDescription;
|
||||
};
|
||||
}
|
||||
isOfficialNode: boolean;
|
||||
companyName?: string;
|
||||
nodeDescription: INodeTypeDescription;
|
||||
isInstalled: boolean;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user