mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
57e19edadd
* ✨ Add Google Analytics node 🔨 Add Report Resource 🔨 Complete the basic for Report resource ⚡ Add User Activity resource 🔨Remove comment * ⚡ Improvements * ⚡ Small improvements * ⚡ Improvements * ⚡ Improvements * ⚡ Some improvements to Google Analytics Node * ⚡ Load views automatically Co-authored-by: Harshil <ghagrawal17@gmail.com> Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
28 lines
552 B
TypeScript
28 lines
552 B
TypeScript
import {
|
|
ICredentialType,
|
|
NodePropertyTypes,
|
|
} from 'n8n-workflow';
|
|
|
|
const scopes = [
|
|
'https://www.googleapis.com/auth/analytics',
|
|
'https://www.googleapis.com/auth/analytics.readonly',
|
|
];
|
|
|
|
|
|
export class GoogleAnalyticsOAuth2Api implements ICredentialType {
|
|
name = 'googleAnalyticsOAuth2';
|
|
extends = [
|
|
'googleOAuth2Api',
|
|
];
|
|
displayName = 'Google Analytics OAuth2 API';
|
|
documentationUrl = 'google';
|
|
properties = [
|
|
{
|
|
displayName: 'Scope',
|
|
name: 'scope',
|
|
type: 'hidden' as NodePropertyTypes,
|
|
default: scopes.join(' '),
|
|
},
|
|
];
|
|
}
|