Add cookie banner operations to n8n node

Adds four new resources (cookieBanner, cookieCategory,
cookiePattern, cookieConsentRecord) covering all mutations
and queries from the cookie banner GraphQL resolvers.

Signed-off-by: Émile Ré <emile@getprobo.com>
This commit is contained in:
Émile Ré
2026-05-01 16:57:41 +04:00
parent 1d08760d3b
commit 6f849b36a1
29 changed files with 2764 additions and 0 deletions

View File

@@ -0,0 +1,134 @@
// 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: 'Cookie Banner ID',
name: 'cookieBannerId',
type: 'string',
displayOptions: {
show: {
resource: ['cookieCategory'],
operation: ['create'],
},
},
default: '',
description: 'The ID of the cookie banner',
required: true,
},
{
displayName: 'Name',
name: 'name',
type: 'string',
displayOptions: {
show: {
resource: ['cookieCategory'],
operation: ['create'],
},
},
default: '',
description: 'The name of the cookie category',
required: true,
},
{
displayName: 'Slug',
name: 'slug',
type: 'string',
displayOptions: {
show: {
resource: ['cookieCategory'],
operation: ['create'],
},
},
default: '',
description: 'The slug of the cookie category',
required: true,
},
{
displayName: 'Description',
name: 'description',
type: 'string',
displayOptions: {
show: {
resource: ['cookieCategory'],
operation: ['create'],
},
},
default: '',
description: 'The description of the cookie category',
required: true,
},
{
displayName: 'Rank',
name: 'rank',
type: 'number',
displayOptions: {
show: {
resource: ['cookieCategory'],
operation: ['create'],
},
},
default: 0,
description: 'The display order rank of the cookie category',
required: true,
},
];
export async function execute(
this: IExecuteFunctions,
itemIndex: number,
): Promise<INodeExecutionData> {
const cookieBannerId = this.getNodeParameter('cookieBannerId', itemIndex) as string;
const name = this.getNodeParameter('name', itemIndex) as string;
const slug = this.getNodeParameter('slug', itemIndex) as string;
const description = this.getNodeParameter('description', itemIndex) as string;
const rank = this.getNodeParameter('rank', itemIndex) as number;
const query = `
mutation CreateCookieCategory($input: CreateCookieCategoryInput!) {
createCookieCategory(input: $input) {
cookieCategoryEdge {
node {
id
name
slug
description
kind
rank
gcmConsentTypes
posthogConsent
createdAt
updatedAt
}
}
cookieBanner {
id
name
}
}
}
`;
const responseData = await proboApiRequest.call(this, query, {
input: { cookieBannerId, name, slug, description, rank },
});
return {
json: responseData,
pairedItem: { item: itemIndex },
};
}

View File

@@ -0,0 +1,59 @@
// 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: 'Cookie Category ID',
name: 'cookieCategoryId',
type: 'string',
displayOptions: {
show: {
resource: ['cookieCategory'],
operation: ['delete'],
},
},
default: '',
description: 'The ID of the cookie category to delete',
required: true,
},
];
export async function execute(
this: IExecuteFunctions,
itemIndex: number,
): Promise<INodeExecutionData> {
const cookieCategoryId = this.getNodeParameter('cookieCategoryId', itemIndex) as string;
const query = `
mutation DeleteCookieCategory($input: DeleteCookieCategoryInput!) {
deleteCookieCategory(input: $input) {
deletedCookieCategoryId
cookieBanner {
id
name
}
}
}
`;
const responseData = await proboApiRequest.call(this, query, { input: { cookieCategoryId } });
return {
json: responseData,
pairedItem: { item: itemIndex },
};
}

View File

@@ -0,0 +1,66 @@
// 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: 'Cookie Category ID',
name: 'cookieCategoryId',
type: 'string',
displayOptions: {
show: {
resource: ['cookieCategory'],
operation: ['get'],
},
},
default: '',
description: 'The ID of the cookie category',
required: true,
},
];
export async function execute(
this: IExecuteFunctions,
itemIndex: number,
): Promise<INodeExecutionData> {
const cookieCategoryId = this.getNodeParameter('cookieCategoryId', itemIndex) as string;
const query = `
query GetCookieCategory($cookieCategoryId: ID!) {
node(id: $cookieCategoryId) {
... on CookieCategory {
id
name
slug
description
kind
rank
gcmConsentTypes
posthogConsent
createdAt
updatedAt
}
}
}
`;
const responseData = await proboApiRequest.call(this, query, { cookieCategoryId });
return {
json: responseData,
pairedItem: { item: itemIndex },
};
}

View File

@@ -0,0 +1,119 @@
// 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, IDataObject } from 'n8n-workflow';
import { proboApiRequestAllItems } from '../../GenericFunctions';
export const description: INodeProperties[] = [
{
displayName: 'Cookie Banner ID',
name: 'cookieBannerId',
type: 'string',
displayOptions: {
show: {
resource: ['cookieCategory'],
operation: ['getAll'],
},
},
default: '',
description: 'The ID of the cookie banner',
required: true,
},
{
displayName: 'Return All',
name: 'returnAll',
type: 'boolean',
displayOptions: {
show: {
resource: ['cookieCategory'],
operation: ['getAll'],
},
},
default: false,
description: 'Whether to return all results or only up to a given limit',
},
{
displayName: 'Limit',
name: 'limit',
type: 'number',
displayOptions: {
show: {
resource: ['cookieCategory'],
operation: ['getAll'],
returnAll: [false],
},
},
typeOptions: {
minValue: 1,
},
default: 50,
description: 'Max number of results to return',
},
];
export async function execute(
this: IExecuteFunctions,
itemIndex: number,
): Promise<INodeExecutionData> {
const cookieBannerId = this.getNodeParameter('cookieBannerId', itemIndex) as string;
const returnAll = this.getNodeParameter('returnAll', itemIndex) as boolean;
const limit = this.getNodeParameter('limit', itemIndex, 50) as number;
const query = `
query GetCookieCategories($cookieBannerId: ID!, $first: Int, $after: CursorKey) {
node(id: $cookieBannerId) {
... on CookieBanner {
categories(first: $first, after: $after) {
edges {
node {
id
name
slug
description
kind
rank
gcmConsentTypes
posthogConsent
createdAt
updatedAt
}
}
pageInfo {
hasNextPage
endCursor
}
}
}
}
}
`;
const cookieCategories = await proboApiRequestAllItems.call(
this,
query,
{ cookieBannerId },
(response) => {
const data = response?.data as IDataObject | undefined;
const node = data?.node as IDataObject | undefined;
return node?.categories as IDataObject | undefined;
},
returnAll,
limit,
);
return {
json: { cookieCategories },
pairedItem: { item: itemIndex },
};
}

View File

@@ -0,0 +1,89 @@
// 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 } from 'n8n-workflow';
import * as createOp from './create.operation';
import * as getOp from './get.operation';
import * as getAllOp from './getAll.operation';
import * as updateOp from './update.operation';
import * as deleteOp from './delete.operation';
import * as reorderOp from './reorder.operation';
export const description: INodeProperties[] = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
noDataExpression: true,
displayOptions: {
show: {
resource: ['cookieCategory'],
},
},
options: [
{
name: 'Create',
value: 'create',
description: 'Create a new cookie category',
action: 'Create a cookie category',
},
{
name: 'Delete',
value: 'delete',
description: 'Delete a cookie category',
action: 'Delete a cookie category',
},
{
name: 'Get',
value: 'get',
description: 'Get a cookie category',
action: 'Get a cookie category',
},
{
name: 'Get Many',
value: 'getAll',
description: 'Get many cookie categories',
action: 'Get many cookie categories',
},
{
name: 'Reorder',
value: 'reorder',
description: 'Change the rank of a cookie category',
action: 'Reorder a cookie category',
},
{
name: 'Update',
value: 'update',
description: 'Update an existing cookie category',
action: 'Update a cookie category',
},
],
default: 'create',
},
...createOp.description,
...getOp.description,
...getAllOp.description,
...updateOp.description,
...deleteOp.description,
...reorderOp.description,
];
export {
createOp as create,
getOp as get,
getAllOp as getAll,
updateOp as update,
deleteOp as delete,
reorderOp as reorder,
};

View File

@@ -0,0 +1,75 @@
// 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: 'Cookie Category ID',
name: 'cookieCategoryId',
type: 'string',
displayOptions: {
show: {
resource: ['cookieCategory'],
operation: ['reorder'],
},
},
default: '',
description: 'The ID of the cookie category to reorder',
required: true,
},
{
displayName: 'Rank',
name: 'rank',
type: 'number',
displayOptions: {
show: {
resource: ['cookieCategory'],
operation: ['reorder'],
},
},
default: 0,
description: 'The new rank position for the cookie category',
required: true,
},
];
export async function execute(
this: IExecuteFunctions,
itemIndex: number,
): Promise<INodeExecutionData> {
const cookieCategoryId = this.getNodeParameter('cookieCategoryId', itemIndex) as string;
const rank = this.getNodeParameter('rank', itemIndex) as number;
const query = `
mutation ReorderCookieCategory($input: ReorderCookieCategoryInput!) {
reorderCookieCategory(input: $input) {
cookieBanner {
id
name
}
}
}
`;
const responseData = await proboApiRequest.call(this, query, {
input: { cookieCategoryId, rank },
});
return {
json: responseData,
pairedItem: { item: itemIndex },
};
}

View File

@@ -0,0 +1,163 @@
// 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: 'Cookie Category ID',
name: 'cookieCategoryId',
type: 'string',
displayOptions: {
show: {
resource: ['cookieCategory'],
operation: ['update'],
},
},
default: '',
description: 'The ID of the cookie category to update',
required: true,
},
{
displayName: 'Name',
name: 'name',
type: 'string',
displayOptions: {
show: {
resource: ['cookieCategory'],
operation: ['update'],
},
},
default: '',
description: 'The name of the cookie category',
},
{
displayName: 'Slug',
name: 'slug',
type: 'string',
displayOptions: {
show: {
resource: ['cookieCategory'],
operation: ['update'],
},
},
default: '',
description: 'The slug of the cookie category',
},
{
displayName: 'Description',
name: 'categoryDescription',
type: 'string',
displayOptions: {
show: {
resource: ['cookieCategory'],
operation: ['update'],
},
},
default: '',
description: 'The description of the cookie category',
},
{
displayName: 'GCM Consent Types',
name: 'gcmConsentTypes',
type: 'string',
displayOptions: {
show: {
resource: ['cookieCategory'],
operation: ['update'],
},
},
default: '',
description: 'Comma-separated list of GCM consent types',
},
{
displayName: 'PostHog Consent',
name: 'posthogConsent',
type: 'options',
displayOptions: {
show: {
resource: ['cookieCategory'],
operation: ['update'],
},
},
options: [
{
name: '(Unchanged)',
value: '',
},
{
name: 'True',
value: 'true',
},
{
name: 'False',
value: 'false',
},
],
default: '',
description: 'Whether this category maps to PostHog consent',
},
];
export async function execute(
this: IExecuteFunctions,
itemIndex: number,
): Promise<INodeExecutionData> {
const cookieCategoryId = this.getNodeParameter('cookieCategoryId', itemIndex) as string;
const name = this.getNodeParameter('name', itemIndex, '') as string;
const slug = this.getNodeParameter('slug', itemIndex, '') as string;
const categoryDescription = this.getNodeParameter('categoryDescription', itemIndex, '') as string;
const gcmConsentTypes = this.getNodeParameter('gcmConsentTypes', itemIndex, '') as string;
const posthogConsent = this.getNodeParameter('posthogConsent', itemIndex, '') as string;
const query = `
mutation UpdateCookieCategory($input: UpdateCookieCategoryInput!) {
updateCookieCategory(input: $input) {
cookieCategory {
id
name
slug
description
kind
rank
gcmConsentTypes
posthogConsent
createdAt
updatedAt
}
cookieBanner {
id
name
}
}
}
`;
const input: Record<string, unknown> = { cookieCategoryId };
if (name) input.name = name;
if (slug) input.slug = slug;
if (categoryDescription) input.description = categoryDescription;
if (gcmConsentTypes) {
input.gcmConsentTypes = gcmConsentTypes.split(',').map((s) => s.trim());
}
if (posthogConsent) input.posthogConsent = posthogConsent === 'true';
const responseData = await proboApiRequest.call(this, query, { input });
return {
json: responseData,
pairedItem: { item: itemIndex },
};
}