From 177d18f3d36964137cc6c89b6305da1e8e6acfc9 Mon Sep 17 00:00:00 2001 From: Bryan Frimin Date: Tue, 3 Feb 2026 08:01:53 +0100 Subject: [PATCH] Add user agent Signed-off-by: Bryan Frimin --- packages/n8n-node/nodes/Probo/GenericFunctions.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/n8n-node/nodes/Probo/GenericFunctions.ts b/packages/n8n-node/nodes/Probo/GenericFunctions.ts index 511fd25c6..788e762f8 100644 --- a/packages/n8n-node/nodes/Probo/GenericFunctions.ts +++ b/packages/n8n-node/nodes/Probo/GenericFunctions.ts @@ -7,6 +7,8 @@ import type { } from 'n8n-workflow'; import { NodeApiError } from 'n8n-workflow'; +import { version } from '../../package.json'; + type ApiRequestFn = ( this: IExecuteFunctions | IHookFunctions, query: string, @@ -32,6 +34,7 @@ async function proboGraphqlRequest( headers: { Authorization: `Bearer ${credentials.apiKey}`, 'Content-Type': 'application/json', + 'User-Agent': `probo-n8n-node/${version}`, }, body: { query,