feat(Google Analytics Node): Overhaul for google analytics node
This commit is contained in:
@@ -0,0 +1,46 @@
|
||||
/* eslint-disable n8n-nodes-base/node-filename-against-convention */
|
||||
import { INodeTypeDescription } from 'n8n-workflow';
|
||||
import * as userActivity from './userActivity/UserActivity.resource';
|
||||
import * as report from './report/Report.resource';
|
||||
|
||||
export const versionDescription: INodeTypeDescription = {
|
||||
displayName: 'Google Analytics',
|
||||
name: 'googleAnalytics',
|
||||
icon: 'file:analytics.svg',
|
||||
group: ['transform'],
|
||||
version: 2,
|
||||
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
||||
description: 'Use the Google Analytics API',
|
||||
defaults: {
|
||||
name: 'Google Analytics',
|
||||
},
|
||||
inputs: ['main'],
|
||||
outputs: ['main'],
|
||||
credentials: [
|
||||
{
|
||||
name: 'googleAnalyticsOAuth2',
|
||||
required: true,
|
||||
},
|
||||
],
|
||||
properties: [
|
||||
{
|
||||
displayName: 'Resource',
|
||||
name: 'resource',
|
||||
type: 'options',
|
||||
noDataExpression: true,
|
||||
options: [
|
||||
{
|
||||
name: 'Report',
|
||||
value: 'report',
|
||||
},
|
||||
{
|
||||
name: 'User Activity',
|
||||
value: 'userActivity',
|
||||
},
|
||||
],
|
||||
default: 'report',
|
||||
},
|
||||
...report.description,
|
||||
...userActivity.description,
|
||||
],
|
||||
};
|
||||
Reference in New Issue
Block a user