mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-25 20:54:07 -08:00
feat(core): Add the node version to telemetry in node_graph_string (#7449)
Github issue / Community forum post (link here to close automatically):
This commit is contained in:
parent
1c77d6597f
commit
59dc36abd9
|
@ -2030,6 +2030,7 @@ export interface INoteGraphItem {
|
||||||
export interface INodeGraphItem {
|
export interface INodeGraphItem {
|
||||||
id: string;
|
id: string;
|
||||||
type: string;
|
type: string;
|
||||||
|
version?: number;
|
||||||
resource?: string;
|
resource?: string;
|
||||||
operation?: string;
|
operation?: string;
|
||||||
domain?: string; // HTTP Request node v1
|
domain?: string; // HTTP Request node v1
|
||||||
|
|
|
@ -154,6 +154,7 @@ export function generateNodesGraph(
|
||||||
const nodeItem: INodeGraphItem = {
|
const nodeItem: INodeGraphItem = {
|
||||||
id: node.id,
|
id: node.id,
|
||||||
type: node.type,
|
type: node.type,
|
||||||
|
version: node.typeVersion,
|
||||||
position: node.position,
|
position: node.position,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue