Skip to content

Commit

Permalink
feat(core): Add the node version to telemetry in node_graph_string (#…
Browse files Browse the repository at this point in the history
…7449)

Github issue / Community forum post (link here to close automatically):
  • Loading branch information
michael-radency authored Nov 2, 2023
1 parent 1c77d65 commit 59dc36a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions packages/workflow/src/Interfaces.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2030,6 +2030,7 @@ export interface INoteGraphItem {
export interface INodeGraphItem {
id: string;
type: string;
version?: number;
resource?: string;
operation?: string;
domain?: string; // HTTP Request node v1
Expand Down
1 change: 1 addition & 0 deletions packages/workflow/src/TelemetryHelpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,7 @@ export function generateNodesGraph(
const nodeItem: INodeGraphItem = {
id: node.id,
type: node.type,
version: node.typeVersion,
position: node.position,
};

Expand Down

0 comments on commit 59dc36a

Please sign in to comment.