mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-20 03:12:15 +00:00
feat(Google Analytics Node): Overhaul for google analytics node
This commit is contained in:
@@ -0,0 +1,136 @@
|
||||
import { INodeProperties } from 'n8n-workflow';
|
||||
|
||||
export const userActivityOperations: INodeProperties[] = [
|
||||
{
|
||||
displayName: 'Operation',
|
||||
name: 'operation',
|
||||
type: 'options',
|
||||
noDataExpression: true,
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: ['userActivity'],
|
||||
},
|
||||
},
|
||||
options: [
|
||||
{
|
||||
name: 'Search',
|
||||
value: 'search',
|
||||
description: 'Return user activity data',
|
||||
action: 'Search user activity data',
|
||||
},
|
||||
],
|
||||
default: 'search',
|
||||
},
|
||||
];
|
||||
|
||||
export const userActivityFields: INodeProperties[] = [
|
||||
{
|
||||
displayName: 'View Name or ID',
|
||||
name: 'viewId',
|
||||
type: 'options',
|
||||
typeOptions: {
|
||||
loadOptionsMethod: 'getViews',
|
||||
},
|
||||
default: '',
|
||||
required: true,
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: ['userActivity'],
|
||||
operation: ['search'],
|
||||
},
|
||||
},
|
||||
placeholder: '123456',
|
||||
description:
|
||||
'The View ID of Google Analytics. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
|
||||
},
|
||||
{
|
||||
displayName: 'User ID',
|
||||
name: 'userId',
|
||||
type: 'string',
|
||||
default: '',
|
||||
required: true,
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: ['userActivity'],
|
||||
operation: ['search'],
|
||||
},
|
||||
},
|
||||
placeholder: '123456',
|
||||
description: 'ID of a user',
|
||||
},
|
||||
{
|
||||
displayName: 'Return All',
|
||||
name: 'returnAll',
|
||||
type: 'boolean',
|
||||
displayOptions: {
|
||||
show: {
|
||||
operation: ['search'],
|
||||
resource: ['userActivity'],
|
||||
},
|
||||
},
|
||||
default: false,
|
||||
description: 'Whether to return all results or only up to a given limit',
|
||||
},
|
||||
{
|
||||
displayName: 'Limit',
|
||||
name: 'limit',
|
||||
type: 'number',
|
||||
displayOptions: {
|
||||
show: {
|
||||
operation: ['search'],
|
||||
resource: ['userActivity'],
|
||||
returnAll: [false],
|
||||
},
|
||||
},
|
||||
typeOptions: {
|
||||
minValue: 1,
|
||||
maxValue: 500,
|
||||
},
|
||||
default: 100,
|
||||
description: 'Max number of results to return',
|
||||
},
|
||||
{
|
||||
displayName: 'Additional Fields',
|
||||
name: 'additionalFields',
|
||||
type: 'collection',
|
||||
placeholder: 'Add Field',
|
||||
default: {},
|
||||
displayOptions: {
|
||||
show: {
|
||||
operation: ['search'],
|
||||
resource: ['userActivity'],
|
||||
},
|
||||
},
|
||||
options: [
|
||||
{
|
||||
displayName: 'Activity Types',
|
||||
name: 'activityTypes',
|
||||
type: 'multiOptions',
|
||||
options: [
|
||||
{
|
||||
name: 'Ecommerce',
|
||||
value: 'ECOMMERCE',
|
||||
},
|
||||
{
|
||||
name: 'Event',
|
||||
value: 'EVENT',
|
||||
},
|
||||
{
|
||||
name: 'Goal',
|
||||
value: 'GOAL',
|
||||
},
|
||||
{
|
||||
name: 'Pageview',
|
||||
value: 'PAGEVIEW',
|
||||
},
|
||||
{
|
||||
name: 'Screenview',
|
||||
value: 'SCREENVIEW',
|
||||
},
|
||||
],
|
||||
description: 'Type of activites requested',
|
||||
default: [],
|
||||
},
|
||||
],
|
||||
},
|
||||
];
|
||||
Reference in New Issue
Block a user