Files
probo/packages/n8n-node/nodes/Probo/actions/trackerPattern/update.operation.ts
Émile Ré 31bfbefc45 Make tracker pattern displayName read-only
The displayName field was always predictable from pattern + matchType
and allowing edits added unnecessary complexity. Remove displayName
from UpdateTrackerPatternInput across all surfaces (GraphQL, MCP, CLI,
n8n) and make the frontend show it as non-editable text.

Signed-off-by: Émile Ré <emile@getprobo.com>
2026-05-11 14:52:52 +04:00

148 lines
3.7 KiB
TypeScript

// Copyright (c) 2025-2026 Probo Inc <hello@getprobo.com>.
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
// copyright notice and this permission notice appear in all copies.
//
// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
// REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
// AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
// INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
// LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
// OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
// PERFORMANCE OF THIS SOFTWARE.
import type { INodeProperties, IExecuteFunctions, INodeExecutionData } from 'n8n-workflow';
import { proboApiRequest } from '../../GenericFunctions';
export const description: INodeProperties[] = [
{
displayName: 'Tracker Pattern ID',
name: 'trackerPatternId',
type: 'string',
displayOptions: {
show: {
resource: ['trackerPattern'],
operation: ['update'],
},
},
default: '',
description: 'The ID of the tracker pattern to update',
required: true,
},
{
displayName: 'Excluded',
name: 'excluded',
type: 'options',
displayOptions: {
show: {
resource: ['trackerPattern'],
operation: ['update'],
},
},
options: [
{
name: '(Unchanged)',
value: '',
},
{
name: 'False',
value: 'false',
},
{
name: 'True',
value: 'true',
},
],
default: '',
description: 'Whether the tracker pattern is excluded from the banner',
},
{
displayName: 'Description',
name: 'patternDescription',
type: 'string',
displayOptions: {
show: {
resource: ['trackerPattern'],
operation: ['update'],
},
},
default: '',
description: 'The description of the tracker pattern',
},
{
displayName: 'Additional Fields',
name: 'additionalFields',
type: 'collection',
placeholder: 'Add Field',
default: {},
displayOptions: {
show: {
resource: ['trackerPattern'],
operation: ['update'],
},
},
options: [
{
displayName: 'Max Age Seconds',
name: 'maxAgeSeconds',
type: 'number',
typeOptions: {
minValue: 0,
},
default: 0,
description: 'The maximum age of the cookie in seconds. Set to 0 to clear the existing value.',
},
],
},
];
export async function execute(
this: IExecuteFunctions,
itemIndex: number,
): Promise<INodeExecutionData> {
const trackerPatternId = this.getNodeParameter('trackerPatternId', itemIndex) as string;
const excluded = this.getNodeParameter('excluded', itemIndex, '') as string;
const patternDescription = this.getNodeParameter('patternDescription', itemIndex, '') as string;
const additionalFields = this.getNodeParameter('additionalFields', itemIndex, {}) as {
maxAgeSeconds?: number;
};
const query = `
mutation UpdateTrackerPattern($input: UpdateTrackerPatternInput!) {
updateTrackerPattern(input: $input) {
trackerPattern {
id
pattern
matchType
displayName
maxAgeSeconds
description
source
excluded
createdAt
updatedAt
}
cookieBanner {
id
name
}
}
}
`;
const input: Record<string, unknown> = { trackerPatternId };
if (excluded) input.excluded = excluded === 'true';
if (patternDescription) input.description = patternDescription;
if (additionalFields.maxAgeSeconds !== undefined) {
input.maxAgeSeconds = additionalFields.maxAgeSeconds === 0 ? null : additionalFields.maxAgeSeconds;
}
const responseData = await proboApiRequest.call(this, query, { input });
return {
json: responseData,
pairedItem: { item: itemIndex },
};
}