feat(core, editor-ui): Introduce node deprecation (#4103)

 Introduce node deprecation
This commit is contained in:
Iván Ovejero
2022-09-15 10:52:24 +02:00
committed by GitHub
parent f40ae501b4
commit 98ed207607
4 changed files with 8 additions and 3 deletions

View File

@@ -1097,6 +1097,12 @@ export interface INodeTypeBaseDescription {
subtitle?: string;
defaultVersion?: number;
codex?: CodexData;
/**
* Whether the node must be hidden in the node creator panel,
* due to deprecation or as a special case (e.g. Start node)
*/
hidden?: true;
}
export interface INodePropertyRouting {