n8n/packages/nodes-base/credentials/GoogleAdsOAuth2Api.credentials.ts

25 lines
589 B
TypeScript

import { ICredentialType, INodeProperties } from 'n8n-workflow';
const scopes = ['https://www.googleapis.com/auth/adwords'];
export class GoogleAdsOAuth2Api implements ICredentialType {
name = 'googleAdsOAuth2Api';
extends = ['googleOAuth2Api'];
displayName = 'Google Ads OAuth2 API';
documentationUrl = 'google/oauth-single-service';
properties: INodeProperties[] = [
{
displayName: 'Developer Token',
name: 'developerToken',
type: 'string',
default: '',
},
{
displayName: 'Scope',
name: 'scope',
type: 'hidden',
default: scopes.join(' '),
},
];
}